X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fworld%2FPlanet.hpp;h=af3b512aea6b058bc97b4dadb7435b0bc65d4347;hb=bcf776b6d51aeb9147bde32da8dd0768b10db993;hp=991985f968173e2eb98f0ddac4b4e3fcdaa9984f;hpb=b795a1df619349d45c3b0ca73e61e68ff483221c;p=blobs.git diff --git a/src/world/Planet.hpp b/src/world/Planet.hpp index 991985f..af3b512 100644 --- a/src/world/Planet.hpp +++ b/src/world/Planet.hpp @@ -64,10 +64,6 @@ public: glm::dvec3 TileCenter(int surface, int x, int y) const noexcept; - void Atmosphere(int a) noexcept { atmosphere = a; } - int Atmosphere() const noexcept { return atmosphere; } - bool HasAtmosphere() const noexcept { return atmosphere >= 0; } - void BuildVAO(const Set &); void Draw(app::Assets &, graphics::Viewport &) override; @@ -75,8 +71,6 @@ private: int sidelength; std::vector tiles; - int atmosphere; - struct Attributes { glm::vec3 position; glm::vec3 tex_coord;