Criada classe Controle.
[Projeto-PCG.git] / player.h
bloba546e7ee09b4f14bc1d0bdf12350a793af67a31e
1 #ifndef PLAYER_H
2 #define PLAYER_H
4 #include "geometry.h"
6 class Player {
7 private:
8 Ponto posicao;
9 Vetor velocidade;
10 public:
11 Player(int x, int y);
12 void desenha();
15 #endif