11 lines
207 B
C#
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);
|
|
}
|
|
}
|