diff options
Diffstat (limited to 'src/weapon.h')
-rw-r--r-- | src/weapon.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/weapon.h b/src/weapon.h index 49de396..dc81689 100644 --- a/src/weapon.h +++ b/src/weapon.h @@ -29,7 +29,7 @@ namespace entry { }; NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(Damage, dmg_die_count, dmg_die_sides, dmg_type, is_or); - class Weapon : public Item, public Substantial { + class Weapon : public Item { public: Weapon(); @@ -38,8 +38,6 @@ namespace entry { std::string getWeaponType(void) const; std::pair<int, int> getRange(void) const; int getReach(void) const; - int getCost(void) const; - double getWeight(void) const; int getToHitBonus(const creature::Creature& c) const; int getDamageBonus(const creature::Creature& c) const; |