mirror of
https://github.com/usatiuk/cardboy.git
synced 2025-10-28 23:27:49 +01:00
13 lines
237 B
C++
13 lines
237 B
C++
#pragma once
|
|
|
|
struct InputState {
|
|
bool up = false;
|
|
bool left = false;
|
|
bool right = false;
|
|
bool down = false;
|
|
bool a = false;
|
|
bool b = false;
|
|
bool select = false;
|
|
bool start = false;
|
|
};
|