diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-06-30 11:44:42 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-06-30 11:44:42 +1000 |
commit | ad58a960e458e596e2a7a9f037487dbe8f4538cc (patch) | |
tree | d42d1653858a40285dd81730599e0f8b7dcc273a /source/game/interfaces/StarInspectableEntity.hpp | |
parent | 17daee680a1659654e88bd370f2ad16e58154483 (diff) |
bring player inspection back!
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; |