summaryrefslogtreecommitdiffhomepage
path: root/src/tile-atlas.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tile-atlas.hpp')
-rw-r--r--src/tile-atlas.hpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/tile-atlas.hpp b/src/tile-atlas.hpp
index 5856f3bb..55546017 100644
--- a/src/tile-atlas.hpp
+++ b/src/tile-atlas.hpp
@@ -1,10 +1,9 @@
#pragma once
+#include <array>
+#include <memory>
#include <Corrade/Containers/String.h>
#include <Magnum/Magnum.h>
#include <Magnum/GL/Texture.h>
-#include <array>
-#include <string>
-#include <memory>
namespace floormat {
@@ -32,7 +31,7 @@ private:
std::unique_ptr<const texcoords[]> texcoords_;
GL::Texture2D tex_;
- std::string name_;
+ String name_;
Vector2ui size_;
Vector2ub dims_;
};