Files
RatStabber/Assets/Scenes/LoreScenes/ToPrequel.cs
Iazubi 93ce0ad656 ADDED BUILD SCENES FOR LORE
The project now knows there are lots of new scenes
2024-10-26 17:02:33 -07:00

12 lines
227 B
C#

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