Improve folder structure

This commit is contained in:
Dries Van Schuylenbergh
2023-03-02 13:36:09 +01:00
parent 8980464875
commit 7a078849c0
88 changed files with 179 additions and 543 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);
}
}