]> git.localhorst.tv Git - blobs.git/blob - src/world/sim.cpp
concerning orbits
[blobs.git] / src / world / sim.cpp
1 #include "Simulation.hpp"
2
3 #include "Body.hpp"
4
5
6 namespace blobs {
7 namespace world {
8
9 Simulation::Simulation(Body &r)
10 : root(r) {
11         r.SetSimulation(*this);
12 }
13
14 Simulation::~Simulation() {
15 }
16
17
18 void Simulation::Tick() {
19         time += 0.01666666666666666666666666666666;
20 }
21
22 }
23 }