init: version 1

This commit is contained in:
Job
2025-07-17 17:16:02 +02:00
commit a76c0f6445
519 changed files with 202925 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
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);
}
}