summaryrefslogtreecommitdiffhomepage
path: root/editor/vobj-editor.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'editor/vobj-editor.hpp')
-rw-r--r--editor/vobj-editor.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/vobj-editor.hpp b/editor/vobj-editor.hpp
index 962212c7..7bcc32b6 100644
--- a/editor/vobj-editor.hpp
+++ b/editor/vobj-editor.hpp
@@ -11,14 +11,14 @@ class world;
struct global_coords;
struct object;
class anim_atlas;
-struct vobj_info;
+struct vobj_cell;
struct app;
struct vobj_factory
{
vobj_factory();
virtual ~vobj_factory() noexcept;
- virtual const vobj_info& info() const = 0;
+ virtual const vobj_cell& info() const = 0;
virtual object_type type() const = 0;
virtual std::shared_ptr<object> make(world& w, object_id id, global_coords pos) const = 0;