1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-19 03:56:10 +08:00
Files
hl2sdk/game/shared/prediction_events.proto
Nicholas Hastings fc3909c6b6 Add/update protos
2025-02-15 13:05:56 -05:00

17 lines
351 B
Protocol Buffer

import "networkbasetypes.proto";
enum EBasePredictionEvents {
BPE_StringCommand = 128;
BPE_Teleport = 130;
}
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;
}