2024-09-18 22:16:03 -06:00
|
|
|
#include "Sims/OOPCube.hpp"
|
|
|
|
#include "Sims/RlImGuiSim.hpp"
|
2024-09-18 15:20:56 -06:00
|
|
|
|
2024-09-18 16:34:44 -06:00
|
|
|
int main() {
|
2024-09-18 22:16:03 -06:00
|
|
|
RubixSimulationRunner simRunner;
|
|
|
|
RlImGuiSim::RlImGuiSim rlImGuiSim;
|
|
|
|
OOPCube::OOPCube oopCube;
|
|
|
|
simRunner.SetSimulation(&oopCube);
|
|
|
|
simRunner.StartSimulation();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|