Files
uni/year3/semester1/CT3536: Games Programming/project/Assets/StartRace.cs
2024-03-09 19:25:59 +00:00

13 lines
291 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
// script to enable starting the race from the main menu
public class StartRace : MonoBehaviour
{
public void StartRaceScene() {
SceneManager.LoadScene(1);
}
}