12 lines
178 B
C++
12 lines
178 B
C++
#include "windowModule.h"
|
|
|
|
WindowModule::WindowModule(void* h, App& a) : Module(h, a) {
|
|
name = "Window";
|
|
}
|
|
|
|
WindowModule::~WindowModule() {}
|
|
|
|
void WindowModule::run() {
|
|
|
|
}
|