diff options
Diffstat (limited to 'source/game/interfaces/StarInspectableEntity.hpp')
-rw-r--r-- | source/game/interfaces/StarInspectableEntity.hpp | 4 |
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; |