Agora funcionando.
[Projeto-PCG.git] / player.h
blob6e7559749ddc7333309e43e9673effa606411841
1 #ifndef PLAYER_H
2 #define PLAYER_H
4 #include "game.h"
5 #include "shooter.h"
7 class Player: public Shooter {
8 public:
9 Player(Game* agame, Ponto pos, Ponto speed);
10 void desenha();
13 #endif