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