summaryrefslogtreecommitdiffstats
path: root/source/Mobs/Skeleton.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/Mobs/Skeleton.h')
-rw-r--r--source/Mobs/Skeleton.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/source/Mobs/Skeleton.h b/source/Mobs/Skeleton.h
index d0a2da490..7a4af7e22 100644
--- a/source/Mobs/Skeleton.h
+++ b/source/Mobs/Skeleton.h
@@ -13,11 +13,17 @@ class cSkeleton :
typedef cAggressiveMonster super;
public:
- cSkeleton();
+ cSkeleton(bool IsWither);
CLASS_PROTODEF(cSkeleton);
virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override;
+ bool IsWither(void) const { return m_bIsWither; };
+
+private:
+
+ bool m_bIsWither;
+
} ;