protected bool Equals(TileLocation other) { return(Column == other.Column && Row == other.Row); }
public Tile(TileLocation location, string textureName, params IWorldObject[] gameObjs) { this.objs = gameObjs; this.Location = location; this.textureName = textureName; }