initial commit
[COMP345---Clone.git] / ItemNames.h
blob2e0294443e4eedde31c9c4341f2f1cccc16824bc
1 //! @file
2 //! @brief Holder for commonly used item types
3 //! Contains the values for commonly used item types
4 //!
5 #pragma once
6 #include <string>
7 using namespace std;
8 const string ARMOR = "Armor";
9 const string HELMET = "Helmet";
10 const string SHIELD = "Shield";
11 const string RING = "Ring";
12 const string BELT = "Belt";
13 const string WEAPON = "Weapon";
14 const string BOOTS = "Boots";