diff options
Diffstat (limited to 'backend/Player.h')
-rw-r--r-- | backend/Player.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/Player.h b/backend/Player.h index 8090063..e40f889 100644 --- a/backend/Player.h +++ b/backend/Player.h @@ -37,8 +37,8 @@ public: unsigned get_health() const; Location & get_location() const; void set_location(Location &); - void equip(WeaponObject *); - void equip(ArmorObject *); + void equip(WeaponObject *) noexcept; + void equip(ArmorObject *) noexcept; void equip(Object *); bool is_dead() const; |