ZK_Framework/Assets/Scripts/Hotfix/Game/GameEntry.cs

15 lines
226 B
C#
Raw Normal View History

2024-07-04 20:18:43 +08:00
using UnityEngine;
namespace Game
{
public class GameEntry
{
private Game game;
public void Init()
{
Debug.Log("GameEntry");
// this.game = new Game();
}
}
}