]> git.localhorst.tv Git - blobs.git/blob - src/world/sim.cpp
simple planet render
[blobs.git] / src / world / sim.cpp
1 #include "Simulation.hpp"
2
3
4 namespace blobs {
5 namespace world {
6
7 Simulation::Simulation(Body &r)
8 : root(r) {
9 }
10
11 Simulation::~Simulation() {
12 }
13
14
15 void Simulation::Tick() {
16 }
17
18 }
19 }