diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-01-01 18:53:51 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-01-01 19:01:39 +0000 |
commit | f91391d6a199b8699cec0426a73fd06055be3052 (patch) | |
tree | 40a3e2f493807a6bdc00891c79e98c3d4e5b072f /game | |
parent | Don't forward declare Cache (diff) | |
download | ilt-f91391d6a199b8699cec0426a73fd06055be3052.tar.bz2 ilt-f91391d6a199b8699cec0426a73fd06055be3052.tar.xz ilt-f91391d6a199b8699cec0426a73fd06055be3052.zip |
Cache allows multiple key parts
Diffstat (limited to 'game')
-rw-r--r-- | game/network/network.cpp | 1 | ||||
-rw-r--r-- | game/terrain.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/game/network/network.cpp b/game/network/network.cpp index 47e51e2..f59fe1e 100644 --- a/game/network/network.cpp +++ b/game/network/network.cpp @@ -2,6 +2,7 @@ #include "routeWalker.h" #include <array> #include <cache.h> +#include <filesystem> #include <game/network/link.h> #include <gfx/models/texture.h> #include <initializer_list> diff --git a/game/terrain.cpp b/game/terrain.cpp index 4c902ef..3089f3a 100644 --- a/game/terrain.cpp +++ b/game/terrain.cpp @@ -2,6 +2,7 @@ #include "gfx/models/texture.h" #include <cache.h> #include <cstddef> +#include <filesystem> #include <gfx/gl/shader.h> #include <gfx/image.h> #include <gfx/models/mesh.h> |