12 lines
255 B
C++
12 lines
255 B
C++
#include "Sims/OOPCube.hpp"
|
|
#include "Sims/RlImGuiSim.hpp"
|
|
|
|
int main() {
|
|
RubixSimulationRunner simRunner;
|
|
RlImGuiSim::RlImGuiSim rlImGuiSim;
|
|
OOPCube::OOPCube oopCube;
|
|
simRunner.SetSimulation(&oopCube);
|
|
simRunner.StartSimulation();
|
|
|
|
return 0;
|
|
} |