virtual functions

This commit is contained in:
2025-03-17 12:41:37 -05:00
parent ec2ee018fe
commit e34f72e324
2 changed files with 2 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ class Print : public Module {
Print(void*, App&); Print(void*, App&);
~Print(); ~Print();
void run(); void run();
void onLoad() {}
}; };

View File

@@ -6,6 +6,7 @@ class TestMenu : public Module {
TestMenu(void*, App&); TestMenu(void*, App&);
~TestMenu(); ~TestMenu();
void run(); void run();
void onLoad() {}
private: private:
int choice; int choice;