13 lines
249 B
Protocol Buffer
13 lines
249 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
|
||
|
|
||
|
import "JigsawPictureData.proto";
|
||
|
import "GearLevelData.proto";
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
message GearInfo {
|
||
|
repeated GearLevelData gearLevelDataList = 9;
|
||
|
JigsawPictureData jigsawPictureData = 13;
|
||
|
}
|