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

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