Removed Mob::DistNoRootNoZ

This commit is contained in:
Arthur Ice 2015-01-18 01:39:17 -08:00
parent 8619a0b518
commit 4431aa0197

View File

@ -2274,13 +2274,6 @@ bool Mob::CanThisClassBlock(void) const
}
}
float Mob::DistNoRootNoZ(float x, float y) const {
float xDiff = x - m_Position.m_X;
float yDiff = y - m_Position.m_Y;
return ( (xDiff * xDiff) + (yDiff * yDiff) );
}
float Mob::DistNoRootNoZ(const Mob &other) const {
float xDiff = other.m_Position.m_X - m_Position.m_X;
float yDiff = other.m_Position.m_Y - m_Position.m_Y;