proto-csgo/protos/valveextensions.proto
TBK 6d40b01547
Update to latest proto definitions from SteamDatabase/Protobufs
From commit 085746bbf6b48d1b89b7a63e7876932793f4c08f
2025-10-18 19:00:12 +02:00

26 lines
1,004 B
Protocol Buffer

import "google/protobuf/descriptor.proto";
extend .google.protobuf.FieldOptions {
optional bool valve_map_field = 61000 [default = false];
optional bool valve_map_key = 61001 [default = false];
optional int32 diff_encode_field = 61002 [default = 0];
optional bool delta_ignore = 61003 [default = false];
optional uint32 steamml_max_entries = 61004 [default = 0];
optional bool steamml_is_timestamp = 61005 [default = false];
optional uint32 steamlearn_count = 61006 [default = 0];
optional .EProtoDebugVisiblity debugprint_visibility = 61007 [default = k_EProtoDebugVisibility_Always];
}
extend .google.protobuf.EnumValueOptions {
optional string schema_friendly_name = 1000;
optional string schema_description = 1001;
optional bool schema_suppress_enumerator = 1002;
}
enum EProtoDebugVisiblity {
k_EProtoDebugVisibility_Always = 0;
k_EProtoDebugVisibility_Server = 70;
k_EProtoDebugVisibility_ValveServer = 80;
k_EProtoDebugVisibility_GC = 90;
k_EProtoDebugVisibility_Never = 100;
}