コード例 #1
0
ファイル: PuzzleBoard.cs プロジェクト: CarlLee/cig2019
 public void Attach(int x, int y, TriBlock shape)
 {
     attachHistories.Add(new AttachHistory()
     {
         offsetX = x,
         offsetY = y,
         block   = shape
     });
     triGrid.Attach(x, y, shape);
 }