Initial Commit

This commit is contained in:
2025-01-02 00:15:37 -05:00
commit b9afc57e6e
29 changed files with 1826 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#include <rewindow/types/window.h>
#pragma once
class Camera;
class DemoGameWindow : public ReWindow::RWindow {
public:
void InitGL();
void Display();
public:
void OnRefresh(float elapsed) override;
public:
DemoGameWindow() : ReWindow::RWindow() {}
DemoGameWindow(const std::string& title, int width, int height) : ReWindow::RWindow(title, width, height) {}
};