8 lines
106 B
Protocol Buffer
8 lines
106 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package Gazillion;
|
|
|
|
message GetPlayerInfoByName {
|
|
required string playerName = 1;
|
|
}
|
|
|