summaryrefslogtreecommitdiffhomepage
path: root/loader/ground-cell.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'loader/ground-cell.hpp')
-rw-r--r--loader/ground-cell.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/loader/ground-cell.hpp b/loader/ground-cell.hpp
index 9326cb9c..d96132a0 100644
--- a/loader/ground-cell.hpp
+++ b/loader/ground-cell.hpp
@@ -1,6 +1,6 @@
#pragma once
#include "src/pass-mode.hpp"
-#include <memory>
+#include "compat/borrowed-ptr.hpp"
#include <Corrade/Containers/String.h>
#include <Magnum/Math/Vector2.h>
@@ -10,7 +10,7 @@ class ground_atlas;
struct ground_cell
{
- std::shared_ptr<ground_atlas> atlas;
+ bptr<ground_atlas> atlas;
String name;
Vector2ub size;
pass_mode pass = pass_mode::pass;