Files
puzzle-game/Assets/Prefabs/Managers/Scripts/MenuManager.cs
2025-07-17 17:16:02 +02:00

13 lines
273 B
C#

using UnityEngine;
/// <summary>
/// MenuManager manages the transitions from the menu screen to the game levels.
/// </summary>
public class MenuManager : MonoBehaviour
{
public void ToLevel(int level)
{
TransitionManager.Instance.ToLevel(level);
}
}