begin work on window module
This commit is contained in:
0
modules/Window/src/Renderer/window.h
Normal file
0
modules/Window/src/Renderer/window.h
Normal file
0
modules/Window/src/WindowImpl/GLFW/windowGLFW.h
Normal file
0
modules/Window/src/WindowImpl/GLFW/windowGLFW.h
Normal file
4
modules/Window/src/WindowImpl/WindowImpl.h
Normal file
4
modules/Window/src/WindowImpl/WindowImpl.h
Normal file
@@ -0,0 +1,4 @@
|
||||
|
||||
|
||||
|
||||
class WindowImpl {};
|
||||
11
modules/Window/src/WindowModule.cpp
Normal file
11
modules/Window/src/WindowModule.cpp
Normal file
@@ -0,0 +1,11 @@
|
||||
#include "windowModule.h"
|
||||
|
||||
WindowModule::WindowModule(void* h, App& a) : Module(h, a) {
|
||||
name = "Window";
|
||||
}
|
||||
|
||||
WindowModule::~WindowModule() {}
|
||||
|
||||
void WindowModule::run() {
|
||||
|
||||
}
|
||||
18
modules/Window/src/WindowModule.h
Normal file
18
modules/Window/src/WindowModule.h
Normal 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;
|
||||
};
|
||||
Reference in New Issue
Block a user