OSDN Git Service

[Refactor] #3677 object_known() をItemEntity のオブジェクトメソッドに繰り込んだ
[hengbandforosx/hengbandosx.git] / src / object / object-stack.h
1 #pragma once
2
3 class ItemEntity;
4 void distribute_charges(ItemEntity *o_ptr, ItemEntity *q_ptr, int amt);
5 void reduce_charges(ItemEntity *o_ptr, int amt);
6 int object_similar_part(const ItemEntity *o_ptr, const ItemEntity *j_ptr);
7 bool object_similar(const ItemEntity *o_ptr, const ItemEntity *j_ptr);
8 void object_absorb(ItemEntity *o_ptr, ItemEntity *j_ptr);