Files
Lioncache 7f20a5ef97 General: Add AXIO_ prefix to header guards
Makes any future potential of a class unlikely.
2026-01-16 22:45:09 -05:00

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