diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/tile-image.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tile-image.hpp b/src/tile-image.hpp index 7292c5f0..a25b9fed 100644 --- a/src/tile-image.hpp +++ b/src/tile-image.hpp @@ -32,8 +32,12 @@ struct image_ref_ final using tile_image_proto = image_proto_<ground_atlas>; using tile_image_ref = image_ref_<ground_atlas, tile_image_proto>; +extern template struct image_proto_<ground_atlas>; +extern template struct image_ref_<ground_atlas, tile_image_proto>; using wall_image_proto = image_proto_<wall_atlas>; using wall_image_ref = image_ref_<wall_atlas, wall_image_proto>; +extern template struct image_proto_<wall_atlas>; +extern template struct image_ref_<wall_atlas, wall_image_proto>; } // namespace floormat |