BattleIceAgentComponent.cs 487 B

12345678910111213141516171819
  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 Ice.Application IceApp;
  14. public BattleIce.ZoneManagerPrx IceZoneManager;
  15. public BattleIce.XmdsManagerPrx IceXmdsManager;
  16. }
  17. }