private void SetEvents() { LevelStarted += () => { // Cursor.lockState = CursorLockMode.Locked; // Cursor.visible = false; if (grid.IsMessy) { grid.ResetGrid(); } mover.Activate(); }; LevelEnded += b => mover.Stop(); }