mmorpg/Assets/Mirror/Hosting/Edgegap/Editor/EdgegapToolScript.cs
2024-08-23 16:17:24 +05:30

13 lines
425 B
C#
Executable File

using UnityEngine;
using Edgegap;
using IO.Swagger.Model;
/// <summary>
/// This script acts as an interface to display and use the necessary variables from the Edgegap tool.
/// The server info can be accessed from the tool window, as well as through the public script property.
/// </summary>
public class EdgegapToolScript : MonoBehaviour
{
public Status ServerStatus => EdgegapServerDataManager.GetServerStatus();
}