14 lines
267 B
C#
14 lines
267 B
C#
|
using UnityEngine;
|
|||
|
using YooAsset;
|
|||
|
|
|||
|
namespace ZC
|
|||
|
{
|
|||
|
public class GameEntry
|
|||
|
{
|
|||
|
public static void Init(GameObject go, EPlayMode playMode)
|
|||
|
{
|
|||
|
Debug.Log("热更成功了");
|
|||
|
ZCGame zcGame = new ZCGame(go);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|