15 lines
382 B
C++
15 lines
382 B
C++
#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) {}
|
|
|
|
}; |