mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-26 08:30:22 +03:00
16 lines
256 B
Protocol Buffer
16 lines
256 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "Vector.proto";
|
|
|
|
// Name: MDMPEIGLJMM
|
|
// CmdId: 1704
|
|
message ChangeAvatarReq {
|
|
Vector move_pos = 5;
|
|
uint64 guid = 9;
|
|
bool is_move = 15;
|
|
uint32 skill_id = 13;
|
|
}
|
|
|