diff options
Diffstat (limited to 'src/ground-atlas.cpp')
-rw-r--r-- | src/ground-atlas.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/ground-atlas.cpp b/src/ground-atlas.cpp index f78d53be..aae04ae9 100644 --- a/src/ground-atlas.cpp +++ b/src/ground-atlas.cpp @@ -1,8 +1,9 @@ #include "ground-atlas.hpp" #include "quads.hpp" #include "compat/assert.hpp" -#include "tile-image.hpp" #include "compat/exception.hpp" +#include "compat/borrowed-ptr.inl" +#include "tile-image.hpp" #include "loader/loader.hpp" #include <limits> #include <Magnum/Math/Color.h> @@ -11,6 +12,9 @@ namespace floormat { +template class bptr<ground_atlas>; +template class bptr<const ground_atlas>; + using namespace floormat::Quads; ground_atlas::ground_atlas(ground_def info, const ImageView2D& image) : |