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