mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-09-19 03:56:10 +08:00
17 lines
351 B
Protocol Buffer
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;
|
|
}
|