10 lines
250 B
C#
10 lines
250 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
|
|
public class MenuManager : MonoBehaviour{
|
|
public void SceneChange(string scene){
|
|
SceneManager.LoadScene(scene);
|
|
}
|
|
}
|