GC-Proto/proto/ForceDragAvatarNotify.proto

18 lines
380 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "MotionInfo.proto";
2023-02-28 04:12:44 +03:00
// Name: LLNPGEGHIHC
// CmdId: 3017
2023-02-18 04:48:44 +03:00
message ForceDragAvatarNotify {
2023-02-28 04:12:44 +03:00
uint32 scene_time = 12;
uint32 entity_id = 10;
bool is_first_valid = 9;
2023-04-03 09:51:55 +03:00
uint64 delta_time_ms = 7; //NCJDFLPBAJK
2023-02-28 04:12:44 +03:00
MotionInfo motion_info = 2;
2023-04-03 09:51:55 +03:00
uint64 last_move_time_ms = 13; //HDMGAPIBOBA
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00