13 lines
218 B
Protocol Buffer
13 lines
218 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package MMPro.micromsg;
|
|
|
|
|
|
message GamePropsInfo {
|
|
required uint32 _PropsId = 1;
|
|
optional string _IconUrl = 2;
|
|
optional string _Name = 3;
|
|
optional string _Desc = 4;
|
|
required uint32 _Type = 5;
|
|
}
|