13 lines
282 B
Protocol Buffer
13 lines
282 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "WidgetCreatorOpType.proto";
|
|
import "WidgetCreateLocationInfo.proto";
|
|
|
|
message WidgetCreatorInfo {
|
|
WidgetCreatorOpType op_type = 1;
|
|
uint32 entity_id = 2;
|
|
WidgetCreateLocationInfo location_info = 3;
|
|
}
|