DET25-FeelTheEdge/vr-unity/Assets/Scripts/StartupGameManager.cs
2025-03-18 17:45:20 +01:00

25 lines
403 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class StartupGameManager : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
public void StartGame()
{
SceneManager.LoadScene("design-environment");
}
}