Advertisement
zCool

Npc.cpp

May 20th, 2012
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. #include "Npc.h"
  2. #include "Character.h"
  3. #include <string>
  4.  
  5. Npc::Npc(int X, int Y, std::string sprite, int score):Character(X, Y, sprite, score) {}
  6.  
  7. Character::directions Npc::decideWhatToDo()
  8. {
  9.     return NORTH; //placeholder, replace with NPC AI
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement