12345678910111213141516171819202122232425262728293031323334353637383940 |
- //------------------------------------------------------------
- // Game Framework
- // Copyright © 2013-2021 Jiang Yin. All rights reserved.
- // Homepage: https://gameframework.cn/
- // Feedback: mailto:ellan@gameframework.cn
- //------------------------------------------------------------
- using System;
- using UnityEngine;
- namespace MetaClient
- {
- [Serializable]
- public class MyAircraftData : AircraftData
- {
- [SerializeField]
- private string m_Name = null;
- public MyAircraftData(int entityId, int typeId)
- : base(entityId, typeId, CampType.Player)
- {
- }
- /// <summary>
- /// 角色名称。
- /// </summary>
- public string Name
- {
- get
- {
- return m_Name;
- }
- set
- {
- m_Name = value;
- }
- }
- }
- }
|