CMCore/inc/hgl/io/event/InputEventSource.h

24 lines
453 B
C
Raw Normal View History

2022-01-24 18:56:05 +08:00
#ifndef HGL_IO_INPUT_DEVICE_SOURCE_INCLUDE
#define HGL_IO_INPUT_DEVICE_SOURCE_INCLUDE
#include<hgl/TypeFunc.h>
namespace hgl
{
namespace io
{
enum class InputEventSource
{
Root=0,
OS,
Window,
Keyboard,
Mouse,
Joystick,
ENUM_CLASS_RANGE(Root,Joystick)
};
}//namespace io
}//namespace hgl
#endif//HGL_IO_INPUT_DEVICE_SOURCE_INCLUDE