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

14 lines
224 B
C#
Raw Normal View History

2023-11-07 13:55:35 +00:00
using UnityEngine;
namespace Michsky.UI.Shift
{
public class LaunchURL : MonoBehaviour
{
public string URL;
public void GoToURL()
{
Application.OpenURL(URL);
}
}
}