Elevate Engine 1
Loading...
Searching...
No Matches
WindowsWindow.h
Go to the documentation of this file.
1#pragma once
2#ifdef EE_PLATFORM_WINDOWS
4
5namespace Elevate
6{
7 class WindowsWindow : public GlfwWindow
8 {
9 public:
10 WindowsWindow(const WindowProps& props) : GlfwWindow(props) {}
11 };
12}
13
14#endif