mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-27 08:09:25 +03:00
12 lines
265 B
Protocol Buffer
12 lines
265 B
Protocol Buffer
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
import "ItemParam.proto";
|
||
|
|
||
|
message ResinCard {
|
||
|
repeated ItemParam baseItemList = 1;
|
||
|
repeated ItemParam perDayItemList = 2;
|
||
|
}
|