13 lines
170 B
C#
13 lines
170 B
C#
using UnityEngine;
|
|
|
|
namespace Michsky.UI.MTP
|
|
{
|
|
public class LaunchURL : MonoBehaviour
|
|
{
|
|
public void OpenURL(string goURL)
|
|
{
|
|
Application.OpenURL(goURL);
|
|
}
|
|
}
|
|
}
|