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.
25 lines
416 B
Protocol Buffer
25 lines
416 B
Protocol Buffer
package dota;
|
|
|
|
option cc_generic_services = false;
|
|
|
|
message NetMessageSplitscreenUserChanged {
|
|
optional uint32 slot = 1;
|
|
}
|
|
|
|
message NetMessageConnectionClosed {
|
|
optional uint32 reason = 1;
|
|
}
|
|
|
|
message NetMessageConnectionCrashed {
|
|
optional uint32 reason = 1;
|
|
}
|
|
|
|
message NetMessagePacketStart {
|
|
optional uint32 incoming_sequence = 1;
|
|
optional uint32 outgoing_acknowledged = 2;
|
|
}
|
|
|
|
message NetMessagePacketEnd {
|
|
}
|
|
|