diff options
Diffstat (limited to 'source/game/StarNpc.hpp')
-rw-r--r-- | source/game/StarNpc.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/game/StarNpc.hpp b/source/game/StarNpc.hpp index b4fc21e..02a6ae1 100644 --- a/source/game/StarNpc.hpp +++ b/source/game/StarNpc.hpp @@ -50,6 +50,7 @@ public: ByteArray netStore(); EntityType entityType() const override; + ClientEntityMode clientEntityMode() const override; void init(World* world, EntityId entityId, EntityMode mode) override; void uninit() override; @@ -201,6 +202,8 @@ private: NetElementData<Maybe<String>> m_uniqueIdNetState; NetElementData<EntityDamageTeam> m_teamNetState; + ClientEntityMode m_clientEntityMode; + Humanoid m_humanoid; NetElementEnum<Humanoid::State> m_humanoidStateNetState; NetElementEnum<HumanoidEmote> m_humanoidEmoteStateNetState; |