implement npc shop

This commit is contained in:
Kengxxiao
2022-04-27 18:51:48 +08:00
committed by Melledy
parent ca7c335c94
commit 842acabe5a
13 changed files with 514 additions and 13 deletions

11
proto/BuyGoodsReq.proto Normal file
View File

@@ -0,0 +1,11 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "ShopGoods.proto";
message BuyGoodsReq {
uint32 shopType = 1;
repeated ShopGoods goodsList = 2;
uint32 boughtNum = 3;
}