TheKingsRace/Assets/Scripts/PlayerScripts/DebugPlayer/DebugStateStuff/OffenseState/OffenseBaseState.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
437 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public abstract class OffenseBaseState
{
public abstract void EnterState(OffenseStateManager oSM, OffenseBaseState previousState);
public abstract void ExitState(OffenseStateManager oSM, OffenseBaseState nextState);
public abstract void UpdateState(OffenseStateManager oSM);
public abstract void FixedUpdateState(OffenseStateManager oSM);
}