fix: compiler warnings
This commit is contained in:
@@ -95,10 +95,10 @@ public:
|
||||
void heal(float heal){ m_Health = std::min((float)getStats()->getMaxLife(), m_Health + heal); }
|
||||
|
||||
float getX() const{ return m_X; }
|
||||
float setX(float x){ m_X = x; }
|
||||
void setX(float x){ m_X = x; }
|
||||
|
||||
float getY() const{ return m_Y; }
|
||||
float setY(float y){ m_Y = y; }
|
||||
void setY(float y){ m_Y = y; }
|
||||
|
||||
Direction getDirection() const{ return m_Direction; }
|
||||
void setDirection(Direction dir){ m_Direction = dir; }
|
||||
|
||||
Reference in New Issue
Block a user