repo.or.cz
/
Projeto-PCG.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Pegar itens com Enter (não-testado)
[Projeto-PCG.git]
/
controleteclado.h
blob
b44e3022a796da1f25eae90757d1bd18f81a89ea
1
#ifndef CONTROLETECLADO_H
2
#define CONTROLETECLADO_H
3
4
#include
"controle.h"
5
6
class
ControleTeclado
:
public
Controle
{
7
public
:
8
ControleTeclado
(
Player
&
p
);
9
virtual
void
handleEvent
(
SDL_Event
&
e
);
10
virtual
void
handleOther
();
11
};
12
13
#endif