11 lines
190 B
C#
Raw Permalink Normal View History

2025-02-17 12:27:09 +01:00
using UnityEngine;
using UnityEngine.SceneManagement;
public class LevelNameButton : MonoBehaviour
{
public void PlayLevel()
{
SceneManager.LoadScene("LevelScene");
}
}