14 lines
224 B
C#
14 lines
224 B
C#
using UnityEngine;
|
|
|
|
namespace Michsky.UI.Shift
|
|
{
|
|
public class LaunchURL : MonoBehaviour
|
|
{
|
|
public string URL;
|
|
|
|
public void GoToURL()
|
|
{
|
|
Application.OpenURL(URL);
|
|
}
|
|
}
|
|
} |