mirror of
https://github.com/Leahnaya/TheKingsRace.git
synced 2026-03-23 02:04:17 -05:00
23 lines
456 B
C#
23 lines
456 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class MoveCrouchWalkState : MoveBaseState
|
|
{
|
|
public override void EnterState(MoveStateManager mSM){
|
|
Debug.Log("Crouch Walk State");
|
|
}
|
|
|
|
public override void UpdateState(MoveStateManager mSM){
|
|
|
|
}
|
|
|
|
public override void FixedUpdateState(MoveStateManager mSM){
|
|
|
|
}
|
|
|
|
public override void OnCollisionEnter(MoveStateManager mSM){
|
|
|
|
}
|
|
}
|