sshpong/proto/game_messages.proto

16 lines
229 B
Protocol Buffer
Raw Normal View History

2024-08-09 08:48:12 -06:00
syntax = "proto3";
2024-08-26 10:02:05 -06:00
package pong;
2024-08-09 08:48:12 -06:00
2024-08-26 10:02:05 -06:00
option go_package = "./pong";
2024-08-09 08:48:12 -06:00
2024-08-26 10:02:05 -06:00
message ServerUpdateMessage {
string type = 1;
string value = 2;
}
message ClientUpdateRequest {
string type = 1;
string value = 2;
sint32 player = 3;
2024-08-09 08:48:12 -06:00
}