Elevate Engine 1
Loading...
Searching...
No Matches
WebWindow.h
Go to the documentation of this file.
1#pragma once
2#ifdef EE_PLATFORM_WEB
4
5namespace Elevate
6{
7 class WebWindow : public GlfwWindow
8 {
9 public:
10 WebWindow(const WindowProps& props);
11 virtual void Init(const WindowProps& props) override;
12
13 // Web Specific Functions
14 void GetCanvasSize(unsigned int& width, unsigned int& height);
15 };
16}
17
18#endif