mirror of
https://codeberg.org/steam-vent/proto-csgo.git
synced 2026-06-04 02:24:07 +02:00
Update to latest proto definitions from SteamDatabase/Protobufs
From commit 085746bbf6b48d1b89b7a63e7876932793f4c08f
This commit is contained in:
parent
b4633fa310
commit
6d40b01547
43 changed files with 14210 additions and 22031 deletions
24
protos/prediction_events.proto
Normal file
24
protos/prediction_events.proto
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue