mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
19 lines
418 B
Protocol Buffer
19 lines
418 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "PlayProduct.proto";
|
|
import "ShopCardProduct.proto";
|
|
import "ShopConcertProduct.proto";
|
|
import "ShopMcoinProduct.proto";
|
|
|
|
// CmdId: 4109
|
|
// Name: AMMOLOMBCCH
|
|
message RechargeReq {
|
|
ShopConcertProduct concert_product = 9;
|
|
ShopMcoinProduct mcoin_product = 5;
|
|
PlayProduct play_product = 2;
|
|
ShopCardProduct card_product = 8;
|
|
}
|
|
|