21 lines
341 B
C#
21 lines
341 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Game
|
|
{
|
|
/// <summary>
|
|
/// 游戏入口。
|
|
/// </summary>
|
|
public partial class AppEntry : MonoBehaviour
|
|
{
|
|
private void Awake()
|
|
{
|
|
InitBuiltinComponents();
|
|
InitCustomComponents();
|
|
}
|
|
}
|
|
}
|
|
|
|
|