Initial commit of current work on Prime World Editor

This commit is contained in:
parax0
2015-07-26 17:39:49 -04:00
commit 66e8c2ebcb
305 changed files with 33469 additions and 0 deletions

21
Common/EKeyInputs.h Normal file
View File

@@ -0,0 +1,21 @@
#ifndef EKEYINPUTS
#define EKEYINPUTS
#include "EnumUtil.h"
enum EKeyInputs
{
eNoKeys = 0,
eCtrlKey = 0x1,
eAltKey = 0x2,
eQKey = 0x4,
eWKey = 0x8,
eEKey = 0x10,
eAKey = 0x20,
eSKey = 0x40,
eDKey = 0x80
};
DEFINE_ENUM_FLAGS(EKeyInputs)
#endif // EKEYINPUTS