module names and files should be capitalized

This commit is contained in:
2025-03-15 20:23:33 -05:00
parent 3486163025
commit 53c1855a29
8 changed files with 7 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
#include "print.h"
#include "Print.h"
Print::Print(void* h, App& a) : Module(h, a) {
name = "Print";

View File

@@ -1,4 +1,4 @@
#include "testMenu.h"
#include "TestMenu.h"
TestMenu::TestMenu(void* h, App& a) : Module(h, a) {
name = "TestMenu";

View File

@@ -0,0 +1,3 @@
class Renderer {};

View File

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

View File

@@ -1,5 +1,6 @@
#include "../../../include/Archimedes.h"
#include "WindowImpl/WindowImpl.h"
#include "Renderer/Renderer.h"
class WindowModule : Module {