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.
16 lines
264 B
C
16 lines
264 B
C
#ifndef AXIO_EMOUSEINPUTS_H
|
|
#define AXIO_EMOUSEINPUTS_H
|
|
|
|
#include "Flags.h"
|
|
|
|
enum class EMouseInput
|
|
{
|
|
LeftButton = 0x1,
|
|
MiddleButton = 0x2,
|
|
RightButton = 0x4
|
|
};
|
|
AXIO_DECLARE_FLAGS_ENUMCLASS(EMouseInput, FMouseInputs)
|
|
|
|
#endif // AXIO_EMOUSEINPUTS_H
|
|
|