mirror of
https://github.com/boudji-ludwig-pett/cnam-geometry-dash.git
synced 2025-02-17 12:28:10 +01:00
11 lines
190 B
C#
11 lines
190 B
C#
|
using UnityEngine;
|
||
|
using UnityEngine.SceneManagement;
|
||
|
|
||
|
public class LevelNameButton : MonoBehaviour
|
||
|
{
|
||
|
public void PlayLevel()
|
||
|
{
|
||
|
SceneManager.LoadScene("LevelScene");
|
||
|
}
|
||
|
}
|