game init

This commit is contained in:
2025-11-07 01:59:46 -08:00
parent a58defe364
commit 07f7eb1e2c
333 changed files with 88805 additions and 3 deletions

View File

@@ -0,0 +1,15 @@
using UnityEngine;
using UnityEngine.SceneManagement;
public class CreditScreenButton : MonoBehaviour
{
public void Close()
{
SceneManager.LoadScene(0);
}
public void Website()
{
Application.OpenURL("https://wiiirhung.com");
}
}