Files
arpack/benchmarks/proto/move.proto
T

21 lines
386 B
Protocol Buffer
Raw Normal View History

2026-03-23 12:52:30 +03:00
syntax = "proto3";
package benchproto;
option go_package = "github.com/edmand46/arpack/benchmarks/proto";
message Vector3 {
float x = 1;
float y = 2;
float z = 3;
}
message MoveMessage {
Vector3 position = 1;
repeated float velocity = 2;
repeated Vector3 waypoints = 3;
uint32 player_id = 4;
bool active = 5;
bool visible = 6;
bool ghost = 7;
string name = 8;
}