ExecuteRangedAttack() public method

Executes the ranged attack.
public ExecuteRangedAttack ( ) : void
return void
Example #1
0
    public override ActionResult Execute(RAIN.Core.AI ai)
    {
        NPC npc = ai.Body.GetComponent <NPC>();

        npc.ExecuteRangedAttack();

        return(ActionResult.SUCCESS);
    }