Exemplo n.º 1
0
 public void MakeEmpty()
 {
     m_Source      = new Point(-100, -100);
     m_Destination = new Point(-100, -100);
 }
Exemplo n.º 2
0
 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);
 }
Exemplo n.º 3
0
 public Move(Point i_Source, Point i_Dest)
 {
     m_Source      = i_Source;
     m_Destination = i_Dest;
 }