mirror of
https://github.com/zhenyan121/Cubed.git
synced 2026-08-08 17:57:02 +08:00
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.
8 lines
112 B
Protocol Buffer
8 lines
112 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "common/vector3.proto";
|
|
|
|
message PlayerPos {
|
|
string uuid = 1;
|
|
Vec3 pos = 2;
|
|
} |