DonCon2040/include/utils/InputState.h

23 lines
334 B
C
Raw Normal View History

2023-04-10 13:04:38 +02:00
#ifndef _UTILS_INPUTSTATE_H_
#define _UTILS_INPUTSTATE_H_
#include <stdint.h>
namespace Doncon::Utils {
struct InputState {
public:
struct Drum {
bool don_left, ka_left, don_right, ka_right;
};
public:
Drum drum;
public:
InputState();
};
} // namespace Doncon::Utils
#endif // _UTILS_INPUTSTATE_H_