00001 #ifndef PLAYER_H 00002 #define PLAYER_H 00003 00004 #include "Person.h" 00005 00006 class Player: public Person 00007 { 00008 public: 00009 Player(List * playerInfo, int x, int y); 00010 void control(); 00011 00012 protected: 00013 //virtual void die(); 00014 }; 00015 00016 #endif