예제 #1
0
파일: Tile.cs 프로젝트: garcialuigi/Match3
 public static void AttachTileToCell(Tile tile, Cell cell)
 {
     tile.Cell = cell;
     cell.AttachTile(tile);
 }