16 lines
296 B
C#
16 lines
296 B
C#
using UnityEngine;
|
|
|
|
namespace Synty.Interface.Samples
|
|
{
|
|
/// <summary>
|
|
/// Opens a URL in the default browser.
|
|
/// </summary>
|
|
public class SampleURL : MonoBehaviour
|
|
{
|
|
public void OpenURL(string url)
|
|
{
|
|
Application.OpenURL(url);
|
|
}
|
|
}
|
|
}
|