From 4bf1fbc2d1699de13bd68714f2a2dade5f4a0b9b Mon Sep 17 00:00:00 2001 From: gaojie Date: Fri, 19 Apr 2019 18:20:47 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=86=E8=A7=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/PlayerInfoProto.proto | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index ba4c3a5..1425a3f 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -47,8 +47,10 @@ import "CommonProto.proto"; } message UseAndPriceItemRequest{ - optional int32 type = 1; //0:使用 1:出售 - optional Item item = 2; + optional int32 type = 1; //0:使用 1:分解物品 2:分解装备 + optional int32 itemId = 2; + repeated Item items = 3; + repeated string equipIds = 4; } message UseAndPriceItemResponse{ optional Drop drop = 1;