Update entity sizes

This commit is contained in:
Tiger Wang
2021-04-12 22:35:07 +01:00
parent 1394fc8eb5
commit 6e80f7544d
70 changed files with 124 additions and 112 deletions
+3 -4
View File
@@ -8,13 +8,12 @@
cPathFinder::cPathFinder(double a_MobWidth, double a_MobHeight) :
m_Path(),
cPathFinder::cPathFinder(float a_MobWidth, float a_MobHeight) :
m_Width(a_MobWidth),
m_Height(a_MobHeight),
m_GiveUpCounter(0),
m_NotFoundCooldown(0)
{
m_Width = a_MobWidth;
m_Height = a_MobHeight;
}