mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-08-08 13:09:06 +00:00
22 lines
331 B
C
22 lines
331 B
C
#ifndef EKEYINPUTS
|
|
#define EKEYINPUTS
|
|
|
|
#include "Flags.h"
|
|
|
|
enum EKeyInput
|
|
{
|
|
eCtrlKey = 0x1,
|
|
eShiftKey = 0x2,
|
|
eAltKey = 0x2,
|
|
eQKey = 0x4,
|
|
eWKey = 0x8,
|
|
eEKey = 0x10,
|
|
eAKey = 0x20,
|
|
eSKey = 0x40,
|
|
eDKey = 0x80
|
|
};
|
|
DECLARE_FLAGS(EKeyInput, FKeyInputs)
|
|
|
|
#endif // EKEYINPUTS
|
|
|