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