using UnityEngine; namespace Synty.Interface.Samples { /// /// Opens a URL in the default browser. /// public class SampleURL : MonoBehaviour { public void OpenURL(string url) { Application.OpenURL(url); } } }