diff options
author | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2011-04-09 01:24:21 +0200 |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2011-04-09 17:54:13 +0200 |
commit | c1d1f57158dd4cf0baf52313fb9d538b87940c67 (patch) | |
tree | 4bfd822f5bc341818684e607454e3096c89ab64f /src/resources/iteminfo.h | |
parent | 72d83cf5ae523f16fd5313c20f711f6030350d05 (diff) | |
download | mana-client-c1d1f57158dd4cf0baf52313fb9d538b87940c67.tar.gz mana-client-c1d1f57158dd4cf0baf52313fb9d538b87940c67.tar.bz2 mana-client-c1d1f57158dd4cf0baf52313fb9d538b87940c67.tar.xz mana-client-c1d1f57158dd4cf0baf52313fb9d538b87940c67.zip |
Removed a lot of useless "documentation"
I have to admit I contributed a large part of these. Sorry for that.
Less empty space, more attention to the code.
Acked-by: Jared Adams
Diffstat (limited to 'src/resources/iteminfo.h')
-rw-r--r-- | src/resources/iteminfo.h | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/src/resources/iteminfo.h b/src/resources/iteminfo.h index 50633f71..7b9e7287 100644 --- a/src/resources/iteminfo.h +++ b/src/resources/iteminfo.h @@ -76,9 +76,6 @@ class ItemInfo friend class ManaServ::ManaServItemDB; public: - /** - * Constructor. - */ ItemInfo(): mType(ITEM_UNUSABLE), mWeight(0), @@ -219,16 +216,13 @@ class TaItemInfo: public ItemInfo friend class TaItemDB; public: - /** - * Constructor. - */ - TaItemInfo():ItemInfo() + TaItemInfo() : ItemInfo() {} // Declare TmwAthena Specific item info here }; -}; // namespace TmwAthena +} // namespace TmwAthena namespace ManaServ { @@ -239,16 +233,13 @@ namespace ManaServ { class ManaServItemInfo: public ItemInfo { public: - /** - * Constructor. - */ - ManaServItemInfo():ItemInfo() + ManaServItemInfo() : ItemInfo() {} // Declare Manaserv Specific item info here }; -}; // namespace ManaServ +} // namespace ManaServ #endif |