AlicizaX/Client/Assets/Scripts/Startup/Framework/NewMonoBehaviourScript.cs
2025-04-28 19:45:45 +08:00

16 lines
326 B
C#

using UnityEngine;
public class NewMonoBehaviourScript : MonoBehaviour
{
// Start is called once before the first execution of Update after the MonoBehaviour is created
async void Start()
{
await HttpHelper.GetRemoteVersion();
}
// Update is called once per frame
void Update()
{
}
}