UMiniGame/Assets/Games/Scripts/GameStart.cs
2025-12-27 15:29:20 +08:00

21 lines
378 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
//using WeChatWASM;
public class GameStart : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
//WX.ReportGameStart();
Application.targetFrameRate = 60;
}
// Update is called once per frame
void Update()
{
}
}