diff --git a/protos/MapInfoProto.proto b/protos/MapInfoProto.proto index 247b9c7..3b2ebc2 100644 --- a/protos/MapInfoProto.proto +++ b/protos/MapInfoProto.proto @@ -60,3 +60,11 @@ import "CommonProto.proto"; // 事件进度,从0开始 -1表示该事件已完成 optional int32 eventSchedule = 3; } + + // 出地图 + message MapOutRequest{ + // 走过的格子 + repeated int32 cells = 1; + // 当前所在坐标 + optional int32 curXY = 2; + }