more networking stuff

This commit is contained in:
Beric Bearnson
2024-08-09 08:48:12 -06:00
parent d426892e6a
commit f9c8464ecd
5 changed files with 224 additions and 53 deletions
+10
View File
@@ -0,0 +1,10 @@
syntax = "proto3";
package netwrk;
option go_package = "./netwrk";
message GameMessage {
string action = 1;
int32 value = 2;
}
+2 -3
View File
@@ -1,8 +1,7 @@
syntax = "proto3";
package main;
option go_package = "../internal/netwrk";
package netwrk.v1;
option go_package = "./netwrk";
message LobbyMessage {
string type = 1;