diff options
author | Tiger Wang <ziwei.tiger@outlook.com> | 2021-01-02 14:50:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-02 14:50:34 +0100 |
commit | 16aeb84cd35996a6b41f10cbc48a677eeccc911c (patch) | |
tree | ae877926559d59a534bbf3c22651e6df7ffe8d71 /src/Entities/Pawn.h | |
parent | Fix version typo in CMakeLists.txt (#5098) (diff) | |
download | cuberite-16aeb84cd35996a6b41f10cbc48a677eeccc911c.tar cuberite-16aeb84cd35996a6b41f10cbc48a677eeccc911c.tar.gz cuberite-16aeb84cd35996a6b41f10cbc48a677eeccc911c.tar.bz2 cuberite-16aeb84cd35996a6b41f10cbc48a677eeccc911c.tar.lz cuberite-16aeb84cd35996a6b41f10cbc48a677eeccc911c.tar.xz cuberite-16aeb84cd35996a6b41f10cbc48a677eeccc911c.tar.zst cuberite-16aeb84cd35996a6b41f10cbc48a677eeccc911c.zip |
Diffstat (limited to 'src/Entities/Pawn.h')
-rw-r--r-- | src/Entities/Pawn.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/Entities/Pawn.h b/src/Entities/Pawn.h index f4b1cbbbf..1a9285b77 100644 --- a/src/Entities/Pawn.h +++ b/src/Entities/Pawn.h @@ -23,8 +23,6 @@ public: CLASS_PROTODEF(cPawn) cPawn(eEntityType a_EntityType, double a_Width, double a_Height); - virtual ~cPawn() override; - virtual void Destroyed() override; virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override; virtual void KilledBy(TakeDamageInfo & a_TDI) override; @@ -33,6 +31,7 @@ public: virtual bool IsInvisible() const override; virtual void HandleAir(void) override; virtual void HandleFalling(void); + virtual void OnRemoveFromWorld(cWorld & a_World) override; /** Tells all pawns which are targeting us to stop targeting us. */ void StopEveryoneFromTargetingMe(); @@ -85,7 +84,3 @@ private: /** A list of all monsters that are targeting this pawn. */ std::vector<cMonster*> m_TargetingMe; } ; // tolua_export - - - - |