Sistema de gravidade porco, mas funcionando
[Projeto-PCG.git] / controle.h
blob069e3bc894989fca3cfbc450771aaf85bd490827
1 #ifndef CONTROLE_H
2 #define CONTROLE_H
4 #include "player.h"
6 class Controle {
7 private:
8 Player &jogador;
9 SDL_Event e;
10 bool quit;
11 public:
12 Controle(Player &p) ;
13 void eventLoop();
14 bool getQuit();
15 Player& getJogador();
18 #endif