Example #1
0
 public void GetChampionsNearby(Champion target, TargetType targetType, Fix64 radius, int maxNumber, ref List <Champion> champions)
 {
     this._entityManager.GetChampionsNearby(target, targetType, radius, maxNumber, ref champions);
 }
Example #2
0
        public void HandleBeginMove(string rid, FVec3 direction)
        {
            Champion entity = this._entityManager.GetChampion(rid);

            entity.BeginMove(direction);
        }
Example #3
0
 public Buff CreateBuff(string id, Champion caster, Champion target)
 {
     return(this._buffManager.CreateBuff(id, caster, target));
 }