initial commit
[COMP345---Clone.git] / Item.h
blob479d12b0d42e63b83ae8018ea73855823d9b55ea
1 //!@file Item.h
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 #pragma once
7 #include <string>
8 using namespace std;
10 //! This class represents an item
11 class Item
13 public:
14 Item();
15 ~Item();
16 string getName() { return name; };
17 void setName(string i_name) { name = i_name; };
19 private:
22 protected:
23 string name;
24 int str;
25 int dex;
26 int wis;
27 int constitution;
28 int charisma;
29 int ac;
30 int level;
31 int atk;
32 int dmg;