Gen7Data/Scripts/Interfaces/Item.astypedef

8 lines
236 B
Plaintext
Raw Normal View History

2021-10-23 12:20:18 +00:00
type Item {
const constString& Name { get const; };
ItemCategory Category { get const; };
BattleItemCategory BattleCategory { get const; };
int Price { get const; };
bool HasFlag(const constString &in flag) const;
}