mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-26 08:30:22 +03:00
15 lines
238 B
Protocol Buffer
15 lines
238 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ShopGoods.proto";
|
|
|
|
// Name: KNMKFMAAMHH
|
|
// CmdId: 754
|
|
message BuyGoodsReq {
|
|
uint32 buy_count = 14;
|
|
ShopGoods goods = 5;
|
|
uint32 shop_type = 11;
|
|
}
|
|
|