Questo sito utilizza cookies solo per scopi di autenticazione sul sito e nient'altro. Nessuna informazione personale viene tracciata. Leggi l'informativa sui cookies.
Username: Password: oppure
Run Joey, Run! - Player.h

Player.h

Caricato da: RiccardoG97
Scarica il programma completo

  1. #include "SDL.h"
  2.  
  3. class Player
  4. {
  5. public:
  6.         Player ( void );
  7.         ~Player ( void );
  8.         void makePlayer ( SDL_Surface * );
  9.         void movePlayer ( Uint8 * );
  10.         int getXPlayer ( void );
  11.  
  12. private:
  13.         SDL_Surface *player;
  14.         SDL_Rect dst;
  15. };