MIF_E31222344/Malukuu/Assets/Script/Pindah_Scene.cs

16 lines
266 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class Pindah_Scene : MonoBehaviour
{
public void LoadScene(string scenename)
{
SceneManager.LoadScene(scenename);
}
}