13 lines
249 B
Protocol Buffer
13 lines
249 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package MMPro.micromsg;
|
|
|
|
import "BaseResponse.proto";
|
|
import "GamePropsInfo.proto";
|
|
|
|
message GameResourceResp {
|
|
required BaseResponse _BaseResponse = 1;
|
|
required int32 _PropsCount = 2;
|
|
repeated GamePropsInfo _PropsList = 3;
|
|
}
|