You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
640 B
Protocol Buffer
31 lines
640 B
Protocol Buffer
package dota;
|
|
|
|
option optimize_for = SPEED;
|
|
option cc_generic_services = false;
|
|
|
|
enum EBaseClientMessages {
|
|
CM_CustomGameEvent = 280;
|
|
CM_ClientUIEvent = 282;
|
|
CM_MAX_BASE = 300;
|
|
}
|
|
|
|
enum EClientUIEvent {
|
|
EClientUIEvent_Invalid = 0;
|
|
EClientUIEvent_DialogFinished = 1;
|
|
EClientUIEvent_FireOutput = 2;
|
|
}
|
|
|
|
message CClientMsg_CustomGameEvent {
|
|
optional string event_name = 1;
|
|
optional bytes data = 2;
|
|
}
|
|
|
|
message CClientMsg_ClientUIEvent {
|
|
optional EClientUIEvent event = 1 [default = EClientUIEvent_Invalid];
|
|
optional uint32 ent_ehandle = 2;
|
|
optional uint32 client_ehandle = 3;
|
|
optional string data1 = 4;
|
|
optional string data2 = 5;
|
|
}
|
|
|