コード例 #1
0
ファイル: Tile.cs プロジェクト: garcialuigi/Match3
 public static void AttachTileToCell(Tile tile, Cell cell)
 {
     tile.Cell = cell;
     cell.AttachTile(tile);
 }