Files
Towards/modules/protocol/proto/PlayerMove.proto
T

16 lines
193 B
Protocol Buffer
Raw Normal View History

2026-07-18 14:31:15 +02:00
syntax = "proto3";
package mmo;
message PlayerInput {
float x = 1;
float y = 2;
float z = 3;
}
message PlayerMoveMessage {
int32 frame_idx = 1;
PlayerInput input = 2;
}