Pegar itens com Enter (não-testado)
[Projeto-PCG.git] / controleteclado.h
blobb44e3022a796da1f25eae90757d1bd18f81a89ea
1 #ifndef CONTROLETECLADO_H
2 #define CONTROLETECLADO_H
4 #include "controle.h"
6 class ControleTeclado: public Controle {
7 public:
8 ControleTeclado(Player &p);
9 virtual void handleEvent(SDL_Event &e);
10 virtual void handleOther();
13 #endif