mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-26 00:19:24 +03:00
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;
|
||
|
}
|