init: version 1
This commit is contained in:
12
Assets/Prefabs/Managers/Scripts/MenuManager.cs
Normal file
12
Assets/Prefabs/Managers/Scripts/MenuManager.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user