164db664ef
* Remove non-pacman exercises. * Use vcpkg instead of conan ( make vcpkg a submodule) * Merge the readmem these will need to be improve later
13 lines
222 B
C++
13 lines
222 B
C++
#ifndef PACMAN_INPUTSTATE_H
|
|
#define PACMAN_INPUTSTATE_H
|
|
|
|
class InputState {
|
|
public:
|
|
bool close = false;
|
|
bool up = false;
|
|
bool down = false;
|
|
bool left = false;
|
|
bool right = false;
|
|
};
|
|
|
|
#endif //PACMAN_INPUTSTATE_H
|