summaryrefslogtreecommitdiffhomepage
path: root/loader/anim-traits.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'loader/anim-traits.hpp')
-rw-r--r--loader/anim-traits.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/loader/anim-traits.hpp b/loader/anim-traits.hpp
index 517a3097..85c71612 100644
--- a/loader/anim-traits.hpp
+++ b/loader/anim-traits.hpp
@@ -1,6 +1,6 @@
#pragma once
#include "atlas-loader-fwd.hpp"
-#include <memory>
+#include "compat/borrowed-ptr.hpp"
#include <cr/Optional.h>
namespace floormat { struct anim_cell; class anim_atlas; }
@@ -15,13 +15,13 @@ template<> struct atlas_loader_traits<anim_atlas>
using Storage = atlas_storage<Atlas, Self>;
static StringView loader_name();
- static const std::shared_ptr<Atlas>& atlas_of(const Cell& x);
- static std::shared_ptr<Atlas>& atlas_of(Cell& x);
+ static const bptr<Atlas>& atlas_of(const Cell& x);
+ static bptr<Atlas>& atlas_of(Cell& x);
static StringView name_of(const Cell& x);
static String& name_of(Cell& x);
static void atlas_list(Storage& st);
static Cell make_invalid_atlas(Storage& st);
- static std::shared_ptr<Atlas> make_atlas(StringView name, const Cell& c);
+ static bptr<Atlas> make_atlas(StringView name, const Cell& c);
static Optional<Cell> make_cell(StringView name);
};