Fixed linking error from rev 1498
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1501 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
+19
-2
@@ -498,8 +498,6 @@ bool cEntity::IsA(const char * a_ClassName) const
|
||||
|
||||
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
// Set orientations
|
||||
void cEntity::SetRot(const Vector3f & a_Rot)
|
||||
{
|
||||
m_Rot = a_Rot;
|
||||
@@ -521,6 +519,15 @@ void cEntity::SetHeadYaw(double a_HeadYaw)
|
||||
|
||||
|
||||
|
||||
void cEntity::SetHeight(double a_Height)
|
||||
{
|
||||
m_Height = a_Height;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
void cEntity::SetMass(double a_Mass)
|
||||
{
|
||||
if (a_Mass > 0)
|
||||
@@ -612,6 +619,16 @@ void cEntity::SetSpeedZ(double a_SpeedZ)
|
||||
|
||||
|
||||
|
||||
|
||||
void cEntity::SetWidth(double a_Width)
|
||||
{
|
||||
m_Width = a_Width;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
void cEntity::AddPosX(double a_AddPosX)
|
||||
{
|
||||
m_Pos.x += a_AddPosX;
|
||||
|
||||
Reference in New Issue
Block a user