using AlicizaX; using UnityEngine; namespace AlicizaX.Debugger.Runtime { public sealed partial class DebuggerComponent { private sealed class WebPlayerInformationWindow : ScrollableDebuggerWindowBase { protected override void OnDrawScrollableWindow() { GUILayout.Label("Web Player Information"); GUILayout.BeginVertical("box"); { DrawItem("Absolute URL", Application.absoluteURL); } GUILayout.EndVertical(); } } } }