diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-11-25 23:52:10 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-11-25 23:52:10 +0000 |
commit | 6744952e310e828ea29adeabd58b281cf2172c2f (patch) | |
tree | 650db366121e99d2f57ee8f7e093295b324b55a9 /game/terrain.cpp | |
parent | Always build ilt library shared (diff) | |
download | ilt-6744952e310e828ea29adeabd58b281cf2172c2f.tar.bz2 ilt-6744952e310e828ea29adeabd58b281cf2172c2f.tar.xz ilt-6744952e310e828ea29adeabd58b281cf2172c2f.zip |
Include stb directly
Diffstat (limited to 'game/terrain.cpp')
-rw-r--r-- | game/terrain.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/game/terrain.cpp b/game/terrain.cpp index ed8bca5..a7dd334 100644 --- a/game/terrain.cpp +++ b/game/terrain.cpp @@ -9,7 +9,7 @@ #include <location.hpp> #include <maths.h> #include <random> -#include <stb_image.h> +#include <stb/stb_image.h> Terrain::Terrain() : grass {Texture::cachedTexture.get("grass.png")}, water {Texture::cachedTexture.get("water.png")} { |