20 lines
394 B
C#
20 lines
394 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
|
|
public class InitLogic : MonoBehaviour
|
|
{
|
|
private void Start()
|
|
{
|
|
Application.targetFrameRate = 60;
|
|
|
|
TKGSDKManager.Instance.InitSDK(EnterGame);
|
|
EnterGame();
|
|
}
|
|
|
|
private void EnterGame()
|
|
{
|
|
SceneManager.LoadScene("Main");
|
|
}
|
|
} |