public void MakeEmpty() { m_Source = new Point(-100, -100); m_Destination = new Point(-100, -100); }
public Move() // C'tor that create and empty move { // Point(-100, -100) -> Empty Point, hence two empty point -> empty move m_Source = new Point(-100, -100); m_Destination = new Point(-100, -100); }
public Move(Point i_Source, Point i_Dest) { m_Source = i_Source; m_Destination = i_Dest; }