Advertisement
zCool

Npc.h

May 20th, 2012
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. #ifndef NPC_H
  2. #define NPC_H
  3.  
  4. #include "Character.h"
  5. #include <string>
  6.  
  7. class Npc:public Character
  8. {
  9. public:
  10.     Npc(int X, int Y, std::string sprite, int score);
  11.     Character::directions decideWhatToDo();
  12. };
  13.  
  14. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement