feat: added benchmarks

This commit is contained in:
2026-03-23 12:52:30 +03:00
parent f490b7383b
commit fe70aa5404
55 changed files with 6558 additions and 1 deletions
+20
View File
@@ -0,0 +1,20 @@
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;
}