Files
SimUL/Assets/Scripts/StartUp.cs
T

11 lines
207 B
C#

using UnityEngine;
public class StartUp : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
GameManager.Instance.Scene.Change("City",string.Empty);
}
}