Files
Towards/modules/protocol/proto/WorldState.fbs
Martin Slachta a04f0dc262 initial
2026-07-18 14:31:15 +02:00

17 lines
173 B
Plaintext

struct Vec3 {
x: float;
y: float;
z: float;
}
table PlayerInfo {
id:int;
pos:Vec3;
}
table WorldState {
players:[PlayerInfo];
}
root_type WorldState;