Newer
Older
TheVengeance-Project-IADE-Unity2D / Assets / Scripts / NPC / BlackSmith / Actions / DialogueAction.cs
@Rackday Rackday on 29 Oct 273 bytes Major Update
using MyCollections.AI.FinitStateMachine;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class DialogueAction : Action
{
    public override void Run(FSM fsm)
    {
        Blacksmith controller = (Blacksmith)fsm.Controller;
    }
}