All Classes Files Functions Variables Typedefs Pages
WindowEvent.hpp
Go to the documentation of this file.
1 #pragma once
2 
9 namespace lumina {
10 
11 enum class WindowEventType {
12  None,
13  Close
14 };
15 
16 struct WindowEvent {
17  WindowEventType type;
18 
19  WindowEvent() : type(WindowEventType::None) {}
20 };
21 
22 }
Definition: WindowEvent.hpp:16