using UnityEngine; namespace Wizard; public static class BrowserURL { public static void Open(string url) { Application.OpenURL(url); } }