mirror of
https://github.com/ryzij/Cube-Tower-Defense.git
synced 2026-07-14 01:56:57 +00:00
14 lines
297 B
C#
14 lines
297 B
C#
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
|
|
public class MainMenu : MonoBehaviour
|
|
{
|
|
public void StartGame()
|
|
{
|
|
SceneManager.LoadScene("Island");
|
|
}
|
|
|
|
public void SourceCodeLinkClick() =>
|
|
Application.OpenURL("https://github.com/ryzij/Cube-Tower-Defense");
|
|
}
|