GC-Proto/proto/GearActivityDetailInfo.proto

14 lines
294 B
Protocol Buffer
Raw Normal View History

2023-02-28 04:12:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2023-04-11 06:14:48 +03:00
import "GearLevelData.proto";
import "JigsawPictureData.proto";
2023-02-28 04:12:44 +03:00
2023-04-11 06:14:48 +03:00
// Name: LPCPFOKALPP
2023-02-28 04:12:44 +03:00
message GearActivityDetailInfo {
2023-04-11 06:14:48 +03:00
JigsawPictureData jigsaw_picture_data = 8;
repeated GearLevelData gear_level_data_list = 3;
2023-02-28 04:12:44 +03:00
}