Update to latest proto definitions from SteamDatabase/Protobufs

From commit 085746bbf6b48d1b89b7a63e7876932793f4c08f
This commit is contained in:
TBK 2025-10-17 13:13:37 +02:00
commit 6d40b01547
No known key found for this signature in database
GPG key ID: 4F205025B48377EB
43 changed files with 14210 additions and 22031 deletions

View file

@ -0,0 +1,24 @@
import "networkbasetypes.proto";
enum EBasePredictionEvents {
BPE_StringCommand = 128;
BPE_Teleport = 130;
BPE_Diagnostic = 16384;
}
message CPredictionEvent_Teleport {
optional .CMsgVector origin = 1;
optional .CMsgQAngle angles = 2;
optional float drop_to_ground_range = 3;
}
message CPredictionEvent_StringCommand {
optional string command = 1;
}
message CPredictionEvent_Diagnostic {
optional uint32 id = 1;
optional uint32 requested_sync = 2;
optional uint32 requested_player_index = 3;
repeated uint32 execution_sync = 4;
}