GC-Proto/proto/RechargeReq.proto

19 lines
420 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2023-04-03 09:51:55 +03:00
import "ShopConcertProduct.proto";
import "ShopCardProduct.proto";
import "ShopMcoinProduct.proto";
2023-02-18 04:48:44 +03:00
import "PlayProduct.proto";
2023-02-28 04:12:44 +03:00
// Name: OAMGPILLNIL
// CmdId: 4148
2023-02-18 04:48:44 +03:00
message RechargeReq {
2023-04-03 09:51:55 +03:00
ShopCardProduct card_product = 5;
2023-02-28 04:12:44 +03:00
PlayProduct play_product = 10;
2023-04-03 09:51:55 +03:00
ShopMcoinProduct mcoin_product = 14;
ShopConcertProduct concert_product = 6;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00