21 lines
378 B
C#
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()
|
|
{
|
|
|
|
}
|
|
}
|