Retrieves the zone's unit data.
Esempio n. 1
0
 public EndComponent(FFACE fface)
     : base(fface)
 {
     _fface = fface;
     _executor = new Executor(fface);
     _units = new UnitService(fface);
 }
Esempio n. 2
0
        public TravelComponent(FFACE fface)
        {
            _fface = fface;

            // Create unit object for parsing of npc array.
            _units = new UnitService(fface);
        }
Esempio n. 3
0
 public FollowState(IMemoryAPI fface) : base(fface)
 {
     this.UnitService = new UnitService(fface);
 }
Esempio n. 4
0
 public RestState(IMemoryAPI fface) : base(fface)
 {
     _units = new UnitService(fface);
 }
Esempio n. 5
0
 public RestComponent(FFACE fface)
 {
     _fface = fface;
     _units = new UnitService(fface);
 }
Esempio n. 6
0
 public SetTargetState(IMemoryAPI fface)
     : base(fface)
 {
     _units = new UnitService(fface);
 }
Esempio n. 7
0
 public TravelState(IMemoryAPI fface) : base(fface)
 {
     // Create unit object for parsing of npc array. 
     _units = new UnitService(fface);
 }