Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
EventType.hpp
1#pragma once
2
3namespace Grindstone {
4 namespace Events {
5 enum class EventType {
6 WindowTryQuit = 0,
7 WindowForceQuit,
8 WindowResize,
9 WindowStartFocus,
10 WindowKillFocus,
11 WindowMoved,
12
13 KeyPress,
14 CharacterTyped,
15
16 MouseButton,
17 MouseMoved,
18 MouseScrolled,
19 PrintMessage,
20 Last
21 }; // enum class EventType
22 } // namespace Events
23} // namespace Grindstone