diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-17 19:09:33 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-17 19:09:33 -0400 |
commit | 2cedd39a90fdb0387783b50446b16732517fb651 (patch) | |
tree | 78efc6f36096b7e0e0ff200220298c4ee7576bf1 /src/world.hpp | |
parent | 0236eb7f6391c9d925dcaaddb8cb01ecfb7d5e55 (diff) |
World can now draw properly, and camera follows player
Diffstat (limited to 'src/world.hpp')
-rw-r--r-- | src/world.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/world.hpp b/src/world.hpp index 696f0aa..9314fa6 100644 --- a/src/world.hpp +++ b/src/world.hpp @@ -112,6 +112,9 @@ public: /* SEED */ unsigned int getSeed(); unsigned int setSeed(unsigned int); + + /* PHYSICS */ + double getHeight(double x, double y, double z); }; /** |