mirror of
https://github.com/FlourishingWorld/hk4e.git
synced 2026-02-12 16:52:36 +08:00
14 lines
206 B
Go
14 lines
206 B
Go
package model
|
|
|
|
import (
|
|
"hk4e/protocol/proto"
|
|
)
|
|
|
|
type StaminaInfo struct {
|
|
PrevState proto.MotionState
|
|
PrevPos *Vector
|
|
CurState proto.MotionState
|
|
CurPos *Vector
|
|
RestoreDelay uint8
|
|
}
|