11 lines
165 B
Protocol Buffer
11 lines
165 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
|
||
|
package MMPro.micromsg;
|
||
|
|
||
|
|
||
|
message GameAnnouncementInfo {
|
||
|
required uint32 _Style = 1;
|
||
|
optional string _Title = 2;
|
||
|
optional string _Desc = 3;
|
||
|
}
|