mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-10 15:04:19 +00:00
19 lines
259 B
C++
19 lines
259 B
C++
#pragma once
|
|
#include <stdint.h>
|
|
|
|
class AccessorEvent {
|
|
public:
|
|
// events enum
|
|
enum class Type : uint8_t {
|
|
Tick,
|
|
Back,
|
|
};
|
|
|
|
// payload
|
|
union {
|
|
uint32_t menu_index;
|
|
} payload;
|
|
|
|
// event type
|
|
Type type;
|
|
};
|