Advertisement
zCool

Player.h

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