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

@@ -0,0 +1,14 @@
#include "Print.h"
Print::Print(void* h, App& a) : Module(h, a) {
name = "Print";
}
Print::~Print() {
std::cout << "Print Destroyed!\n";
}
void Print::run() {
std::cout << "Print lib loaded and run!\n";
app.stopModule(self);
}