Files
Cubed/src/proto/common/chunk_pos.proto
zhenyan121 9d33b240c6 feat(world): add player-based chunk loading and UUID support
Restructure world generation to trigger chunk loading based on player
movement. Replace player name with UUID for identification. Implement
chunk request/response protocol. Improve thread management for gen
thread.
2026-06-24 14:51:48 +08:00

6 lines
74 B
Protocol Buffer

syntax = "proto3";
message ChunkPos {
int32 x = 1;
int32 z = 2;
}