diff options
Diffstat (limited to 'Source/Asura.Editor/source/events')
| -rw-r--r-- | Source/Asura.Editor/source/events/events.h | 24 | 
1 files changed, 24 insertions, 0 deletions
| diff --git a/Source/Asura.Editor/source/events/events.h b/Source/Asura.Editor/source/events/events.h new file mode 100644 index 0000000..bbe5cc3 --- /dev/null +++ b/Source/Asura.Editor/source/events/events.h @@ -0,0 +1,24 @@ +#ifndef __ASUSRA_EDITOR_EVENT_H__ +#define __ASUSRA_EDITOR_EVENT_H__ + +namespace AsuraEditor +{ +	namespace Events +	{ + +		enum EventType +		{ +			GRAPHIC_EVENT, +			KEYBOARD_EVENT, +			MOUSE_EVENT +		}; + +		enum GraphicEvent +		{ +			EVENT_PAINT, +		}; + +	} +} + +#endif
\ No newline at end of file | 
