Health/Assets/Shift - Complete Sci-Fi UI/Scripts/Other/LaunchURL.cs

14 lines
224 B
C#

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