20 lines
307 B
Protocol Buffer
20 lines
307 B
Protocol Buffer
package metatable;
|
|
|
|
message MFPair
|
|
{
|
|
optional int32 key = 1; //key
|
|
optional int32 value = 2; //val
|
|
}
|
|
|
|
message Text
|
|
{
|
|
optional string textid = 1;
|
|
optional string text = 2;
|
|
}
|
|
|
|
message Creator
|
|
{
|
|
optional string adjective = 1;
|
|
optional string surname = 2;
|
|
optional string name = 3;
|
|
} |