PlayerMoneyComponent.cs 224 B

123456789
  1. namespace ET.Server
  2. {
  3. [ComponentOf(typeof (WNPlayer))]
  4. public class PlayerMoneyComponent: Entity, IAwake<WNPlayer>, IDestroy
  5. {
  6. /** 玩家对象 **/
  7. public WNPlayer Player { get; set; }
  8. }
  9. }