projects
/
physics.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(incremental) |
history
|
HEAD
added .*.swp to ignore
[physics.git]
/
src
/
input
/
inputManager.h
Commit
Line
Data
f7b3b2eb
PG
1
#ifndef INPUT_H
2
#define INPUT_H
3
4
#include <SDL/SDL.h>
5
6
/// ***** Header Methods *****
7
void inputUpdate();
8
9
bool isPressed(Uint8);
10
bool isReleased(Uint8);
11
12
bool wasPressed(Uint8);
13
bool wasReleased(Uint8);
14
15
#endif // INPUT_H