]> git.localhorst.tv Git - blobs.git/blobdiff - src/world/Simulation.hpp
concerning orbits
[blobs.git] / src / world / Simulation.hpp
index 2acf54981b29b9bc04177a44a9b5cd84256503ca..6d22ed3ef9e5087f886e2f1c62e94ef34af57aea 100644 (file)
@@ -25,8 +25,11 @@ public:
        Body &Root() { return root; }
        const Body &Root() const { return root; }
 
+       double Time() const noexcept { return time; }
+
 private:
        Body &root;
+       double time;
 
 };