Files
Continentis/Assets/OtherPlugins/Modern UI Pack/Scripts/Demo/LaunchURL.cs
SoulliesOfficial 9b1b5ca93f initial
2025-10-03 00:02:43 -04:00

12 lines
202 B
C#

using UnityEngine;
namespace Michsky.MUIP
{
public class LaunchURL : MonoBehaviour
{
public void GoToURL(string URL)
{
Application.OpenURL(URL);
}
}
}