mirror of
https://github.com/Leahnaya/TheKingsRace.git
synced 2026-08-21 18:04:27 -05:00
created a debug prefab
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
public abstract class dAerialBaseState
|
||||
{
|
||||
public abstract void EnterState(dAerialStateManager aSM, dAerialBaseState previousState);
|
||||
public abstract void ExitState(dAerialStateManager aSM, dAerialBaseState nextState);
|
||||
public abstract void UpdateState(dAerialStateManager aSM);
|
||||
public abstract void FixedUpdateState(dAerialStateManager aSM);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user