Esempio n. 1
0
 public bool Equals(Size other)
 {
     if ((object)other == null) return false;
     return this.Width.Equals(other.Width) && this.Height.Equals(other.Height);
 }
Esempio n. 2
0
 public GameStateDrawer()
 {
     BasePos = new Position(16, 16);
     CellSize = new Size(16, 16);
 }