AutobootModule/source/InputUtils.h

18 lines
320 B
C
Raw Normal View History

2023-06-06 10:29:53 +02:00
#pragma once
#include <cstdint>
#include <vpad/input.h>
2023-06-06 10:29:53 +02:00
class InputUtils {
public:
typedef struct InputData {
uint32_t trigger = 0;
uint32_t hold = 0;
uint32_t release = 0;
} InputData;
static void Init();
static void DeInit();
static InputData getControllerInput();
};