mirror of
https://github.com/AxioDL/LibCommon.git
synced 2026-03-30 11:47:23 -07:00
7f20a5ef97
Makes any future potential of a class unlikely.
22 lines
337 B
C
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
|
|
|