mirror of
https://github.com/ConjureETS/PillowFight.git
synced 2026-03-24 00:50:59 +00:00
11 lines
190 B
C#
11 lines
190 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
public class StartScript : MonoBehaviour
|
|
{
|
|
void Start()
|
|
{
|
|
MenusHandler.MenusManager.Instance.ShowMenu("SimpleMenu");
|
|
}
|
|
}
|