Files
Fishing2/Assets/Scripts/Fishing/Player/States/PlayerStateFight.cs
2026-01-11 23:58:02 +08:00

20 lines
372 B
C#

namespace NBF
{
public class PlayerStateFight : PlayerStateBase
{
public override uint StateId => (uint)PlayerState.Fishing;
protected override void onEnter()
{
}
protected override void onExit()
{
}
protected override uint onUpdate()
{
return States.None;
}
}
}