EdgegapToolScript.cs 425 B

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