This commit is contained in:
Martin Slachta
2026-07-18 14:31:15 +02:00
commit a04f0dc262
3343 changed files with 1140208 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
syntax = "proto3";
package mmo;
message PlayerInput {
float x = 1;
float y = 2;
float z = 3;
}
message PlayerMoveMessage {
int32 frame_idx = 1;
PlayerInput input = 2;
}