OSDN Git Service

[Refactor] #2124 Changed struct object_type to class ObjectType
[hengbandforosx/hengbandosx.git] / src / object / object-stack.h
1 #pragma once
2
3 class ObjectType;
4 void distribute_charges(ObjectType *o_ptr, ObjectType *q_ptr, int amt);
5 void reduce_charges(ObjectType *o_ptr, int amt);
6 int object_similar_part(const ObjectType *o_ptr, const ObjectType *j_ptr);
7 bool object_similar(const ObjectType *o_ptr, const ObjectType *j_ptr);
8 void object_absorb(ObjectType *o_ptr, ObjectType *j_ptr);