mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-04 16:16:06 +03:00
19 lines
397 B
Protocol Buffer
19 lines
397 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "WidgetCreateLocationInfo.proto";
|
|
import "WidgetCreatorInfo.proto";
|
|
|
|
// CmdId: 4284
|
|
// EnetChannelId: 0
|
|
// EnetIsReliable: true
|
|
// IsAllowClient: true
|
|
message WidgetDoBagReq {
|
|
uint32 material_id = 15;
|
|
oneof op_info {
|
|
WidgetCreateLocationInfo location_info = 351;
|
|
WidgetCreatorInfo widget_creator_info = 46;
|
|
}
|
|
}
|