耐力模块初步完善

This commit is contained in:
UnKownOwO
2022-11-28 22:14:07 +08:00
parent 362ca86130
commit 3cd8a32818
10 changed files with 211 additions and 7 deletions

12
gs/model/stamina.go Normal file
View File

@@ -0,0 +1,12 @@
package model
import (
"hk4e/protocol/proto"
)
type StaminaInfo struct {
PrevState proto.MotionState
PrevPos *Vector
CurState proto.MotionState
CurPos *Vector
}