initial commit
[COMP345---Clone.git] / Item.cpp
blob35340f16fc2fd6f514b4c28f92cce83de44c74e0
1 //!@file Item.cpp
2 //! @brief Declaration of an Item
3 //!
4 //! This class represents an item
5 //! Contains stats that d20 items may have, but does not make them accessible.
6 #include "Item.h"
8 Item::Item()
10 str = 0;
11 dex = 0;
12 wis = 0;
13 constitution = 0;
14 charisma = 0;
15 ac = 0;
16 atk = 0;
17 level = 1;
18 dmg = 0;
22 Item::~Item()