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