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

14 lines
224 B
C#
Raw Normal View History

2025-11-25 08:19:33 -05:00
using UnityEngine;
2026-06-12 17:11:39 -04:00
namespace Michsky.UI.Shift
2025-11-25 08:19:33 -05:00
{
public class LaunchURL : MonoBehaviour
{
2026-06-12 17:11:39 -04:00
public string URL;
public void GoToURL()
2025-11-25 08:19:33 -05:00
{
Application.OpenURL(URL);
}
}
}