mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-06-05 14:13:44 +00:00
16 lines
225 B
C
16 lines
225 B
C
#ifndef EMOUSEINPUTS
|
|
#define EMOUSEINPUTS
|
|
|
|
#include "Flags.h"
|
|
|
|
enum EMouseInput
|
|
{
|
|
eLeftButton = 0x1,
|
|
eMiddleButton = 0x2,
|
|
eRightButton = 0x4
|
|
};
|
|
DECLARE_FLAGS(EMouseInput, FMouseInputs)
|
|
|
|
#endif // EMOUSEINPUTS
|
|
|