2023-02-28 06:08:38 +03:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
|
|
import "WidgetCreateLocationInfo.proto";
|
|
|
|
import "WidgetCreatorOpType.proto";
|
|
|
|
|
2023-04-11 11:18:47 +03:00
|
|
|
// Name: LNBOOJAPOBI
|
2023-02-28 06:08:38 +03:00
|
|
|
message WidgetCreatorInfo {
|
2023-04-11 11:18:47 +03:00
|
|
|
WidgetCreateLocationInfo location_info = 12;
|
|
|
|
WidgetCreatorOpType op_type = 5;
|
|
|
|
uint32 entity_id = 8;
|
2023-02-28 06:08:38 +03:00
|
|
|
}
|
|
|
|
|