16 lines
229 B
Protocol Buffer
16 lines
229 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package pong;
|
|
|
|
option go_package = "./pong";
|
|
|
|
message ServerUpdateMessage {
|
|
string type = 1;
|
|
string value = 2;
|
|
}
|
|
message ClientUpdateRequest {
|
|
string type = 1;
|
|
string value = 2;
|
|
sint32 player = 3;
|
|
}
|