diff options
Diffstat (limited to '')
-rw-r--r-- | source/Item.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/source/Item.h b/source/Item.h index 2fcef91cf..9384ece22 100644 --- a/source/Item.h +++ b/source/Item.h @@ -152,3 +152,17 @@ public: + +/// Used to store loot probability tables +class cLootProbab +{ +public: + cItem m_Item; + int m_MinAmount; + int m_MaxAmount; + int m_Weight; +} ; + + + + |