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