mirror of
https://github.com/Leahnaya/TheKingsRace.git
synced 2026-03-26 19:54:55 -05:00
23 lines
466 B
C#
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){
|
|
|
|
}
|
|
}
|