Files
Cubed/src/proto/player/player.proto
zhenyan121 2953e8a233 feat(protocol): add packet serialization and login handling
Introduce packet header and ID mapping for protobuf messages.
Refactor session and server_world to use new packet wrapper.
Fix missing semicolons in proto files.
2026-06-23 21:58:35 +08:00

8 lines
112 B
Protocol Buffer

syntax = "proto3";
import "common/vector3.proto";
message PlayerPos {
string uuid = 1;
Vec3 pos = 2;
}