diff options
author | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2024-02-08 22:35:09 +0100 |
---|---|---|
committer | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2024-02-09 17:14:25 +0100 |
commit | 1b041ecccfbe44a4f50ffc086e3996e2b6eea4f7 (patch) | |
tree | 74cff7036d1ecfb4df5a79a7ca68bedce5bea47e /src/resources/iteminfo.h | |
parent | 0ca05c54dd814f294617eda286ef175f01baa542 (diff) | |
download | mana-1b041ecccfbe44a4f50ffc086e3996e2b6eea4f7.tar.gz mana-1b041ecccfbe44a4f50ffc086e3996e2b6eea4f7.tar.bz2 mana-1b041ecccfbe44a4f50ffc086e3996e2b6eea4f7.tar.xz mana-1b041ecccfbe44a4f50ffc086e3996e2b6eea4f7.zip |
C++11: Use default member initializers
This patch is not exhaustive.
Diffstat (limited to 'src/resources/iteminfo.h')
-rw-r--r-- | src/resources/iteminfo.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/resources/iteminfo.h b/src/resources/iteminfo.h index da73bd3e..df559d69 100644 --- a/src/resources/iteminfo.h +++ b/src/resources/iteminfo.h @@ -81,10 +81,6 @@ class ItemInfo public: ItemInfo(): - mType(ITEM_UNUSABLE), - mWeight(0), - mView(0), - mId(0), mAttackAction(SpriteAction::INVALID) { } @@ -159,11 +155,11 @@ class ItemInfo std::string mName; std::string mDescription; /**< Short description. */ std::vector<std::string> mEffect; /**< Description of effects. */ - ItemType mType; /**< Item type. */ + ItemType mType = ITEM_UNUSABLE; /**< Item type. */ std::string mParticle; /**< Particle effect used with this item */ - int mWeight; /**< Weight in grams. */ - int mView; /**< Item ID of how this item looks. */ - int mId; /**< Item ID */ + int mWeight = 0; /**< Weight in grams. */ + int mView = 0; /**< Item ID of how this item looks. */ + int mId = 0; /**< Item ID */ bool mEquippable; /**< Whether this item can be equipped. */ bool mActivatable; /**< Whether this item can be activated. */ |