Advertisement
Guest User

Monster.h

a guest
Sep 27th, 2013
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.38 KB | None | 0 0
  1. #ifndef MONSTER_H
  2. #define MONSTER_H
  3.  
  4. #include "stdafx.h"
  5. #include <iostream>
  6. #include <string>
  7.  
  8. using namespace std;
  9.  
  10.  
  11. class Monster{
  12. public:
  13.     Monster();
  14.  
  15.     void fightMonster(string monsterName, int monsterHealth, int monsterAttack, int expGain);
  16.  
  17.    
  18.  
  19. private:
  20. int monsterHealth;
  21. int monsterAttack;
  22. int expGain;
  23. string monsterName;
  24.  
  25. protected:
  26. };
  27.  
  28. #endif // MONSTER_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement