Advertisement
zCool

Character.h

May 17th, 2012
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.29 KB | None | 0 0
  1. #ifndef CHARACTER_H
  2. #define CHARACTER_H
  3. #include "Stats.h"
  4.  
  5. class Character
  6. {
  7. protected:
  8.     Stats m_stats;
  9. public:
  10.     Character(Stats stats);
  11.     virtual void getHit(int attackerATK, int victimDEF, int victimHP);
  12.     void printStats() { m_stats.printStats(); } //lol what is this???
  13. };
  14.  
  15. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement