BattleIceAgentComponent.cs 495 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ET.Server
  7. {
  8. [ComponentOf(typeof(Scene))]
  9. public class BattleIceAgentComponent : Entity, IAwake, IDestroy
  10. {
  11. [StaticField]
  12. public static BattleIceAgentComponent Instance;
  13. public BattleIce.ZoneManagerPrx IceZoneManager;
  14. public BattleIce.XmdsManagerPrx IceXmdsManager;
  15. public string StrBattleServerVersion;
  16. }
  17. }