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