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) {
|
||||
name = "Print";
|
||||
@@ -1,4 +1,4 @@
|
||||
#include "testMenu.h"
|
||||
#include "TestMenu.h"
|
||||
|
||||
TestMenu::TestMenu(void* h, App& a) : Module(h, a) {
|
||||
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) {
|
||||
name = "Window";
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
#include "../../../include/Archimedes.h"
|
||||
#include "WindowImpl/WindowImpl.h"
|
||||
#include "Renderer/Renderer.h"
|
||||
|
||||
class WindowModule : Module {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user