Criada classe Controle.
[Projeto-PCG.git] / controle.h
blob65f62775fb9632f578f249ca6ee3ef612ce85dad
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();
17 #endif