begin work on window module

This commit is contained in:
2025-03-15 18:57:04 -05:00
parent 5be04e9696
commit 3486163025
14 changed files with 33 additions and 0 deletions

View File

Before

Width:  |  Height:  |  Size: 940 KiB

After

Width:  |  Height:  |  Size: 940 KiB

View File

@@ -0,0 +1,4 @@
class WindowImpl {};

View File

@@ -0,0 +1,11 @@
#include "windowModule.h"
WindowModule::WindowModule(void* h, App& a) : Module(h, a) {
name = "Window";
}
WindowModule::~WindowModule() {}
void WindowModule::run() {
}

View File

@@ -0,0 +1,18 @@
#include "../../../include/Archimedes.h"
#include "WindowImpl/WindowImpl.h"
class WindowModule : Module {
public:
WindowModule(void*, App&);
~WindowModule();
void run();
private:
WindowImpl window;
Renderer renderer;
};