AlicizaX/Client/Assets/Scripts/Startup/Framework/NewMonoBehaviourScript.cs

16 lines
326 B
C#
Raw Normal View History

2025-04-28 19:45:45 +08:00
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()
{
}
}