This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
mochapine64backup/MoCha/Assets/Scripts/SceneLoader.cs

11 lines
203 B
C#
Raw Normal View History

2018-04-10 12:44:50 -05:00
using UnityEngine;
using UnityEngine.SceneManagement;
using System.Collections;
public class SceneLoader : MonoBehaviour {
public void LoadScene(int scene)
{
SceneManager.LoadScene(scene);
}
}