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.
34 lines
764 B
Protocol Buffer
34 lines
764 B
Protocol Buffer
8 years ago
|
package dota;
|
||
|
|
||
|
import "google/protobuf/descriptor.proto";
|
||
|
|
||
|
option optimize_for = SPEED;
|
||
|
option cc_generic_services = false;
|
||
|
|
||
|
extend google.protobuf.FieldOptions {
|
||
|
optional string description = 50000;
|
||
|
}
|
||
|
|
||
|
extend google.protobuf.ServiceOptions {
|
||
|
optional string service_description = 50000;
|
||
|
optional EProtoExecutionSite service_execution_site = 50008 [default = k_EProtoExecutionSiteUnknown];
|
||
|
}
|
||
|
|
||
|
extend google.protobuf.MethodOptions {
|
||
|
optional string method_description = 50000;
|
||
|
}
|
||
|
|
||
|
extend google.protobuf.EnumOptions {
|
||
|
optional string enum_description = 50000;
|
||
|
}
|
||
|
|
||
|
extend google.protobuf.EnumValueOptions {
|
||
|
optional string enum_value_description = 50000;
|
||
|
}
|
||
|
|
||
|
enum EProtoExecutionSite {
|
||
|
k_EProtoExecutionSiteUnknown = 0;
|
||
|
k_EProtoExecutionSiteSteamClient = 3;
|
||
|
}
|
||
|
|