TheKingsRace/Assets/Scripts/PlayerScripts/DebugPlayer/DebugStateStuff/NitroState/NitroBaseState.cs
Melbyj1125 833183d034 Finished the Movement and Aerial groups
Working on the Dash, Nitro, and offense groups now
2022-02-15 21:19:12 -06:00

12 lines
423 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public abstract class NitroBaseState
{
public abstract void EnterState(NitroStateManager nSM, NitroBaseState previousState);
public abstract void ExitState(NitroStateManager nSM, NitroBaseState nextState);
public abstract void UpdateState(NitroStateManager nSM);
public abstract void FixedUpdateState(NitroStateManager nSM);
}