// ***********************************************************************
// Assembly : Game
// Author : Kimch
// Created : 2020-09-02
// Description :
// Last Modified By :
// Last Modified On :
// ***********************************************************************
//
//
// ***********************************************************************
namespace G
{
using UnityEngine;
///
/// 主角
///
public partial class EntityMainPlayer : EntityPlayer
{
///
///
///
public override EntityType entityType => EntityType.MainPlayer;
#region Unity & Instance
private static EntityMainPlayer _Instance;
///
///
///
public static EntityMainPlayer Instance => _Instance;
protected override void Awake()
{
_Instance = this;
base.Awake();
}
#endregion
}
}