module names and files should be capitalized
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
#include "print.h"
|
#include "Print.h"
|
||||||
|
|
||||||
Print::Print(void* h, App& a) : Module(h, a) {
|
Print::Print(void* h, App& a) : Module(h, a) {
|
||||||
name = "Print";
|
name = "Print";
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
#include "testMenu.h"
|
#include "TestMenu.h"
|
||||||
|
|
||||||
TestMenu::TestMenu(void* h, App& a) : Module(h, a) {
|
TestMenu::TestMenu(void* h, App& a) : Module(h, a) {
|
||||||
name = "TestMenu";
|
name = "TestMenu";
|
||||||
3
modules/Window/src/Renderer/Renderer.h
Normal file
3
modules/Window/src/Renderer/Renderer.h
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
|
||||||
|
|
||||||
|
class Renderer {};
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
#include "windowModule.h"
|
#include "WindowModule.h"
|
||||||
|
|
||||||
WindowModule::WindowModule(void* h, App& a) : Module(h, a) {
|
WindowModule::WindowModule(void* h, App& a) : Module(h, a) {
|
||||||
name = "Window";
|
name = "Window";
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
#include "../../../include/Archimedes.h"
|
#include "../../../include/Archimedes.h"
|
||||||
#include "WindowImpl/WindowImpl.h"
|
#include "WindowImpl/WindowImpl.h"
|
||||||
|
#include "Renderer/Renderer.h"
|
||||||
|
|
||||||
class WindowModule : Module {
|
class WindowModule : Module {
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user