Example #1
0
 /// <summary>
 /// Entities you are currently locked on
 /// Grabs one specific target by index (0 based)
 /// </summary>
 public Entity GetTarget(int i)
 {
     Tracing.SendCallback("Character.GetTargets", i.ToString());
     return(Util.GetFromIndexMethod <Entity>(this, "GetTargets", "entity", i));
 }