将佩佩部分内容合入新项目

This commit is contained in:
2024-08-11 17:36:17 +08:00
parent 3c0c311dab
commit b790b7d007
4994 changed files with 1625404 additions and 43 deletions
@@ -0,0 +1,15 @@
using UnityEngine;
namespace Synty.Interface.Samples
{
/// <summary>
/// Opens a URL in the default browser.
/// </summary>
public class SampleURL : MonoBehaviour
{
public void OpenURL(string url)
{
Application.OpenURL(url);
}
}
}