mirror of
https://github.com/FlourishingWorld/hk4e.git
synced 2026-02-04 16:02:26 +08:00
13 lines
264 B
Go
13 lines
264 B
Go
package model
|
|
|
|
import "hk4e/protocol/proto"
|
|
|
|
type StaminaInfo struct {
|
|
State proto.MotionState // 动作状态
|
|
Cost int32 // 消耗或恢复的耐力
|
|
RestoreDelay uint8 // 恢复延迟
|
|
|
|
PrevPos *Vector
|
|
CurPos *Vector
|
|
}
|