2025-07-15 15:33:35 +08:00
|
|
|
|
namespace CreatGame
|
|
|
|
|
|
{
|
2025-07-16 13:36:21 +08:00
|
|
|
|
public class GameLogic : Singleton<GameLogic>
|
2025-07-15 15:33:35 +08:00
|
|
|
|
{
|
2025-07-16 13:36:21 +08:00
|
|
|
|
public void Start()
|
|
|
|
|
|
{
|
|
|
|
|
|
AssetBundle.AssetBundleManager.Instance.Initialize();
|
|
|
|
|
|
}
|
2025-07-15 15:33:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|