14 lines
294 B
Protocol Buffer
14 lines
294 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "GearLevelData.proto";
|
|
import "JigsawPictureData.proto";
|
|
|
|
// Name: LPCPFOKALPP
|
|
message GearActivityDetailInfo {
|
|
JigsawPictureData jigsaw_picture_data = 8;
|
|
repeated GearLevelData gear_level_data_list = 3;
|
|
}
|
|
|