C6GE 2026.1
Century6 Game Engine
Loading...
Searching...
No Matches
FirstApp.h
1#pragma once
2
3#include "C6GE_Window.h"
4
5namespace C6GE {
6
7 class FirstApp {
8
9 public:
10 static constexpr int WIDTH = 800;
11 static constexpr int HEIGHT = 600;
12
13 void Run();
14
15 private:
16 C6GEwindow C6GEwindow{WIDTH, HEIGHT, "C6GE First App"};
17 };
18}
Definition FirstApp.h:7