12 lines
215 B
C#
12 lines
215 B
C#
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
|
|
public class ToCh2 : MonoBehaviour
|
|
{
|
|
// Method to load the "Lore" scene
|
|
public void LoadCh2()
|
|
{
|
|
SceneManager.LoadScene("Chapter2");
|
|
}
|
|
}
|