mirror of
https://github.com/FlourishingWorld/hk4e.git
synced 2026-02-04 18:12:27 +08:00
13 lines
174 B
Go
13 lines
174 B
Go
package model
|
|
|
|
import (
|
|
"hk4e/protocol/proto"
|
|
)
|
|
|
|
type StaminaInfo struct {
|
|
PrevState proto.MotionState
|
|
PrevPos *Vector
|
|
CurState proto.MotionState
|
|
CurPos *Vector
|
|
}
|