summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/anim-atlas.hpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/anim-atlas.hpp b/src/anim-atlas.hpp
index e58f90b6..d8105813 100644
--- a/src/anim-atlas.hpp
+++ b/src/anim-atlas.hpp
@@ -4,12 +4,18 @@
#include "anim.hpp"
#include <array>
#include <Corrade/Containers/BitArray.h>
-#include <Corrade/Containers/BitArrayView.h>
#include <Corrade/Containers/String.h>
#include <Magnum/Math/Vector2.h>
#include <Magnum/ImageView.h>
#include <Magnum/GL/Texture.h>
+namespace Corrade::Containers {
+class BitArray;
+template<class> class BasicBitArrayView;
+typedef BasicBitArrayView<const char> BitArrayView;
+typedef BasicBitArrayView<char> MutableBitArrayView;
+} // namespace Corrade::Containers
+
namespace floormat {
struct anim_atlas final