Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/source/game/interfaces/StarInspectableEntity.hpp
diff options
context:
space:
mode:
authorKae <80987908+Novaenia@users.noreply.github.com>2023-06-30 11:44:42 +1000
committerKae <80987908+Novaenia@users.noreply.github.com>2023-06-30 11:44:42 +1000
commitad58a960e458e596e2a7a9f037487dbe8f4538cc (patch)
treed42d1653858a40285dd81730599e0f8b7dcc273a /source/game/interfaces/StarInspectableEntity.hpp
parent17daee680a1659654e88bd370f2ad16e58154483 (diff)
bring player inspection back!
Diffstat (limited to 'source/game/interfaces/StarInspectableEntity.hpp')
-rw-r--r--source/game/interfaces/StarInspectableEntity.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/game/interfaces/StarInspectableEntity.hpp b/source/game/interfaces/StarInspectableEntity.hpp
index c5d175b..c1c4abc 100644
--- a/source/game/interfaces/StarInspectableEntity.hpp
+++ b/source/game/interfaces/StarInspectableEntity.hpp
@@ -1,13 +1,13 @@
#ifndef STAR_INSPECTABLE_ENTITY_HPP
#define STAR_INSPECTABLE_ENTITY_HPP
-#include "StarTileEntity.hpp"
+#include "StarEntity.hpp"
namespace Star {
STAR_CLASS(InspectableEntity);
-class InspectableEntity : public virtual TileEntity {
+class InspectableEntity : public virtual Entity {
public:
// Default implementation returns true
virtual bool inspectable() const;