コード例 #1
0
ファイル: TileLocation.cs プロジェクト: EnigmaDragons/MegaBuy
 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
ファイル: TileLocation.cs プロジェクト: EnigmaDragons/MegaBuy
 protected bool Equals(TileLocation other)
 {
     return(Column == other.Column && Row == other.Row);
 }