MeowmentArt/Assets/Scripts/Base/GameEntry.cs
2026-02-01 13:52:10 +08:00

27 lines
601 B
C#

//------------------------------------------------------------
// Game Framework
// Copyright © 2013-2021 Jiang Yin. All rights reserved.
// Homepage: https://gameframework.cn/
// Feedback: mailto:ellan@gameframework.cn
//------------------------------------------------------------
using UnityEngine;
namespace CrazyMaple
{
/// <summary>
/// 游戏入口。
/// </summary>
public partial class GameEntry : MonoBehaviour
{
public static bool ApplicationQuitStatus = false;
private void Start()
{
InitBuiltinComponents();
}
}
}