11 lines
162 B
Protocol Buffer
11 lines
162 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package netwrk.v1;
|
|
option go_package = "./netwrk";
|
|
|
|
message LobbyMessage {
|
|
string player_id = 1;
|
|
string type = 2;
|
|
string content = 3;
|
|
}
|