module names and files should be capitalized
This commit is contained in:
14
modules/Print/src/Print.cpp
Normal file
14
modules/Print/src/Print.cpp
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user