Initial commit

This commit is contained in:
2024-10-10 10:15:52 +02:00
commit d035a9cff4
4 changed files with 117 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
syntax = "proto3";
package actions;
message Action {
enum ActionType {
MOVE = 0;
}
ActionType type = 1;
int32 x = 2;
int32 y = 3;
}