summaryrefslogblamecommitdiffstats
path: root/src/Mobs/WitherSkeleton.h
blob: 8aa7574df717e5e5bfe01d32880fb42f2471b12f (plain) (tree)
1
2
3
4
5
6
7
8
9








                              
                      

                                 
                                         

       

                          


                                       

        

                                                                                       
                                                                   
                                                                      
   

#pragma once

#include "AggressiveMonster.h"





class cWitherSkeleton:
	public cAggressiveMonster
{
	using Super = cAggressiveMonster;

public:

	cWitherSkeleton();

	CLASS_PROTODEF(cWitherSkeleton)

private:

	virtual bool Attack(std::chrono::milliseconds a_Dt) override;
	virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override;
	virtual bool IsNetherNative(void) override { return true; }
	virtual void SpawnOn(cClientHandle & a_ClientHandle) override;
} ;