Add courses screen

This commit is contained in:
lvrossem
2023-02-24 23:33:51 +01:00
parent 001a056b71
commit 5d9df38a1b
5 changed files with 1424 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class ChangeSceneOnClick : MonoBehaviour
{
public void loadScene(string sceneName) {
SceneManager.LoadScene(sceneName);
}
}