Adicionando headers de lua
[Projeto-PCG.git] / player.h
blobea57a6ec2d7626dfe14702edfa8615535bf73669
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 void desenha();
14 #endif