Files
RatStabber/Assets/Scenes/LoreScenes/ToCh1.cs
2024-10-26 23:39:07 -07:00

12 lines
215 B
C#

using UnityEngine;
using UnityEngine.SceneManagement;
public class ToCh1 : MonoBehaviour
{
// Method to load the "Lore" scene
public void LoadCh1()
{
SceneManager.LoadScene("Chapter1");
}
}