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