mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-06-01 12:11:22 +00:00
16 lines
220 B
C
16 lines
220 B
C
#ifndef EMOUSEINPUTS
|
|
#define EMOUSEINPUTS
|
|
|
|
#include "EnumUtil.h"
|
|
|
|
enum EMouseInputs
|
|
{
|
|
eLeftButton = 0x1,
|
|
eMiddleButton = 0x2,
|
|
eRightButton = 0x4
|
|
};
|
|
DEFINE_ENUM_FLAGS(EMouseInputs)
|
|
|
|
#endif // EMOUSEINPUTS
|
|
|