mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-04 16:16:06 +03:00
22 lines
549 B
Protocol Buffer
22 lines
549 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "WidgetCameraInfo.proto";
|
|
import "WidgetCreateLocationInfo.proto";
|
|
import "WidgetCreatorInfo.proto";
|
|
import "WidgetThunderBirdFeatherInfo.proto";
|
|
|
|
// CmdId: 4251
|
|
// EnetChannelId: 0
|
|
// EnetIsReliable: true
|
|
// IsAllowClient: true
|
|
message QuickUseWidgetReq {
|
|
oneof param {
|
|
WidgetCreateLocationInfo location_info = 1800;
|
|
WidgetCameraInfo camera_info = 479;
|
|
WidgetCreatorInfo creator_info = 1204;
|
|
WidgetThunderBirdFeatherInfo thunder_bird_feather_info = 1198;
|
|
}
|
|
}
|