예제 #1
0
파일: GameGrid.cs 프로젝트: LexaMV/2048
 public void LevelStart(int height, int weight)
 {
     this.height            = height;
     this.weight            = weight;
     saveAndLoad.score.text = "0";
     saveAndLoad.LoadRecordPoints();
     CreateArrays(height, weight);
     CreateBackgroundGameGrid(height, weight);
     CreateGameBlock(height, weight, -5);
 }