mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-04 16:16:06 +03:00
15 lines
265 B
Protocol Buffer
15 lines
265 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
// CmdId: 649
|
|
// EnetChannelId: 0
|
|
// EnetIsReliable: true
|
|
message UseItemRsp {
|
|
int32 retcode = 15;
|
|
uint64 guid = 8;
|
|
uint32 item_id = 11;
|
|
uint64 target_guid = 12;
|
|
uint32 option_idx = 13;
|
|
}
|