Ejemplo n.º 1
0
 /// <summary>
 /// The Continue
 /// </summary>
 public void Continue()
 {
     OnContinue?.Invoke();
     State = new PlayingState();
     Stats.Continue();
     RefreshAsync();
 }
Ejemplo n.º 2
0
 /// <summary>
 /// The Start
 /// </summary>
 public void Start()
 {
     CurrentPiece = CreateRandomBlock();
     NextPiece    = CreateRandomBlock();
     Stats.Start();
     ResetMatrix();
     State = new PlayingState();
     RefreshAsync();
 }