Removed unneeded code in Placeable.

This commit is contained in:
King_DuckZ 2014-02-24 21:09:33 +01:00
parent a9b53f33e1
commit d9ccbede66
3 changed files with 2 additions and 23 deletions

View file

@ -11,16 +11,12 @@ namespace cloonel {
float2 GetPos ( void ) const noexcept;
void AddOffset ( const float2& parOffset ) noexcept;
void SwapMover ( Mover* parMover );
protected:
explicit Placeable ( float2 parPos );
~Placeable ( void ) noexcept = default;
private:
float2 m_pos;
Mover* m_mover;
int m_idForMover;
};
///--------------------------------------------------------------------------