13 lines
172 B
C#
13 lines
172 B
C#
using UnityEngine;
|
|
|
|
namespace Michsky.LSS.Demo
|
|
{
|
|
public class DemoLaunchURL : MonoBehaviour
|
|
{
|
|
public void OpenURL(string url)
|
|
{
|
|
Application.OpenURL(url);
|
|
}
|
|
}
|
|
}
|