示例#1
0
 public TileLocation Plus(TileLocation loc)
 {
     return(Plus(loc.Row, loc.Column));
 }
示例#2
0
 public ClickableTile(string textureName, TileLocation location, bool blocking, int layer = 0)
     : this(textureName, location, blocking, () => { }, layer)
 {
 }
示例#3
0
 protected bool Equals(TileLocation other)
 {
     return(Column == other.Column && Row == other.Row);
 }