sshpong/proto/lobby_messages.proto

11 lines
162 B
Protocol Buffer
Raw Permalink Normal View History

2024-08-05 18:00:41 -06:00
syntax = "proto3";
2024-08-09 08:48:12 -06:00
package netwrk.v1;
option go_package = "./netwrk";
2024-08-05 18:00:41 -06:00
message LobbyMessage {
2024-08-14 17:26:51 -06:00
string player_id = 1;
string type = 2;
string content = 3;
2024-08-05 18:00:41 -06:00
}