Files
hk4e/gs/model/stamina.go
2022-11-30 22:31:54 +08:00

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
}