mirror of
https://gitlab.com/YuukiPS/GSServer-CBT.git
synced 2025-02-18 20:40:32 +03:00
11 lines
173 B
Protocol Buffer
11 lines
173 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "MotionInfo.proto";
|
|
|
|
message EntityMoveInfo {
|
|
uint32 entityId = 1;
|
|
MotionInfo motionInfo = 2;
|
|
uint32 sceneTime = 3;
|
|
uint32 reliableSeq = 4;
|
|
}
|