diff --git a/health class b/health class new file mode 100644 index 0000000..52d5c4f --- /dev/null +++ b/health class @@ -0,0 +1,40 @@ +#include +#include +using namespace std; + + +class health +{ + private: + int player, monster; + string level; + + public: + void setPlayer(int _player) + { + player = _player; + } + + int getPlayer() + { + return player; + } + + void setMonster(int _monster) + { + monster = _monster; + } + + int getMonster() + { + return monster; + } + + string getLevel(string _level) + { + return level; + } + + + +};