mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-04 16:16:06 +03:00
17 lines
326 B
Protocol Buffer
17 lines
326 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "WidgetSlotOp.proto";
|
|
import "WidgetSlotTag.proto";
|
|
|
|
// CmdId: 4260
|
|
// EnetChannelId: 0
|
|
// EnetIsReliable: true
|
|
message SetWidgetSlotRsp {
|
|
int32 retcode = 7;
|
|
WidgetSlotOp op = 14;
|
|
repeated WidgetSlotTag tag_list = 4;
|
|
uint32 material_id = 9;
|
|
}
|