21 lines
341 B
C#
21 lines
341 B
C#
|
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace Game
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// <20><>Ϸ<EFBFBD><CFB7><EFBFBD>ڡ<EFBFBD>
|
|||
|
/// </summary>
|
|||
|
public partial class AppEntry : MonoBehaviour
|
|||
|
{
|
|||
|
private void Awake()
|
|||
|
{
|
|||
|
InitBuiltinComponents();
|
|||
|
InitCustomComponents();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
|