TheKingsRace/Assets/Scripts/PlayerScripts/DebugPlayer/DebugStateStuff/NitroState/Nitro/NitroCooldownState.cs

23 lines
466 B
C#

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