mirror of
https://github.com/Leahnaya/TheKingsRace.git
synced 2026-03-26 19:54:55 -05:00
I won't apply this cleanup to the networked version yet because they will be updated to a state machine anyways.
23 lines
410 B
C#
23 lines
410 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class MoveRunState : MoveBaseState
|
|
{
|
|
public override void EnterState(MoveStateManager mSM){
|
|
|
|
}
|
|
|
|
public override void UpdateState(MoveStateManager mSM){
|
|
|
|
}
|
|
|
|
public override void FixedUpdateState(MoveStateManager mSM){
|
|
|
|
}
|
|
|
|
public override void OnCollisionEnter(MoveStateManager mSM){
|
|
|
|
}
|
|
}
|