13 lines
263 B
C#
13 lines
263 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
using UnityEngine.SceneManagement;
|
||
|
|
||
|
public class SceneLoader : MonoBehaviour
|
||
|
{
|
||
|
public void ChangeScene(string _sceneName)
|
||
|
{
|
||
|
SceneManager.LoadScene(_sceneName);
|
||
|
}
|
||
|
}
|