pacman/lib/include/InputState.hpp

28 lines
456 B
C++

#pragma once
namespace pacman {
class InputState {
public:
bool close = false;
bool up = false;
bool down = false;
bool left = false;
bool right = false;
bool enableAI = false;
Direction direction() const {
if (up)
return Direction::UP;
if (down)
return Direction::DOWN;
if (left)
return Direction::LEFT;
if (right)
return Direction::RIGHT;
return Direction::NONE;
}
};
} // namespace pacman