Files
Lioncache 7f20a5ef97 General: Add AXIO_ prefix to header guards
Makes any future potential of a class unlikely.
2026-01-16 22:45:09 -05:00

22 lines
337 B
C

#ifndef AXIO_EKEYINPUTS_H
#define AXIO_EKEYINPUTS_H
#include "Flags.h"
enum class EKeyInput
{
Ctrl = 0x1,
Shift = 0x2,
Alt = 0x2,
Q = 0x4,
W = 0x8,
E = 0x10,
A = 0x20,
S = 0x40,
D = 0x80
};
AXIO_DECLARE_FLAGS_ENUMCLASS(EKeyInput, FKeyInputs)
#endif // AXIO_EKEYINPUTS_H