aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/item.h
diff options
context:
space:
mode:
authorPaul Gilbert2018-03-10 07:14:43 -0500
committerPaul Gilbert2018-03-10 07:14:43 -0500
commitaaee8772500ab3727dfcff724b5cd6b491d98476 (patch)
treec9ec1f488185ad0cbe1e436ce6e8c29bd68cdaa1 /engines/xeen/item.h
parent44ea691154db466fe9a07addea302e7fa5b24cab (diff)
downloadscummvm-rg350-aaee8772500ab3727dfcff724b5cd6b491d98476.tar.gz
scummvm-rg350-aaee8772500ab3727dfcff724b5cd6b491d98476.tar.bz2
scummvm-rg350-aaee8772500ab3727dfcff724b5cd6b491d98476.zip
XEEN: Cleanup up usage of RangeType enum
Diffstat (limited to 'engines/xeen/item.h')
-rw-r--r--engines/xeen/item.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/engines/xeen/item.h b/engines/xeen/item.h
index 6e81004298..d951353851 100644
--- a/engines/xeen/item.h
+++ b/engines/xeen/item.h
@@ -47,10 +47,6 @@ enum AttributeCategory {
ATTR_ARMOR_CLASS = 8, ATTR_THIEVERY = 9
};
-enum RangeType {
- RT_SINGLE = 0, RT_GROUP = 1, RT_ALL = 2, RT_HIT = 3
-};
-
enum ElementalCategory {
ELEM_FIRE = 0, ELEM_ELECTRICITY = 1, ELEM_COLD = 2, ELEM_ACID_POISON = 3,
ELEM_ENERGY = 4, ELEM_MAGIC = 5
@@ -94,8 +90,6 @@ public:
* Gets the attribute category for the item
*/
AttributeCategory getAttributeCategory() const;
-
- void getWeaponDamage(Character &c, RangeType rangeType);
};
class InventoryItems : public Common::Array<XeenItem> {