summaryrefslogblamecommitdiffstats
path: root/src/Entities/HangingEntity.cpp
blob: e69efdb73663ed4b3de75e1179e9c139fa8c6f4a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11



                                                                                              
                   
                            




 

                                                                                               
                                                                   










                                                            
                                         




 

#include "Globals.h"  // NOTE: MSVC stupidness requires this to be the same across all modules

#include "HangingEntity.h"
#include "Player.h"
#include "../ClientHandle.h"





cHangingEntity::cHangingEntity(eEntityType a_EntityType, eBlockFace a_Facing, Vector3d a_Pos) :
	super(a_EntityType, a_Pos, 0.8, 0.8),
	m_Facing(cHangingEntity::BlockFaceToProtocolFace(a_Facing))
{
	SetMaxHealth(1);
	SetHealth(1);
}





void cHangingEntity::SpawnOn(cClientHandle & a_ClientHandle)
{
	SetYaw(GetProtocolFacing() * 90);
}