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:
madmaxoft@gmail.com
2013-05-21 12:58:21 +00:00
parent d28ff25c33
commit a4d903aa15
3 changed files with 162 additions and 11 deletions
+19 -2
View File
@@ -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;