summaryrefslogtreecommitdiffstats
path: root/src/Mobs/NewWither.h
diff options
context:
space:
mode:
authorSamuel Barney <samjbarney@gmail.com>2014-08-21 16:26:42 +0200
committerSamuel Barney <samjbarney@gmail.com>2014-08-21 16:26:42 +0200
commit778b933e0078b740093ab9d83eddef702011791a (patch)
treeac1b610b0704f5c6bbd84c83d68a73d8cb01d2b7 /src/Mobs/NewWither.h
parentRemoved references to the new mob code in preparation to renaming it. (diff)
downloadcuberite-778b933e0078b740093ab9d83eddef702011791a.tar
cuberite-778b933e0078b740093ab9d83eddef702011791a.tar.gz
cuberite-778b933e0078b740093ab9d83eddef702011791a.tar.bz2
cuberite-778b933e0078b740093ab9d83eddef702011791a.tar.lz
cuberite-778b933e0078b740093ab9d83eddef702011791a.tar.xz
cuberite-778b933e0078b740093ab9d83eddef702011791a.tar.zst
cuberite-778b933e0078b740093ab9d83eddef702011791a.zip
Diffstat (limited to 'src/Mobs/NewWither.h')
-rw-r--r--src/Mobs/NewWither.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/Mobs/NewWither.h b/src/Mobs/NewWither.h
deleted file mode 100644
index 399ba6866..000000000
--- a/src/Mobs/NewWither.h
+++ /dev/null
@@ -1,32 +0,0 @@
-
-#pragma once
-
-#include "NewMonster.h"
-
-
-
-
-
-class cNewWither :
- public cNewMonster
-{
- typedef cNewMonster super;
-
-public:
- cNewWither(void);
-
- CLASS_PROTODEF(cNewWither)
-
- /** Returns whether the wither is invulnerable to arrows. */
- bool IsArmored(void) const;
- int GetWitherInvulnerableTicks() const { return 0; }
-
- // cEntity overrides
- virtual bool Initialize(cWorld & a_World) override;
- virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override;
-
-} ;
-
-
-
-