Rename corelogic->hcore, add simulator skeleton classes

This commit is contained in:
2025-01-03 20:02:24 -04:00
parent bb54aac865
commit f9b377a9f4
30 changed files with 153 additions and 9 deletions
+24
View File
@@ -0,0 +1,24 @@
#ifndef SIMULATOR_H
#define SIMULATOR_H
#include <simulator/canvas.h>
namespace simulator {
class Simulator {
public:
Simulator();
~Simulator();
void initialize();
void run();
void stop();
private:
bool isRunning;
Canvas canvas;
};
}
#endif // SIMULATOR_H