Gen7Data/Scripts/Interfaces/Item.astypedef
Deukhoofd 40dcd8a407
Some checks failed
continuous-integration/drone/push Build is failing
Switch to astypedef, adds unit tests
2021-10-23 14:20:18 +02:00

8 lines
236 B
Plaintext

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;
}