Grasscutter/proto/QuickUseWidgetReq.proto

22 lines
549 B
Protocol Buffer
Raw Normal View History

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;
}
}