using SHADE; using System; using System.Collections.Generic; public abstract class StateMachine : Script { private Dictionary stateDictionary; public BaseState currentState = null; public string currentStateName; public string currentAnimName; public StateMachine(GameObject gameObj) : base(gameObj) { } }