GC-Proto/proto/BuyGoodsRsp.proto

17 lines
300 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2024-05-30 10:23:06 +03:00
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
2024-05-30 10:23:06 +03:00
import "ShopGoods.proto";
2024-05-30 10:23:06 +03:00
// CmdId: 8
// Version: 4.6.0
// Obfs: ALLGKCIALEP
2022-11-06 15:30:21 +03:00
message BuyGoodsRsp {
2024-05-30 10:23:06 +03:00
repeated ShopGoods goods_list = 1;
int32 retcode = 4;
2023-08-17 14:18:58 +03:00
ShopGoods goods = 9;
2024-05-30 10:23:06 +03:00
uint32 buy_count = 12;
uint32 shop_type = 14;
2022-11-06 15:30:21 +03:00
}