diff --git a/generator/datamap_generator/main.py b/generator/datamap_generator/main.py deleted file mode 100644 index 10392ea0c..000000000 --- a/generator/datamap_generator/main.py +++ /dev/null @@ -1,145 +0,0 @@ -import os -import json -from pathlib import Path -import shutil - -SCRIPT_DIR = os.path.pardir -DEFAULT_DATAMAP_PATH = os.path.join(SCRIPT_DIR, "datamaps.json") -FOLDER = Path("../../managed/src/SwiftlyS2.Generated/Datamaps") - - -MANAGER_TEMPLATE = """using SwiftlyS2.Shared.SchemaDefinitions; -using SwiftlyS2.Core.Hooks; - -namespace SwiftlyS2.Core.Datamaps; - -internal partial class DatamapFunctionManager -{ - public HookManager HookManager { get; } - -$fields$ - - public DatamapFunctionManager(HookManager hookManager) - { - HookManager = hookManager; -$constructors$ - } - -} -""" - - -MANAGER_FUNCTION_FIELDS_TEMPLATE = """ public BaseDatamapFunction<$className$, DHook$functionName$> $functionName$ { get; init; } -""" - -MANAGER_FUNCTION_CONSTRUCTOR_TEMPLATE = """ $functionName$ = new(this, $functionHash$);""" - -SERVICE_TEMPLATE = """using SwiftlyS2.Shared.Datamaps; -using SwiftlyS2.Shared.SchemaDefinitions; - -namespace SwiftlyS2.Core.Datamaps; - -internal partial class DatamapFunctionService : IDatamapFunctionService -{ - $functions$ -} -""" - -SERVICE_FUNCTION_TEMPLATE = """ - public IDatamapFunctionOperator<$className$, DHook$functionName$> $functionName$ { get; } = manager.$functionName$.Get(ctx.Name, profiler); - - IDatamapFunctionOperator<$className$, IDHook$functionName$> IDatamapFunctionService.$functionName$ => $functionName$; -""" - -SERVICE_INTERFACE_TEMPLATE = """using SwiftlyS2.Shared.Datamaps; -using SwiftlyS2.Shared.SchemaDefinitions; - -namespace SwiftlyS2.Shared.Datamaps; - -public partial interface IDatamapFunctionService -{ -$functions$ -} -""" - -SERVICE_INTERFACE_FUNCTION_TEMPLATE = """ - public IDatamapFunctionOperator<$className$, IDHook$functionName$> $functionName$ { get; } -""" - -HOOK_CONTEXT_TEMPLATE = """using SwiftlyS2.Shared.Datamaps; -using SwiftlyS2.Shared.SchemaDefinitions; - -namespace SwiftlyS2.Core.Datamaps; - -internal class DHook$functionName$ : BaseDatamapFunctionHookContext<$className$>, IDHook$functionName$ -{ -} -""" - -HOOK_CONTEXT_INTERFACE_TEMPLATE = """using SwiftlyS2.Shared.SchemaDefinitions; - -namespace SwiftlyS2.Shared.Datamaps; - -public interface IDHook$functionName$ : IDatamapFunctionHookContext<$className$> -{ -} -""" - -def format_template(template, **params): - for key, value in params.items(): - template = template.replace(f"${key}$", str(value)) - return template - -def main(): - if FOLDER.exists(): - shutil.rmtree(str(FOLDER)) - os.makedirs(FOLDER) - os.makedirs(FOLDER / "Interfaces") - os.makedirs(FOLDER / "Classes") - - f_service_interface = open(FOLDER / "Interfaces" / "IDatamapFunctionService.cs", "w", encoding="utf-8") - f_manager = open(FOLDER / "Classes" / "DatamapFunctionManager.cs", "w", encoding="utf-8") - f_service = open(FOLDER / "Classes" / "DatamapFunctionService.cs", "w", encoding="utf-8") - - with open(DEFAULT_DATAMAP_PATH, "r", encoding="utf-8") as f: - data = json.load(f) - - - datamaps = data.get("datamaps", []) - - manager_functions = [] - manager_constructors = [] - service_functions = [] - service_interface_functions = [] - - for clazz in datamaps: - class_name = clazz['class_name'] - for field in clazz["fields"]: - if field['isFunction']: - name = field['fieldName'] - name = name.replace("::", "_") - hash = field['functionHash'] - manager_functions.append(format_template(MANAGER_FUNCTION_FIELDS_TEMPLATE, className=class_name, functionName=name, functionHash=hash)) - manager_constructors.append(format_template(MANAGER_FUNCTION_CONSTRUCTOR_TEMPLATE, functionName=name, functionHash=hash)) - service_functions.append(format_template(SERVICE_FUNCTION_TEMPLATE, className=class_name, functionName=name)) - service_interface_functions.append(format_template(SERVICE_INTERFACE_FUNCTION_TEMPLATE, className=class_name, functionName=name)) - hook_context_template = format_template(HOOK_CONTEXT_TEMPLATE, className=class_name, functionName=name) - hook_context_interface_template = format_template(HOOK_CONTEXT_INTERFACE_TEMPLATE, className=class_name, functionName=name) - - f_hook_context = open(FOLDER / "Classes" / f"DHook{name}.cs", "w", encoding="utf-8") - f_hook_context_interface = open(FOLDER / "Interfaces" / f"IDHook{name}.cs", "w", encoding="utf-8") - f_hook_context.write(hook_context_template) - f_hook_context_interface.write(hook_context_interface_template) - f_hook_context.close() - f_hook_context_interface.close() - - f_manager.write(format_template(MANAGER_TEMPLATE, fields="\n".join(manager_functions), constructors="\n".join(manager_constructors))) - f_service.write(format_template(SERVICE_TEMPLATE, functions="\n".join(service_functions))) - f_service_interface.write(format_template(SERVICE_INTERFACE_TEMPLATE, functions="\n".join(service_interface_functions))) - - f_manager.close() - f_service.close() - f_service_interface.close() - -if __name__ == "__main__": - main() \ No newline at end of file diff --git a/generator/protobuf_generator/generate.py b/generator/protobuf_generator/generate.py deleted file mode 100644 index d8e7ffcef..000000000 --- a/generator/protobuf_generator/generate.py +++ /dev/null @@ -1,339 +0,0 @@ -import os -from pathlib import Path -import sys -from proto_schema_parser import ast, Parser -from typing import List - -ROOT = Path(__file__).parent -INPUT_DIR = ROOT.parent.parent / "protobufs" / "cs2" -OUT_INTERFACES = ROOT.parent.parent / "managed" / "src" / "SwiftlyS2.Generated" / "Protobufs" / "Interfaces" -OUT_CLASSES = ROOT.parent.parent / "managed" / "src" / "SwiftlyS2.Generated" / "Protobufs" / "Classes" -OUT_ENUMS = ROOT.parent.parent / "managed" / "src" / "SwiftlyS2.Generated" / "Protobufs" / "Enums" - -os.makedirs(OUT_INTERFACES, exist_ok=True) -os.makedirs(OUT_CLASSES, exist_ok=True) -os.makedirs(OUT_ENUMS, exist_ok=True) - -NETMESSAGE_ENUMS = { - "EBaseUserMessages": ("UM_", "CUserMessage"), - "ETEProtobufIds": ("TE_", "CMsgTE"), - "ECsgoGameEvents": ("GE_", "CMsgTE"), - "ECstrike15UserMessages": ("CS_UM_", "CCSUsrMsg_"), - "EBaseGameEvents": ("GE_", "CMsg"), - "CLC_Messages": ("clc_", "CCLCMsg_"), - "SVC_Messages": ("svc_", "CSVCMsg_"), - "NET_Messages": ("net_", "CNETMsg_"), -} - -BASE_TYPES = { - "bool": ("Bool", "bool"), - "int32": ("Int32", "int"), - "sint32": ("Int32", "int"), - "fixed32": ("UInt32", "uint"), - "int64": ("Int64", "long"), - "fixed64": ("UInt64", "ulong"), - "sint64": ("Int64", "long"), - "uint32": ("UInt32", "uint"), - "uint64": ("UInt64", "ulong"), - "float": ("Float", "float"), - "double": ("Double", "double"), - "string": ("String", "string"), - "bytes": ("Bytes", "byte[]"), -} - -MANAGED_NESTED_TYPES = { - "CMsgVector": "Vector", - "CMsgQAngle": "QAngle", - "CMsgVector2D": "Vector2D", - "CMsgRGBA": "Color", -} - -FIELD_TEMPLATE = """ - public $CSTYPE$ $CSNAME$ - { get => Accessor.Get$TYPE$("$NAME$"); set => Accessor.Set$TYPE$("$NAME$", value); } -""" - -ENUM_FIELD_TEMPLATE = """ - public $CSTYPE$ $CSNAME$ - { get => ($CSTYPE$)Accessor.GetInt32("$NAME$"); set => Accessor.SetInt32("$NAME$", (int)value); } -""" - -NESTED_FIELD_TEMPLATE = """ - public $TYPE$ $CSNAME$ - { get => new $TYPE$Impl(NativeNetMessages.GetNestedMessage(Address, "$NAME$"), false); } -""" - -REPEATED_FIELD_TEMPLATE = """ - public $CSTYPE$ $CSNAME$ - { get => new $CSTYPE_IMPL$(Accessor, "$NAME$"); } -""" - -INTERFACE_FIELD_TEMPLATE = """ - public $CSTYPE$ $CSNAME$ { get; set; } -""" - -INTERFACE_READONLY_FIELD_TEMPLATE = """ - public $CSTYPE$ $CSNAME$ { get; } -""" - -IMPL_CLASS_TEMPLATE = """ -using SwiftlyS2.Core.Natives; -using SwiftlyS2.Core.NetMessages; -using SwiftlyS2.Shared.Natives; -using SwiftlyS2.Shared.NetMessages; -using SwiftlyS2.Shared.ProtobufDefinitions; - -namespace SwiftlyS2.Core.ProtobufDefinitions; - -internal class $NAME$ : $BASE_CLASS$<$INTERFACE$>, $INTERFACE$ -{ - public $NAME$(nint handle, bool isManuallyAllocated): base(handle) - { - } - -$FIELDS$ -} -""" - -NETMESSAGE_IMPL_CLASS_TEMPLATE = """ -using SwiftlyS2.Core.Natives; -using SwiftlyS2.Core.NetMessages; -using SwiftlyS2.Shared.Natives; -using SwiftlyS2.Shared.NetMessages; -using SwiftlyS2.Shared.ProtobufDefinitions; - -namespace SwiftlyS2.Core.ProtobufDefinitions; - -internal class $NAME$ : $BASE_CLASS$<$INTERFACE$>, $INTERFACE$ -{ - public $NAME$(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - -$FIELDS$ -} -""" - -NETMESSAGE_INTERFACE_TEMPLATE = """ -using SwiftlyS2.Core.ProtobufDefinitions; -using SwiftlyS2.Shared.Natives; -using SwiftlyS2.Shared.NetMessages; - -namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; - -public interface $NAME$ : ITypedProtobuf<$NAME$>, INetMessage<$NAME$>, IDisposable -{ - static int INetMessage<$NAME$>.MessageId => $MESSAGE_ID$; - - static string INetMessage<$NAME$>.MessageName => "$MESSAGE_NAME$"; - - static $NAME$ ITypedProtobuf<$NAME$>.Wrap(nint handle, bool isManuallyAllocated) => new $NAME$Impl(handle, isManuallyAllocated); - -$FIELDS$ -} -""" - -NONNETMESSAGE_INTERFACE_TEMPLATE = """ -using SwiftlyS2.Core.ProtobufDefinitions; -using SwiftlyS2.Shared.Natives; -using SwiftlyS2.Shared.NetMessages; - -namespace SwiftlyS2.Shared.ProtobufDefinitions; - -public interface $NAME$ : ITypedProtobuf<$NAME$> -{ - static $NAME$ ITypedProtobuf<$NAME$>.Wrap(nint handle, bool isManuallyAllocated) => new $NAME$Impl(handle, isManuallyAllocated); - -$FIELDS$ -} -""" - -ENUM_TEMPLATE = """ -namespace SwiftlyS2.Shared.ProtobufDefinitions; - -public enum $NAME$ -{ -$FIELDS$ -} -""" - -all_enum_names = [] - -def format_template(template: str, params: dict): - for key, value in params.items(): - template = template.replace(key, value) - return template - -def to_camel_case(name: str): - return "".join(word.capitalize() for word in name.split("_")) - -def get_field_template(field: ast.Field): - - global all_enum_names - - field.type = field.type.replace(".", "_") - if field.type.startswith("_"): - field.type = "." + field.type[1:] - - params = { - "$CSNAME$": to_camel_case(field.name), - "$NAME$": field.name, - } - - if field.type.removeprefix(".") in all_enum_names: - params["$CSTYPE$"] = field.type.removeprefix(".") - if field.cardinality == ast.FieldCardinality.REPEATED: - print("WTF") - print(field) - exit(0) - - return format_template(ENUM_FIELD_TEMPLATE, params), format_template(INTERFACE_FIELD_TEMPLATE, params) - - if field.type in BASE_TYPES: - - params["$TYPE$"] = BASE_TYPES[field.type][0] - params["$CSTYPE$"] = BASE_TYPES[field.type][1] - if field.cardinality == ast.FieldCardinality.REPEATED: - params["$CSTYPE_IMPL$"] = "ProtobufRepeatedFieldValueType<" + params["$CSTYPE$"] + ">" - params["$CSTYPE$"] = "I" + params["$CSTYPE_IMPL$"] - return format_template(REPEATED_FIELD_TEMPLATE, params), format_template(INTERFACE_READONLY_FIELD_TEMPLATE, params) - - return format_template(FIELD_TEMPLATE, params), format_template(INTERFACE_FIELD_TEMPLATE, params) - - if field.type.removeprefix(".") in MANAGED_NESTED_TYPES: - type = field.type.removeprefix(".") - params["$TYPE$"] = MANAGED_NESTED_TYPES[type] - params["$CSTYPE$"] = MANAGED_NESTED_TYPES[type] - - if field.cardinality == ast.FieldCardinality.REPEATED: - params["$CSTYPE_IMPL$"] = "ProtobufRepeatedFieldValueType<" + params["$CSTYPE$"] + ">" - params["$CSTYPE$"] = "I" + params["$CSTYPE_IMPL$"] - return format_template(REPEATED_FIELD_TEMPLATE, params), format_template(INTERFACE_READONLY_FIELD_TEMPLATE, params) - - return format_template(FIELD_TEMPLATE, params), format_template(INTERFACE_FIELD_TEMPLATE, params) - - params["$TYPE$"] = field.type.removeprefix(".") - params["$CSTYPE$"] = field.type.removeprefix(".") - - if field.cardinality == ast.FieldCardinality.REPEATED: - params["$CSTYPE_IMPL$"] = "ProtobufRepeatedFieldSubMessageType<" + params["$CSTYPE$"] + ">" - params["$CSTYPE$"] = "I" + params["$CSTYPE_IMPL$"] - return format_template(REPEATED_FIELD_TEMPLATE, params), format_template(INTERFACE_READONLY_FIELD_TEMPLATE, params) - - return format_template(NESTED_FIELD_TEMPLATE, params), format_template(INTERFACE_READONLY_FIELD_TEMPLATE, params) - -def write_netmessage(proto_message: ast.Message, net_message_id: int = -1, prefix=""): - fields = [] - interface_fields = [] - - for field in proto_message.elements: - - if isinstance(field, ast.Field): - impl_field_template, interface_field_template = get_field_template(field) - fields.append(impl_field_template) - interface_fields.append(interface_field_template) - - elif isinstance(field, ast.Message): - write_netmessage(field, -1, prefix + proto_message.name + "_") - - params = { - "$NAME$": prefix + proto_message.name + "Impl", - "$BASE_CLASS$": "NetMessage" if net_message_id != -1 else "TypedProtobuf", - "$INTERFACE$": prefix + proto_message.name, - "$FIELDS$": "\n".join(fields), - } - with open(OUT_CLASSES / (prefix+proto_message.name+"Impl.cs"), "w") as f: - if net_message_id != -1: - f.write(format_template(NETMESSAGE_IMPL_CLASS_TEMPLATE, params)) - else: - f.write(format_template(IMPL_CLASS_TEMPLATE, params)) - - interface_params = { - "$NAME$": prefix + proto_message.name, - "$MESSAGE_ID$": str(net_message_id), - "$MESSAGE_NAME$": prefix + proto_message.name, - "$FIELDS$": "\n".join(interface_fields), - } - if net_message_id != -1: - with open(OUT_INTERFACES / (prefix+proto_message.name+".cs"), "w") as f: - f.write(format_template(NETMESSAGE_INTERFACE_TEMPLATE, interface_params)) - else: - with open(OUT_INTERFACES / (prefix+proto_message.name+".cs"), "w") as f: - f.write(format_template(NONNETMESSAGE_INTERFACE_TEMPLATE, interface_params)) - -def write_enum(enum: ast.Enum, prefix=""): - enum_params = { - "$NAME$": prefix + enum.name, - "$FIELDS$": "\n".join([f" {field.name} = {field.number}," if isinstance(field, ast.EnumValue) else "" for field in enum.elements]), - } - with open(OUT_ENUMS / (prefix + enum.name+".cs"), "w") as f: - f.write(format_template(ENUM_TEMPLATE, enum_params)) - - - -def process_enums(root, prefix=""): - if isinstance(root, ast.File): - for element in root.file_elements: - process_enums(element) - elif isinstance(root, ast.Message): - for element in root.elements: - process_enums(element, prefix + root.name + "_") - elif isinstance(root, ast.Enum): - all_enum_names.append(prefix + root.name) - write_enum(root, prefix) - -def read_protos(): - global all_enum_names - - parser = Parser() - - for file in os.listdir(INPUT_DIR): - with open(os.path.join(INPUT_DIR, file), "r") as f: - result = parser.parse(f.read()) - process_enums(result) - - all_enum_names = [enum.replace(".", "_") for enum in all_enum_names] - - for file in os.listdir(INPUT_DIR): - if True: - with open(os.path.join(INPUT_DIR, file), "r") as f: - result = parser.parse(f.read()) - - messages: List[ast.Message] = [] - handled_messages = [] - enums: List[ast.Enum] = [] - for element in result.file_elements: - if isinstance(element, ast.Message): - messages.append(element) - if isinstance(element, ast.Enum): - enums.append(element) - - for enum in enums: - if enum.name not in NETMESSAGE_ENUMS: - continue - handled_enum_fields = [] - enum_prefix, message_prefix = NETMESSAGE_ENUMS[enum.name] - # print(enum.elements) - for enum_field in enum.elements: - name = enum_field.name.removeprefix(enum_prefix) - if enum.name == "ETEProtobufIds" or enum.name == "ECsgoGameEvents": - name = name.removesuffix("Id") - for message in messages: - if message_prefix in message.name and name in message.name: - print(f"{message.name} = {enum_field.number};") - handled_enum_fields.append(enum_field.name) - handled_messages.append(message) - write_netmessage(message, enum_field.number) - - for enum_field in enum.elements: - if enum_field.name not in handled_enum_fields: - print(f"WARNING: MISSING {enum.name}.{enum_field.name}") - - for message in messages: - if message in handled_messages: - continue - - write_netmessage(message, -1) - -read_protos() \ No newline at end of file diff --git a/generator/schema_generator/sdk.json b/generator/schema_generator/sdk.json index 768c85f74..d5aa2055e 100644 --- a/generator/schema_generator/sdk.json +++ b/generator/schema_generator/sdk.json @@ -5382,7 +5382,7 @@ "name": "m_numRoundsSurvivedStreak", "name_hash": 2507309915761382946, "networked": false, - "offset": 184, + "offset": 240, "size": 4, "type": "int32" }, @@ -5392,7 +5392,7 @@ "name": "m_maxNumRoundsSurvivedStreak", "name_hash": 2507309914512019198, "networked": false, - "offset": 188, + "offset": 244, "size": 4, "type": "int32" }, @@ -5402,7 +5402,7 @@ "name": "m_numRoundsSurvivedTotal", "name_hash": 2507309914753731498, "networked": false, - "offset": 192, + "offset": 248, "size": 4, "type": "int32" }, @@ -5412,7 +5412,7 @@ "name": "m_iRoundsWonWithoutPurchase", "name_hash": 2507309916394354374, "networked": false, - "offset": 196, + "offset": 252, "size": 4, "type": "int32" }, @@ -5422,7 +5422,7 @@ "name": "m_iRoundsWonWithoutPurchaseTotal", "name_hash": 2507309914486592456, "networked": false, - "offset": 200, + "offset": 256, "size": 4, "type": "int32" }, @@ -5432,7 +5432,7 @@ "name": "m_numFirstKills", "name_hash": 2507309914842687180, "networked": false, - "offset": 204, + "offset": 260, "size": 4, "type": "int32" }, @@ -5442,7 +5442,7 @@ "name": "m_numClutchKills", "name_hash": 2507309915771339923, "networked": false, - "offset": 208, + "offset": 264, "size": 4, "type": "int32" }, @@ -5452,7 +5452,7 @@ "name": "m_numPistolKills", "name_hash": 2507309913627955389, "networked": false, - "offset": 212, + "offset": 268, "size": 4, "type": "int32" }, @@ -5462,7 +5462,7 @@ "name": "m_numSniperKills", "name_hash": 2507309917709684257, "networked": false, - "offset": 216, + "offset": 272, "size": 4, "type": "int32" }, @@ -5472,7 +5472,7 @@ "name": "m_iNumSuicides", "name_hash": 2507309914674123961, "networked": false, - "offset": 220, + "offset": 276, "size": 4, "type": "int32" }, @@ -5482,7 +5482,7 @@ "name": "m_iNumTeamKills", "name_hash": 2507309913554439598, "networked": false, - "offset": 224, + "offset": 280, "size": 4, "type": "int32" }, @@ -5492,7 +5492,7 @@ "name": "m_flTeamDamage", "name_hash": 2507309914306972699, "networked": false, - "offset": 228, + "offset": 284, "size": 4, "type": "float32" } @@ -5503,7 +5503,7 @@ "name": "CSAdditionalMatchStats_t", "name_hash": 583778581, "project": "server", - "size": 232 + "size": 288 }, { "alignment": 8, @@ -7220,7 +7220,7 @@ "name": "CSAdditionalPerRoundStats_t", "name_hash": 1906073977, "project": "server", - "size": 184 + "size": 240 }, { "alignment": 4, @@ -109182,9 +109182,9 @@ "offset": 3920, "size": 24, "template": [ - "SpawnPoint" + "CHandle< SpawnPoint >" ], - "templated": "CUtlVector< SpawnPoint* >", + "templated": "CUtlVector< CHandle< SpawnPoint > >", "type": "CUtlVector" }, { @@ -109196,9 +109196,9 @@ "offset": 3944, "size": 24, "template": [ - "SpawnPoint" + "CHandle< SpawnPoint >" ], - "templated": "CUtlVector< SpawnPoint* >", + "templated": "CUtlVector< CHandle< SpawnPoint > >", "type": "CUtlVector" }, { @@ -109260,9 +109260,9 @@ "offset": 3992, "size": 24, "template": [ - "SpawnPoint" + "CHandle< SpawnPoint >" ], - "templated": "CUtlVector< SpawnPoint* >", + "templated": "CUtlVector< CHandle< SpawnPoint > >", "type": "CUtlVector" }, { @@ -109274,9 +109274,9 @@ "offset": 4016, "size": 24, "template": [ - "SpawnPoint" + "CHandle< SpawnPoint >" ], - "templated": "CUtlVector< SpawnPoint* >", + "templated": "CUtlVector< CHandle< SpawnPoint > >", "type": "CUtlVector" }, { @@ -110895,7 +110895,7 @@ "name": "CFireCrackerBlast", "name_hash": 1729089175, "project": "server", - "size": 5056 + "size": 5048 }, { "alignment": 255, @@ -112969,7 +112969,7 @@ "name": "m_firePositions", "name_hash": 12385185712093863943, "networked": true, - "offset": 1848, + "offset": 1840, "size": 768, "type": "Vector" }, @@ -112982,7 +112982,7 @@ "name": "m_fireParentPositions", "name_hash": 12385185714357876183, "networked": true, - "offset": 2616, + "offset": 2608, "size": 768, "type": "Vector" }, @@ -112995,7 +112995,7 @@ "name": "m_bFireIsBurning", "name_hash": 12385185715435966572, "networked": true, - "offset": 3384, + "offset": 3376, "size": 64, "type": "bool" }, @@ -113008,7 +113008,7 @@ "name": "m_BurnNormal", "name_hash": 12385185712522552283, "networked": true, - "offset": 3448, + "offset": 3440, "size": 768, "type": "Vector" }, @@ -113018,7 +113018,7 @@ "name": "m_fireCount", "name_hash": 12385185713762157216, "networked": true, - "offset": 4216, + "offset": 4208, "size": 4, "type": "int32" }, @@ -113028,7 +113028,7 @@ "name": "m_nInfernoType", "name_hash": 12385185711643830456, "networked": true, - "offset": 4220, + "offset": 4212, "size": 4, "type": "int32" }, @@ -113038,7 +113038,7 @@ "name": "m_nFireEffectTickBegin", "name_hash": 12385185713894414322, "networked": true, - "offset": 4224, + "offset": 4216, "size": 4, "type": "int32" }, @@ -113048,7 +113048,7 @@ "name": "m_nFireLifetime", "name_hash": 12385185714581753470, "networked": true, - "offset": 4228, + "offset": 4220, "size": 4, "type": "float32" }, @@ -113058,7 +113058,7 @@ "name": "m_bInPostEffectTime", "name_hash": 12385185713256462008, "networked": true, - "offset": 4232, + "offset": 4224, "size": 1, "type": "bool" }, @@ -113068,7 +113068,7 @@ "name": "m_bWasCreatedInSmoke", "name_hash": 12385185713136725802, "networked": false, - "offset": 4233, + "offset": 4225, "size": 1, "type": "bool" }, @@ -113078,7 +113078,7 @@ "name": "m_extent", "name_hash": 12385185715291201721, "networked": false, - "offset": 4752, + "offset": 4744, "size": 24, "type": "Extent" }, @@ -113088,7 +113088,7 @@ "name": "m_damageTimer", "name_hash": 12385185713626568529, "networked": false, - "offset": 4776, + "offset": 4768, "size": 24, "type": "CountdownTimer" }, @@ -113098,7 +113098,7 @@ "name": "m_damageRampTimer", "name_hash": 12385185712654275785, "networked": false, - "offset": 4800, + "offset": 4792, "size": 24, "type": "CountdownTimer" }, @@ -113108,7 +113108,7 @@ "name": "m_splashVelocity", "name_hash": 12385185713246052213, "networked": false, - "offset": 4824, + "offset": 4816, "size": 12, "templated": "Vector", "type": "Vector" @@ -113119,7 +113119,7 @@ "name": "m_InitialSplashVelocity", "name_hash": 12385185713551459007, "networked": false, - "offset": 4836, + "offset": 4828, "size": 12, "templated": "Vector", "type": "Vector" @@ -113130,7 +113130,7 @@ "name": "m_startPos", "name_hash": 12385185713315889983, "networked": false, - "offset": 4848, + "offset": 4840, "size": 12, "templated": "Vector", "type": "Vector" @@ -113141,7 +113141,7 @@ "name": "m_vecOriginalSpawnLocation", "name_hash": 12385185713163465602, "networked": false, - "offset": 4860, + "offset": 4852, "size": 12, "templated": "Vector", "type": "Vector" @@ -113152,7 +113152,7 @@ "name": "m_activeTimer", "name_hash": 12385185712771665156, "networked": false, - "offset": 4872, + "offset": 4864, "size": 16, "type": "IntervalTimer" }, @@ -113162,7 +113162,7 @@ "name": "m_fireSpawnOffset", "name_hash": 12385185711790040719, "networked": false, - "offset": 4888, + "offset": 4880, "size": 4, "type": "int32" }, @@ -113172,7 +113172,7 @@ "name": "m_nMaxFlames", "name_hash": 12385185713501527865, "networked": false, - "offset": 4892, + "offset": 4884, "size": 4, "type": "int32" }, @@ -113182,7 +113182,7 @@ "name": "m_nSpreadCount", "name_hash": 12385185715648476129, "networked": false, - "offset": 4896, + "offset": 4888, "size": 4, "type": "int32" }, @@ -113192,7 +113192,7 @@ "name": "m_BookkeepingTimer", "name_hash": 12385185713543863756, "networked": false, - "offset": 4904, + "offset": 4896, "size": 24, "type": "CountdownTimer" }, @@ -113202,7 +113202,7 @@ "name": "m_NextSpreadTimer", "name_hash": 12385185712390350876, "networked": false, - "offset": 4928, + "offset": 4920, "size": 24, "type": "CountdownTimer" }, @@ -113212,7 +113212,7 @@ "name": "m_nSourceItemDefIndex", "name_hash": 12385185711675200230, "networked": false, - "offset": 4952, + "offset": 4944, "size": 2, "type": "uint16" } @@ -113223,7 +113223,7 @@ "name": "CInferno", "name_hash": 2883650761, "project": "server", - "size": 5056 + "size": 5048 }, { "alignment": 16, @@ -117302,7 +117302,7 @@ "name": "CCSPlayerController_ActionTrackingServices", "name_hash": 2531222465, "project": "server", - "size": 944 + "size": 1056 }, { "alignment": 8, @@ -125346,25 +125346,15 @@ "offset": 3024, "size": 16, "type": "IntervalTimer" - }, - { - "alignment": 1, - "kind": "ref", - "name": "m_bHasBouncedOffPlayer", - "name_hash": 11689632208429145979, - "networked": false, - "offset": 3248, - "size": 1, - "type": "bool" } ], - "fields_count": 4, + "fields_count": 3, "has_chainer": false, "is_struct": false, "name": "CMolotovProjectile", "name_hash": 2721704591, "project": "server", - "size": 3264 + "size": 3248 }, { "alignment": 16, @@ -136594,7 +136584,7 @@ "name_hash": 15135923261766619426, "networked": true, "offset": 1376, - "size": 48, + "size": 56, "type": "CCSPlayerModernJump" }, { @@ -136603,7 +136593,7 @@ "name": "m_nLastJumpTick", "name_hash": 15135923263336935020, "networked": true, - "offset": 1424, + "offset": 1432, "size": 4, "type": "GameTick_t" }, @@ -136613,7 +136603,7 @@ "name": "m_flLastJumpFrac", "name_hash": 15135923261856551051, "networked": true, - "offset": 1428, + "offset": 1436, "size": 4, "type": "float32" }, @@ -136623,7 +136613,7 @@ "name": "m_flLastJumpVelocityZ", "name_hash": 15135923260727144450, "networked": true, - "offset": 1432, + "offset": 1440, "size": 4, "type": "float32" }, @@ -136633,7 +136623,7 @@ "name": "m_bJumpApexPending", "name_hash": 15135923263330754384, "networked": true, - "offset": 1436, + "offset": 1444, "size": 1, "type": "bool" }, @@ -136643,7 +136633,7 @@ "name": "m_flTicksSinceLastSurfingDetected", "name_hash": 15135923261186133279, "networked": false, - "offset": 1440, + "offset": 1448, "size": 4, "type": "float32" }, @@ -136653,7 +136643,7 @@ "name": "m_bWasSurfing", "name_hash": 15135923263609373166, "networked": true, - "offset": 1444, + "offset": 1452, "size": 1, "type": "bool" }, @@ -136663,7 +136653,7 @@ "name": "m_vecInputRotated", "name_hash": 15135923262573175124, "networked": false, - "offset": 1588, + "offset": 1596, "size": 12, "templated": "Vector", "type": "Vector" @@ -136675,7 +136665,7 @@ "name": "CCSPlayer_MovementServices", "name_hash": 3524106755, "project": "server", - "size": 3680 + "size": 3688 }, { "alignment": 16, @@ -142288,15 +142278,25 @@ "offset": 44, "size": 4, "type": "float32" + }, + { + "alignment": 4, + "kind": "ref", + "name": "m_flLastLandedVelocityZ", + "name_hash": 10149089920638860986, + "networked": true, + "offset": 48, + "size": 4, + "type": "float32" } ], - "fields_count": 8, + "fields_count": 9, "has_chainer": false, "is_struct": true, "name": "CCSPlayerModernJump", "name_hash": 2363019138, "project": "server", - "size": 48 + "size": 56 }, { "alignment": 8, diff --git a/managed/managed.csproj b/managed/managed.csproj index 2fd66e00f..957cd60bf 100644 --- a/managed/managed.csproj +++ b/managed/managed.csproj @@ -53,6 +53,7 @@ + diff --git a/managed/src/SwiftlyS2.Core/AttributeParsers/CommandAttributeParser.cs b/managed/src/SwiftlyS2.Core/AttributeParsers/CommandAttributeParser.cs index 2d7c7bc56..60a74c17f 100644 --- a/managed/src/SwiftlyS2.Core/AttributeParsers/CommandAttributeParser.cs +++ b/managed/src/SwiftlyS2.Core/AttributeParsers/CommandAttributeParser.cs @@ -20,8 +20,9 @@ public static void ParseFromObject( this ICommandService self, object instance ) var commandName = commandAttribute.Name; var registerRaw = commandAttribute.RegisterRaw; var permission = commandAttribute.Permission; + var helpText = commandAttribute.HelpText; - var cmdGuid = self.RegisterCommand(commandName, method.CreateDelegate(instance), registerRaw, permission); + var cmdGuid = self.RegisterCommand(commandName, method.CreateDelegate(instance), registerRaw, permission, helpText); foreach (var aliasAttr in commandAliasAttributes) { self.RegisterCommandAlias(commandName, aliasAttr.Alias, aliasAttr.RegisterRaw); diff --git a/managed/src/SwiftlyS2.Core/Misc/SwiftlyLogger.cs b/managed/src/SwiftlyS2.Core/Misc/SwiftlyLogger.cs index 5e5b98b6b..63e7911c2 100644 --- a/managed/src/SwiftlyS2.Core/Misc/SwiftlyLogger.cs +++ b/managed/src/SwiftlyS2.Core/Misc/SwiftlyLogger.cs @@ -20,6 +20,7 @@ internal class SwiftlyLogger( string categoryName, string contextName ) : ILogge [LogLevel.Error] = ("Error", "red3"), [LogLevel.Critical] = ("Critical", "red3") }; + private static readonly bool HideLogInConsole = ShouldHideLogToConsole(); public IDisposable BeginScope( TState state ) where TState : notnull => NullScope.Instance; @@ -37,15 +38,14 @@ public void Log( LogLevel logLevel, EventId eventId, TState state, Excep var eventIdText = eventId.Id != 0 ? $"[{eventId.Id}]" : string.Empty; AnsiConsole.Profile.Width = 13337; - // Console output - AnsiConsole.MarkupLineInterpolated($"[lightsteelblue1 bold]{contextName}[/] [lightsteelblue]|[/] [grey42]{timestamp}[/] [lightsteelblue]|[/] [{color}]{levelText}[/] [lightsteelblue]|[/] [lightsteelblue]{categoryName}{eventIdText}[/]"); + if (!HideLogInConsole || categoryName.Contains("Core") || categoryName.Contains("Shared")) AnsiConsole.MarkupLineInterpolated($"[lightsteelblue1 bold]{contextName}[/] [lightsteelblue]|[/] [grey42]{timestamp}[/] [lightsteelblue]|[/] [{color}]{levelText}[/] [lightsteelblue]|[/] [lightsteelblue]{categoryName}{eventIdText}[/]"); // Message output var message = formatter?.Invoke(state, exception) ?? state?.ToString(); if (!string.IsNullOrEmpty(message)) { FileLogger.Log($"{contextName} | {timestamp} | {levelText} | {categoryName}{eventIdText} | {message}"); - OutputMessageLines(message); + if (!HideLogInConsole || categoryName.Contains("Core") || categoryName.Contains("Shared")) OutputMessageLines(message); } // Exception output @@ -83,6 +83,12 @@ private static LogLevel GetMinLogLevelFromEnv() }; } + private static bool ShouldHideLogToConsole() + { + var output = Environment.GetEnvironmentVariable("SWIFTLY_HIDE_LOG_IN_CONSOLE")?.ToUpperInvariant(); + return output == "1" || output == "TRUE" || output == "YES"; + } + private sealed class NullScope : IDisposable { public static readonly NullScope Instance = new(); diff --git a/managed/src/SwiftlyS2.Core/Modules/Commands/CommandCallback.cs b/managed/src/SwiftlyS2.Core/Modules/Commands/CommandCallback.cs index b72c88447..b457ea537 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Commands/CommandCallback.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Commands/CommandCallback.cs @@ -40,7 +40,7 @@ internal class CommandCallback : CommandCallbackBase private readonly ulong nativeListenerId; private readonly ILogger logger; - public CommandCallback( string commandName, bool registerRaw, ICommandService.CommandListener handler, string permission, IPlayerManagerService playerManagerService, IPermissionManager permissionManager, ILoggerFactory loggerFactory, IContextedProfilerService profiler ) : base(loggerFactory, profiler) + public CommandCallback( string commandName, bool registerRaw, ICommandService.CommandListener handler, string permission, string helpText, IPlayerManagerService playerManagerService, IPermissionManager permissionManager, ILoggerFactory loggerFactory, IContextedProfilerService profiler ) : base(loggerFactory, profiler) { this.logger = LoggerFactory.CreateLogger(); @@ -59,7 +59,7 @@ public CommandCallback( string commandName, bool registerRaw, ICommandService.Co var commandNameString = Marshal.PtrToStringUTF8(commandNamePtr)!; var prefixString = Marshal.PtrToStringUTF8(prefixPtr)!; - var args = argsString.Split('\x01').Where(s => !string.IsNullOrWhiteSpace(s)).ToArray(); + var args = argsString.Split('\x01').ToArray(); var context = new CommandContext(playerId, args, commandNameString, prefixString, slient == 1); if (!context.IsSentByPlayer || string.IsNullOrWhiteSpace(commandPermissions) || permissionManager.PlayerHasPermission(playerManagerService.GetPlayer(playerId)?.SteamID ?? 0, commandPermissions)) { @@ -79,7 +79,7 @@ public CommandCallback( string commandName, bool registerRaw, ICommandService.Co }; commandCallbackPtr = Marshal.GetFunctionPointerForDelegate(commandCallback); - nativeListenerId = NativeCommands.RegisterCommand(commandName, commandCallbackPtr, registerRaw); + nativeListenerId = NativeCommands.RegisterCommand(commandName, commandCallbackPtr, registerRaw, helpText); } public override void Dispose() diff --git a/managed/src/SwiftlyS2.Core/Modules/Commands/CommandService.cs b/managed/src/SwiftlyS2.Core/Modules/Commands/CommandService.cs index 71136447d..7050a2600 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Commands/CommandService.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Commands/CommandService.cs @@ -32,9 +32,14 @@ public CommandService( ILoggerFactory loggerFactory, IContextedProfilerService p } } - public Guid RegisterCommand( string commandName, ICommandService.CommandListener handler, bool registerRaw = false, string permission = "" ) + public Guid RegisterCommand( string commandName, ICommandService.CommandListener handler, bool registerRaw, string permission ) { - var callback = new CommandCallback(commandName, registerRaw, handler, permission, playerManagerService, permissionManager, loggerFactory, profiler); + return RegisterCommand(commandName, handler, registerRaw, permission, "SwiftlyS2 registered command"); + } + + public Guid RegisterCommand( string commandName, ICommandService.CommandListener handler, bool registerRaw = false, string permission = "", string helpText = "SwiftlyS2 registered command" ) + { + var callback = new CommandCallback(commandName, registerRaw, handler, permission, helpText, playerManagerService, permissionManager, loggerFactory, profiler); lock (commandLock) { commandCallbacks.Add(callback); diff --git a/managed/src/SwiftlyS2.Core/Modules/Datamaps/BaseDatamapFunction.cs b/managed/src/SwiftlyS2.Core/Modules/Datamaps/BaseDatamapFunction.cs index 85dfa968a..8d5f9e920 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Datamaps/BaseDatamapFunction.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Datamaps/BaseDatamapFunction.cs @@ -1,9 +1,7 @@ using System.Runtime.InteropServices; using Spectre.Console; using SwiftlyS2.Core.Extensions; -using SwiftlyS2.Core.Hooks; using SwiftlyS2.Core.Natives; -using SwiftlyS2.Shared; using SwiftlyS2.Shared.Datamaps; using SwiftlyS2.Shared.Profiler; using SwiftlyS2.Shared.Schemas; diff --git a/managed/src/SwiftlyS2.Core/Modules/Engine/TraceManager.cs b/managed/src/SwiftlyS2.Core/Modules/Engine/TraceManager.cs index 7f66d9b26..6257a9c93 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Engine/TraceManager.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Engine/TraceManager.cs @@ -14,6 +14,7 @@ public void TracePlayerBBox( Vector start, Vector end, BBox_t bounds, CTraceFilt { fixed (CGameTrace* tracePtr = &trace) { + filter.EnsureValid(); GameFunctions.TracePlayerBBox(start, end, bounds, &filter, tracePtr); } } diff --git a/managed/src/SwiftlyS2.Core/Modules/EntitySystem/ClassConvertor.cs b/managed/src/SwiftlyS2.Core/Modules/EntitySystem/ClassConvertor.cs new file mode 100644 index 000000000..dbb5db6e4 --- /dev/null +++ b/managed/src/SwiftlyS2.Core/Modules/EntitySystem/ClassConvertor.cs @@ -0,0 +1,459 @@ +using SwiftlyS2.Shared.SchemaDefinitions; + +namespace SwiftlyS2.Core.SchemaDefinitions; + +internal static class ClassConvertor +{ + public static CEntityInstance ConvertEntityByDesignerName( nint address, string designerName ) + { + return designerName switch { + "cs_player_controller" => new CCSPlayerControllerImpl(address), + "player" => new CCSPlayerPawnImpl(address), + "observer" => new CCSObserverPawnImpl(address), + "spawnpoint" => new SpawnPointImpl(address), + "filter_health" => new FilterHealthImpl(address), + "filter_damage_type" => new FilterDamageTypeImpl(address), + "worldent" => new CWorldImpl(address), + "weapon_xm1014" => new CWeaponXM1014Impl(address), + "weapon_usp_silencer" => new CWeaponUSPSilencerImpl(address), + "weapon_ump45" => new CWeaponUMP45Impl(address), + "weapon_tec9" => new CWeaponTec9Impl(address), + "weapon_taser" => new CWeaponTaserImpl(address), + "weapon_sawedoff" => new CWeaponSawedoffImpl(address), + "weapon_ssg08" => new CWeaponSSG08Impl(address), + "weapon_sg556" => new CWeaponSG556Impl(address), + "weapon_scar20" => new CWeaponSCAR20Impl(address), + "weapon_revolver" => new CWeaponRevolverImpl(address), + "weapon_p90" => new CWeaponP90Impl(address), + "weapon_p250" => new CWeaponP250Impl(address), + "weapon_negev" => new CWeaponNegevImpl(address), + "weapon_nova" => new CWeaponNOVAImpl(address), + "weapon_mag7" => new CWeaponMag7Impl(address), + "weapon_mp9" => new CWeaponMP9Impl(address), + "weapon_mp7" => new CWeaponMP7Impl(address), + "weapon_mp5sd" => new CWeaponMP5SDImpl(address), + "weapon_mac10" => new CWeaponMAC10Impl(address), + "weapon_m4a1_silencer" => new CWeaponM4A1SilencerImpl(address), + "weapon_m4a1" => new CWeaponM4A1Impl(address), + "weapon_m249" => new CWeaponM249Impl(address), + "weapon_hkp2000" => new CWeaponHKP2000Impl(address), + "weapon_glock" => new CWeaponGlockImpl(address), + "weapon_galilar" => new CWeaponGalilARImpl(address), + "weapon_g3sg1" => new CWeaponG3SG1Impl(address), + "weapon_fiveseven" => new CWeaponFiveSevenImpl(address), + "weapon_famas" => new CWeaponFamasImpl(address), + "weapon_elite" => new CWeaponEliteImpl(address), + "weapon_cz75a" => new CWeaponCZ75aImpl(address), + "weapon_bizon" => new CWeaponBizonImpl(address), + "weapon_csbase" => new CWeaponBaseItemImpl(address), + "weapon_aug" => new CWeaponAugImpl(address), + "weapon_awp" => new CWeaponAWPImpl(address), + "waterbullet" => new CWaterBulletImpl(address), + "vote_controller" => new CVoteControllerImpl(address), + "trigger_transition" => new CTriggerVolumeImpl(address), + "trigger_togglesave" => new CTriggerToggleSaveImpl(address), + "trigger_teleport" => new CTriggerTeleportImpl(address), + "trigger_soundscape" => new CTriggerSoundscapeImpl(address), + "trigger_snd_sos_opvar" => new CTriggerSndSosOpvarImpl(address), + "trigger_autosave" => new CTriggerSaveImpl(address), + "trigger_remove" => new CTriggerRemoveImpl(address), + "trigger_push" => new CTriggerPushImpl(address), + "trigger_proximity" => new CTriggerProximityImpl(address), + "trigger_physics" => new CTriggerPhysicsImpl(address), + "trigger_once" => new CTriggerOnceImpl(address), + "trigger_multiple" => new CTriggerMultipleImpl(address), + "trigger_look" => new CTriggerLookImpl(address), + "trigger_lerp_object" => new CTriggerLerpObjectImpl(address), + "trigger_impact" => new CTriggerImpactImpl(address), + "trigger_hurt" => new CTriggerHurtImpl(address), + "trigger_hostage_reset" => new CTriggerHostageResetImpl(address), + "trigger_gravity" => new CTriggerGravityImpl(address), + "trigger_game_event" => new CTriggerGameEventImpl(address), + "trigger_fan" => new CTriggerFanImpl(address), + "trigger_detect_explosion" => new CTriggerDetectExplosionImpl(address), + "trigger_detect_bullet_fire" => new CTriggerDetectBulletFireImpl(address), + "trigger_callback" => new CTriggerCallbackImpl(address), + "trigger_buoyancy" => new CTriggerBuoyancyImpl(address), + "trigger_brush" => new CTriggerBrushImpl(address), + "trigger_bomb_reset" => new CTriggerBombResetImpl(address), + "trigger_active_weapon_detect" => new CTriggerActiveWeaponDetectImpl(address), + "trigger_tonemap" => new CTonemapTriggerImpl(address), + "env_tonemap_controller2" => new CTonemapController2Impl(address), + "logic_timer" => new CTimerEntityImpl(address), + "hl_vr_texture_based_animatable" => new CTextureBasedAnimatableImpl(address), + "test_io_combinations" => new CTestPulseIOImpl(address), + "test_effect" => new CTestEffectImpl(address), + "team_manager" => new CTeamImpl(address), + "tanktrain_ai" => new CTankTrainAIImpl(address), + "tanktrain_aitarget" => new CTankTargetChangeImpl(address), + "env_sprite_oriented" => new CSpriteOrientedImpl(address), + "env_glow" => new CSpriteImpl(address), + "spotlight_end" => new CSpotlightEndImpl(address), + "phys_splineconstraint" => new CSplineConstraintImpl(address), + "snd_stack_save" => new CSoundStackSaveImpl(address), + "snd_opvar_set_point" => new CSoundOpvarSetPointEntityImpl(address), + "snd_opvar_set_point_base" => new CSoundOpvarSetPointBaseImpl(address), + "snd_opvar_set_path_corner" => new CSoundOpvarSetPathCornerEntityImpl(address), + "snd_opvar_set_wind_obb" => new CSoundOpvarSetOBBWindEntityImpl(address), + "snd_opvar_set_obb" => new CSoundOpvarSetOBBEntityImpl(address), + "snd_opvar_set" => new CSoundOpvarSetEntityImpl(address), + "snd_opvar_set_auto_room" => new CSoundOpvarSetAutoRoomEntityImpl(address), + "snd_opvar_set_aabb" => new CSoundOpvarSetAABBEntityImpl(address), + "snd_event_cone" => new CSoundEventConeEntityImpl(address), + "snd_event_sphere" => new CSoundEventSphereEntityImpl(address), + "snd_event_path_corner" => new CSoundEventPathCornerEntityImpl(address), + "snd_event_param" => new CSoundEventParameterImpl(address), + "snd_event_orientedbox" => new CSoundEventOBBEntityImpl(address), + "snd_event_point" => new CSoundEventEntityImpl(address), + "snd_event_alignedbox" => new CSoundEventAABBEntityImpl(address), + "snd_sound_area_sphere" => new CSoundAreaEntitySphereImpl(address), + "snd_sound_area_obb" => new CSoundAreaEntityOrientedBoxImpl(address), + "snd_sound_area_base" => new CSoundAreaEntityBaseImpl(address), + "smokegrenade_projectile" => new CSmokeGrenadeProjectileImpl(address), + "weapon_smokegrenade" => new CSmokeGrenadeImpl(address), + "skybox_reference" => new CSkyboxReferenceImpl(address), + "sky_camera" => new CSkyCameraImpl(address), + "markup_volume_tagged" => new CSimpleMarkupVolumeTaggedImpl(address), + "spark_shower" => new CShowerImpl(address), + "shatterglass_shard" => new CShatterGlassShardPhysicsImpl(address), + "trigger_serverragdoll" => new CServerRagdollTriggerImpl(address), + "scripted_sequence" => new CScriptedSequenceImpl(address), + "script_trigger_push" => new CScriptTriggerPushImpl(address), + "script_trigger_once" => new CScriptTriggerOnceImpl(address), + "script_trigger_multiple" => new CScriptTriggerMultipleImpl(address), + "script_trigger_hurt" => new CScriptTriggerHurtImpl(address), + "script_nav_blocker" => new CScriptNavBlockerImpl(address), + "scripted_item_drop" => new CScriptItemImpl(address), + "logic_scene_list_manager" => new CSceneListManagerImpl(address), + "scripted_scene" => new CSceneEntityImpl(address), + "rotator_target" => new CRotatorTargetImpl(address), + "func_door_rotating" => new CRotDoorImpl(address), + "func_rot_button" => new CRotButtonImpl(address), + "keyframe_rope" => new CRopeKeyframeImpl(address), + "player_loadsaved" => new CRevertSavedImpl(address), + "light_rect" => new CRectLightImpl(address), + "prop_ragdoll_attached" => new CRagdollPropAttachedImpl(address), + "prop_ragdoll" => new CRagdollPropImpl(address), + "game_ragdoll_manager" => new CRagdollManagerImpl(address), + "phys_ragdollmagnet" => new CRagdollMagnetImpl(address), + "phys_ragdollconstraint" => new CRagdollConstraintImpl(address), + "func_pushable" => new CPushableImpl(address), + "pulse_game_blackboard" => new CPulseGameBlackboardImpl(address), + "prop_door_rotating" => new CPropDoorRotatingBreakableImpl(address), + "func_precipitation_blocker" => new CPrecipitationBlockerImpl(address), + "func_precipitation" => new CPrecipitationImpl(address), + "post_processing_volume" => new CPostProcessingVolumeImpl(address), + "point_script" => new CCSPointScriptEntityImpl(address), + "point_worldtext" => new CPointWorldTextImpl(address), + "point_velocitysensor" => new CPointVelocitySensorImpl(address), + "point_value_remapper" => new CPointValueRemapperImpl(address), + "point_template" => new CPointTemplateImpl(address), + "point_teleport" => new CPointTeleportImpl(address), + "point_servercommand" => new CPointServerCommandImpl(address), + "point_push" => new CPointPushImpl(address), + "point_pulse" => new CPointPulseImpl(address), + "point_proximity_sensor" => new CPointProximitySensorImpl(address), + "point_prefab" => new CPointPrefabImpl(address), + "point_orient" => new CPointOrientImpl(address), + "point_hurt" => new CPointHurtImpl(address), + "point_give_ammo" => new CPointGiveAmmoImpl(address), + "point_gamestats_counter" => new CPointGamestatsCounterImpl(address), + "point_entity_finder" => new CPointEntityFinderImpl(address), + "point_entity" => new CPointEntityImpl(address), + "point_commentary_node" => new CPointCommentaryNodeImpl(address), + "point_clientui_world_text_panel" => new CPointClientUIWorldTextPanelImpl(address), + "point_clientui_world_panel" => new CPointClientUIWorldPanelImpl(address), + "point_clientui_dialog" => new CPointClientUIDialogImpl(address), + "point_clientcommand" => new CPointClientCommandImpl(address), + "point_childmodifier" => new CPointChildModifierImpl(address), + "point_camera_vertical_fov" => new CPointCameraVFOVImpl(address), + "point_camera" => new CPointCameraImpl(address), + "point_broadcastclientcommand" => new CPointBroadcastClientCommandImpl(address), + "point_angularvelocitysensor" => new CPointAngularVelocitySensorImpl(address), + "point_anglesensor" => new CPointAngleSensorImpl(address), + "env_player_visibility" => new CPlayerVisibilityImpl(address), + "player_spray_decal" => new CPlayerSprayDecalImpl(address), + "info_player_ping" => new CPlayerPingImpl(address), + "plat_trigger" => new CPlatTriggerImpl(address), + "planted_c4" => new CPlantedC4Impl(address), + "env_physwire" => new CPhysicsWireImpl(address), + "phys_spring" => new CPhysicsSpringImpl(address), + "prop_physics_respawnable" => new CPhysicsPropRespawnableImpl(address), + "prop_physics_override" => new CPhysicsPropOverrideImpl(address), + "prop_physics_multiplayer" => new CPhysicsPropMultiplayerImpl(address), + "prop_physics" => new CPhysicsPropImpl(address), + "physics_entity_solver" => new CPhysicsEntitySolverImpl(address), + "func_physical_button" => new CPhysicalButtonImpl(address), + "phys_wheelconstraint" => new CPhysWheelConstraintImpl(address), + "phys_torque" => new CPhysTorqueImpl(address), + "phys_thruster" => new CPhysThrusterImpl(address), + "phys_slideconstraint" => new CPhysSlideConstraintImpl(address), + "phys_pulleyconstraint" => new CPhysPulleyImpl(address), + "phys_motor" => new CPhysMotorImpl(address), + "phys_magnet" => new CPhysMagnetImpl(address), + "phys_lengthconstraint" => new CPhysLengthImpl(address), + "env_physimpact" => new CPhysImpactImpl(address), + "phys_hinge" => new CPhysHingeImpl(address), + "phys_constraint" => new CPhysFixedImpl(address), + "env_physexplosion" => new CPhysExplosionImpl(address), + "func_physbox" => new CPhysBoxImpl(address), + "phys_ballsocket" => new CPhysBallSocketImpl(address), + "path_track" => new CPathTrackImpl(address), + "path_simple" => new CPathSimpleImpl(address), + "path_particle_rope" => new CPathParticleRopeImpl(address), + "path_mover" => new CPathMoverImpl(address), + "keyframe_track" => new CPathKeyFrameImpl(address), + "path_corner_crash" => new CPathCornerCrashImpl(address), + "path_corner" => new CPathCornerImpl(address), + "info_particle_system" => new CParticleSystemImpl(address), + "prop_dynamic_ornament" => new COrnamentPropImpl(address), + "light_omni2" => new COmniLightImpl(address), + "info_null" => new CNullEntityImpl(address), + "point_nav_walkable" => new CNavWalkableImpl(address), + "info_nav_space" => new CNavSpaceInfoImpl(address), + "ai_nav_link_area" => new CNavLinkAreaEntityImpl(address), + "multisource" => new CMultiSourceImpl(address), + "logic_multilight_proxy" => new CMultiLightProxyImpl(address), + "path_node_mover" => new CMoverPathNodeImpl(address), + "momentary_rot_button" => new CMomentaryRotButtonImpl(address), + "molotov_projectile" => new CMolotovProjectileImpl(address), + "weapon_molotov" => new CMolotovGrenadeImpl(address), + "point_message" => new CMessageEntityImpl(address), + "env_message" => new CMessageImpl(address), + "math_remap" => new CMathRemapImpl(address), + "math_counter" => new CMathCounterImpl(address), + "math_colorblend" => new CMathColorBlendImpl(address), + "markup_volume_with_ref" => new CMarkupVolumeWithRefImpl(address), + "func_nav_markup_game" => new CMarkupVolumeTagged_NavGameImpl(address), + "func_nav_markup" => new CMarkupVolumeTagged_NavImpl(address), + "markup_volume" => new CMarkupVolumeImpl(address), + "mapvetopick_controller" => new CMapVetoPickControllerImpl(address), + "map_shared_environment" => new CMapSharedEnvironmentImpl(address), + "info_map_parameters" => new CMapInfoImpl(address), + "logic_script" => new CLogicScriptImpl(address), + "logic_relay" => new CLogicRelayImpl(address), + "logic_proximity" => new CLogicProximityImpl(address), + "logic_playerproxy" => new CLogicPlayerProxyImpl(address), + "logic_navigation" => new CLogicNavigationImpl(address), + "logic_npc_counter_obb" => new CLogicNPCCounterOBBImpl(address), + "logic_npc_counter_aabb" => new CLogicNPCCounterAABBImpl(address), + "logic_npc_counter_radius" => new CLogicNPCCounterImpl(address), + "logic_measure_movement" => new CLogicMeasureMovementImpl(address), + "logic_lineto" => new CLogicLineToEntityImpl(address), + "logic_gameevent_listener" => new CLogicGameEventListenerImpl(address), + "logic_game_event" => new CLogicGameEventImpl(address), + "logic_eventlistener" => new CLogicEventListenerImpl(address), + "logic_distance_check" => new CLogicDistanceCheckImpl(address), + "logic_distance_autosave" => new CLogicDistanceAutosaveImpl(address), + "logic_compare" => new CLogicCompareImpl(address), + "logic_collision_pair" => new CLogicCollisionPairImpl(address), + "logic_case" => new CLogicCaseImpl(address), + "logic_branch_listener" => new CLogicBranchListImpl(address), + "logic_branch" => new CLogicBranchImpl(address), + "logic_autosave" => new CLogicAutosaveImpl(address), + "logic_auto" => new CLogicAutoImpl(address), + "logic_active_autosave" => new CLogicActiveAutosaveImpl(address), + "logic_achievement" => new CLogicAchievementImpl(address), + "light_spot" => new CLightSpotEntityImpl(address), + "light_ortho" => new CLightOrthoEntityImpl(address), + "light_environment" => new CLightEnvironmentEntityImpl(address), + "light_omni" => new CLightEntityImpl(address), + "light_directional" => new CLightDirectionalEntityImpl(address), + "weapon_knife" => new CKnifeImpl(address), + "phys_keepupright" => new CKeepUprightImpl(address), + "weapon_healthshot" => new CItem_HealthshotImpl(address), + "item_sodacan" => new CItemSodaImpl(address), + "item_kevlar" => new CItemKevlarImpl(address), + "item_generic_trigger_helper" => new CItemGenericTriggerHelperImpl(address), + "item_generic" => new CItemGenericImpl(address), + "item_defuser" => new CItemDefuserImpl(address), + "item_assaultsuit" => new CItemAssaultSuitImpl(address), + "point_instructor_event" => new CInstructorEventEntityImpl(address), + "instanced_scripted_scene" => new CInstancedSceneEntityImpl(address), + "info_world_layer" => new CInfoWorldLayerImpl(address), + "info_visibility_box" => new CInfoVisibilityBoxImpl(address), + "info_teleport_destination" => new CInfoTeleportDestinationImpl(address), + "info_target_server_only" => new CInfoTargetServerOnlyImpl(address), + "info_target" => new CInfoTargetImpl(address), + "info_spawngroup_load_unload" => new CInfoSpawnGroupLoadUnloadImpl(address), + "info_spawngroup_landmark" => new CInfoSpawnGroupLandmarkImpl(address), + "info_player_terrorist" => new CInfoPlayerTerroristImpl(address), + "info_player_start" => new CInfoPlayerStartImpl(address), + "info_player_counterterrorist" => new CInfoPlayerCounterterroristImpl(address), + "info_particle_target" => new CInfoParticleTargetImpl(address), + "info_offscreen_panorama_texture" => new CInfoOffscreenPanoramaTextureImpl(address), + "info_landmark" => new CInfoLandmarkImpl(address), + "info_ladder_dismount" => new CInfoLadderDismountImpl(address), + "info_target_instructor_hint" => new CInfoInstructorHintTargetImpl(address), + "info_hostage_rescue_zone_hint" => new CInfoInstructorHintHostageRescueZoneImpl(address), + "info_bomb_target_hint_B" => new CInfoInstructorHintBombTargetBImpl(address), + "info_bomb_target_hint_A" => new CInfoInstructorHintBombTargetAImpl(address), + "info_game_event_proxy" => new CInfoGameEventProxyImpl(address), + "info_trigger_fan" => new CInfoFanImpl(address), + "info_dynamic_shadow_hint_box" => new CInfoDynamicShadowHintBoxImpl(address), + "info_dynamic_shadow_hint" => new CInfoDynamicShadowHintImpl(address), + "info_deathmatch_spawn" => new CInfoDeathmatchSpawnImpl(address), + "info_data" => new CInfoDataImpl(address), + "inferno" => new CInfernoImpl(address), + "weapon_incgrenade" => new CIncendiaryGrenadeImpl(address), + "func_hostage_rescue" => new CHostageRescueZoneImpl(address), + "hostage_entity" => new CHostageImpl(address), + "handle_test" => new CHandleTestImpl(address), + "handle_dummy" => new CHandleDummyImpl(address), + "hegrenade_projectile" => new CHEGrenadeProjectileImpl(address), + "weapon_hegrenade" => new CHEGrenadeImpl(address), + "func_guntarget" => new CGunTargetImpl(address), + "env_gradient_fog" => new CGradientFogImpl(address), + "phys_genericconstraint" => new CGenericConstraintImpl(address), + "game_text" => new CGameTextImpl(address), + "game_zone_player" => new CGamePlayerZoneImpl(address), + "game_player_equip" => new CGamePlayerEquipImpl(address), + "game_money" => new CGameMoneyImpl(address), + "game_gib_manager" => new CGameGibManagerImpl(address), + "game_end" => new CGameEndImpl(address), + "func_water" => new CFuncWaterImpl(address), + "func_wall_toggle" => new CFuncWallToggleImpl(address), + "func_wall" => new CFuncWallImpl(address), + "func_vehicleclip" => new CFuncVehicleClipImpl(address), + "func_clip_vphysics" => new CFuncVPhysicsClipImpl(address), + "func_traincontrols" => new CFuncTrainControlsImpl(address), + "func_train" => new CFuncTrainImpl(address), + "func_tracktrain" => new CFuncTrackTrainImpl(address), + "func_trackchange" => new CFuncTrackChangeImpl(address), + "func_trackautochange" => new CFuncTrackAutoImpl(address), + "func_timescale" => new CFuncTimescaleImpl(address), + "func_tanktrain" => new CFuncTankTrainImpl(address), + "func_shatterglass" => new CFuncShatterglassImpl(address), + "func_retakebarrier" => new CFuncRetakeBarrierImpl(address), + "func_rotator" => new CFuncRotatorImpl(address), + "func_rotating" => new CFuncRotatingImpl(address), + "func_proprrespawnzone" => new CFuncPropRespawnZoneImpl(address), + "func_platrot" => new CFuncPlatRotImpl(address), + "func_plat" => new CFuncPlatImpl(address), + "func_nav_avoidance_obstacle" => new CFuncNavObstructionImpl(address), + "func_nav_blocker" => new CFuncNavBlockerImpl(address), + "func_mover" => new CFuncMoverImpl(address), + "momentary_door" => new CFuncMoveLinearImpl(address), + "func_monitor" => new CFuncMonitorImpl(address), + "func_useableladder" => new CFuncLadderImpl(address), + "func_illusionary" => new CFuncIllusionaryImpl(address), + "func_electrified_volume" => new CFuncElectrifiedVolumeImpl(address), + "func_conveyor" => new CFuncConveyorImpl(address), + "func_brush" => new CFuncBrushImpl(address), + "func_footstep_control" => new CFootstepControlImpl(address), + "fog_volume" => new CFogVolumeImpl(address), + "trigger_fog" => new CFogTriggerImpl(address), + "env_fog_controller" => new CFogControllerImpl(address), + "flashbang_projectile" => new CFlashbangProjectileImpl(address), + "weapon_flashbang" => new CFlashbangImpl(address), + "func_fish_pool" => new CFishPoolImpl(address), + "fish" => new CFishImpl(address), + "filter_activator_team" => new CFilterTeamImpl(address), + "filter_proximity" => new CFilterProximityImpl(address), + "filter_activator_name" => new CFilterNameImpl(address), + "filter_multi" => new CFilterMultipleImpl(address), + "filter_activator_model" => new CFilterModelImpl(address), + "filter_activator_mass_greater" => new CFilterMassGreaterImpl(address), + "filter_los" => new CFilterLOSImpl(address), + "filter_enemy" => new CFilterEnemyImpl(address), + "filter_activator_context" => new CFilterContextImpl(address), + "filter_activator_class" => new CFilterClassImpl(address), + "filter_activator_attribute_int" => new CFilterAttributeIntImpl(address), + "env_wind_volume" => new CEnvWindVolumeImpl(address), + "env_wind_controller" => new CEnvWindControllerImpl(address), + "env_wind" => new CEnvWindImpl(address), + "env_volumetric_fog_volume" => new CEnvVolumetricFogVolumeImpl(address), + "env_volumetric_fog_controller" => new CEnvVolumetricFogControllerImpl(address), + "env_viewpunch" => new CEnvViewPunchImpl(address), + "env_tilt" => new CEnvTiltImpl(address), + "env_splash" => new CEnvSplashImpl(address), + "env_spark" => new CEnvSparkImpl(address), + "env_soundscape_triggerable" => new CEnvSoundscapeTriggerableImpl(address), + "env_soundscape_proxy" => new CEnvSoundscapeProxyImpl(address), + "env_soundscape" => new CEnvSoundscapeImpl(address), + "env_sky" => new CEnvSkyImpl(address), + "env_shake" => new CEnvShakeImpl(address), + "env_particle_glow" => new CEnvParticleGlowImpl(address), + "env_muzzleflash" => new CEnvMuzzleFlashImpl(address), + "env_light_probe_volume" => new CEnvLightProbeVolumeImpl(address), + "env_laser" => new CEnvLaserImpl(address), + "env_instructor_vr_hint" => new CEnvInstructorVRHintImpl(address), + "env_instructor_hint" => new CEnvInstructorHintImpl(address), + "env_hudhint" => new CEnvHudHintImpl(address), + "env_global" => new CEnvGlobalImpl(address), + "env_fade" => new CEnvFadeImpl(address), + "env_explosion" => new CEnvExplosionImpl(address), + "env_entity_maker" => new CEnvEntityMakerImpl(address), + "env_entity_igniter" => new CEnvEntityIgniterImpl(address), + "env_detail_controller" => new CEnvDetailControllerImpl(address), + "env_decal" => new CEnvDecalImpl(address), + "env_cubemap_fog" => new CEnvCubemapFogImpl(address), + "env_cubemap_box" => new CEnvCubemapBoxImpl(address), + "env_cubemap" => new CEnvCubemapImpl(address), + "env_combined_light_probe_volume" => new CEnvCombinedLightProbeVolumeImpl(address), + "env_beverage" => new CEnvBeverageImpl(address), + "env_beam" => new CEnvBeamImpl(address), + "root" => new CEntityInstanceImpl(address), + "entityflame" => new CEntityFlameImpl(address), + "env_entity_dissolver" => new CEntityDissolveImpl(address), + "entity_blocker" => new CEntityBlockerImpl(address), + "point_enable_motion_fixup" => new CEnableMotionFixupImpl(address), + "wearable_item" => new CEconWearableImpl(address), + "dynamic_prop" => new CDynamicPropImpl(address), + "prop_dynamic" => new CDynamicPropImpl(address), + "func_nav_dynamic_connections" => new CDynamicNavConnectionsVolumeImpl(address), + "light_dynamic" => new CDynamicLightImpl(address), + "decoy_projectile" => new CDecoyProjectileImpl(address), + "weapon_decoy" => new CDecoyGrenadeImpl(address), + "env_debughistory" => new CDebugHistoryImpl(address), + "weapon_deagle" => new CDEagleImpl(address), + "env_credits" => new CCreditsImpl(address), + "info_constraint_anchor" => new CConstraintAnchorImpl(address), + "point_commentary_viewpoint" => new CCommentaryViewPositionImpl(address), + "commentary_auto" => new CCommentaryAutoImpl(address), + "color_correction_volume" => new CColorCorrectionVolumeImpl(address), + "color_correction" => new CColorCorrectionImpl(address), + "citadel_snd_opvar_set_obb" => new CCitadelSoundOpvarSetOBBImpl(address), + "chicken" => new CChickenImpl(address), + "trigger_changelevel" => new CChangeLevelImpl(address), + "weapon_cs_base" => new CCSWeaponBaseImpl(address), + "cs_team_manager" => new CCSTeamImpl(address), + "env_sprite_clientside" => new CCSSpriteImpl(address), + "cs_player_manager" => new CCSPlayerResourceImpl(address), + "env_cs_place" => new CCSPlaceImpl(address), + "cs_pet_placement" => new CCSPetPlacementImpl(address), + "cs_minimap_boundary" => new CCSMinimapBoundaryImpl(address), + "cs_gamerules" => new CCSGameRulesProxyImpl(address), + "wingman_intro_terrorist" => new CCSGO_WingmanIntroTerroristPositionImpl(address), + "wingman_intro_counterterrorist" => new CCSGO_WingmanIntroCounterTerroristPositionImpl(address), + "team_select_terrorist" => new CCSGO_TeamSelectTerroristPositionImpl(address), + "team_select_counterterrorist" => new CCSGO_TeamSelectCounterTerroristPositionImpl(address), + "team_intro_terrorist" => new CCSGO_TeamIntroTerroristPositionImpl(address), + "team_intro_counterterrorist" => new CCSGO_TeamIntroCounterTerroristPositionImpl(address), + "weapon_c4" => new CC4Impl(address), + "func_buyzone" => new CBuyZoneImpl(address), + "func_breakable" => new CBreakableImpl(address), + "func_bomb_target" => new CBombTargetImpl(address), + "env_blood" => new CBloodImpl(address), + "beam" => new CBeamImpl(address), + "trigger" => new CBaseTriggerImpl(address), + "baseplayerpawn" => new CBasePlayerPawnImpl(address), + "player_controller" => new CBasePlayerControllerImpl(address), + "move_keyframed" => new CBaseMoveBehaviorImpl(address), + "basemodelentity" => new CBaseModelEntityImpl(address), + "grenade" => new CBaseGrenadeImpl(address), + "baseflex" => new CBaseFlexImpl(address), + "filter_base" => new CBaseFilterImpl(address), + "func_door" => new CBaseDoorImpl(address), + "info_player_deathmatch" => new CBaseDMStartImpl(address), + "weapon_basecsgrenade" => new CBaseCSGrenadeImpl(address), + "func_button" => new CBaseButtonImpl(address), + "baseanimgraph" => new CBaseAnimGraphImpl(address), + "light_barn" => new CBarnLightImpl(address), + "ambient_generic" => new CAmbientGenericImpl(address), + "weapon_ak47" => new CAK47Impl(address), + "ai_changehintgroup" => new CAI_ChangeHintGroupImpl(address), + _ => new CEntityInstanceImpl(address), + }; + } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Core/Modules/EntitySystem/EntityManager.cs b/managed/src/SwiftlyS2.Core/Modules/EntitySystem/EntityManager.cs new file mode 100644 index 000000000..a3608d473 --- /dev/null +++ b/managed/src/SwiftlyS2.Core/Modules/EntitySystem/EntityManager.cs @@ -0,0 +1,108 @@ +using SwiftlyS2.Core.SchemaDefinitions; +using SwiftlyS2.Shared.SchemaDefinitions; + +namespace SwiftlyS2.Core.EntitySystem; + +internal static class EntityManager +{ + private static readonly CEntityInstance?[] _Entities = new CEntityInstance?[1 << 15]; + private static readonly List _ActiveEntityIndices = []; + private static readonly Dictionary _PtrToIndex = []; + private static readonly CEntityInstanceImpl _Dummy = new(0); + private static readonly ReaderWriterLockSlim _rw = new(LockRecursionPolicy.NoRecursion); + + public static CEntityInstance OnEntityCreated( nint entityPtr ) + { + var ent = GetEntityByAddress(entityPtr); + if (ent != null) return ent; + + _Dummy.DangerousSetHandle(entityPtr); + var index = _Dummy.Index; + var entity = ClassConvertor.ConvertEntityByDesignerName(entityPtr, _Dummy.DesignerName); + _rw.EnterWriteLock(); + try + { + _Entities[index] = entity; + _ActiveEntityIndices.Add(index); + _PtrToIndex.Add(entityPtr, index); + return entity; + } + finally + { + _rw.ExitWriteLock(); + } + } + + public static CEntityInstance? GetEntityByIndex( uint index ) + { + _rw.EnterReadLock(); + try + { + return _Entities[index]; + } + finally + { + _rw.ExitReadLock(); + } + } + + public static CEntityInstance? GetEntityByAddress( nint address ) + { + _rw.EnterReadLock(); + try + { + return !_PtrToIndex.TryGetValue(address, out var value) ? null : _Entities[value]; + } + finally + { + _rw.ExitReadLock(); + } + } + + public static void OnEntityDeleted( nint entityPtr ) + { + _rw.EnterWriteLock(); + try + { + if (!_PtrToIndex.TryGetValue(entityPtr, out var index)) + { + return; + } + _Entities[index] = null; + _ = _ActiveEntityIndices.Remove(index); + _ = _PtrToIndex.Remove(entityPtr); + } + finally + { + _rw.ExitWriteLock(); + } + } + + public static IEnumerable GetAllEntities() + { + + _rw.EnterReadLock(); + try + { + return _ActiveEntityIndices.Select(index => _Entities[index]!); + } + finally + { + _rw.ExitReadLock(); + } + } + + public static bool IsAddressValid( nint address ) + { + _rw.EnterReadLock(); + try + { + return _PtrToIndex.ContainsKey(address); + } + finally + { + _rw.ExitReadLock(); + } + } + +} diff --git a/managed/src/SwiftlyS2.Core/Modules/EntitySystem/EntityOutputHookCallback.cs b/managed/src/SwiftlyS2.Core/Modules/EntitySystem/EntityOutputHookCallback.cs deleted file mode 100644 index 38f9ce18e..000000000 --- a/managed/src/SwiftlyS2.Core/Modules/EntitySystem/EntityOutputHookCallback.cs +++ /dev/null @@ -1,88 +0,0 @@ -using System.Runtime.InteropServices; -using System.Runtime.CompilerServices; -using Microsoft.Extensions.Logging; -using SwiftlyS2.Shared.Misc; -using SwiftlyS2.Core.Natives; -using SwiftlyS2.Shared.Natives; -using SwiftlyS2.Shared.Profiler; -using SwiftlyS2.Shared.EntitySystem; -using SwiftlyS2.Core.SchemaDefinitions; - -namespace SwiftlyS2.Core.NetMessages; - -[Obsolete("Use HookEntityOutput with EntityOutputEventHandler instead.")] -[UnmanagedFunctionPointer(CallingConvention.Cdecl)] -internal delegate int EntityOutputHookCallbackDelegate( nint entityio, nint outputName, nint activator, nint caller, float delay ); - -[Obsolete("Use HookEntityOutput with EntityOutputEventHandler instead.")] -internal class EntityOutputHookCallback : IDisposable -{ - public Guid Guid { get; init; } - - private readonly ILogger logger; - private readonly EntityOutputHookCallbackDelegate unmanagedCallback; - private readonly nint unmanagedCallbackPtr; - private readonly ulong nativeHookId; - - private volatile bool disposed; - - public EntityOutputHookCallback( string className, string outputName, IEntitySystemService.EntityOutputHandler callback, ILoggerFactory loggerFactory, IContextedProfilerService profiler ) - { - this.Guid = Guid.NewGuid(); - this.logger = loggerFactory.CreateLogger(); - this.disposed = false; - - unmanagedCallback = ( entityio, outputName, activator, caller, delay ) => - { - try - { - var category = "EntityOutputHookCallback::" + outputName; - profiler.StartRecording(category); - var outputStr = Marshal.PtrToStringAnsi(outputName) ?? string.Empty; - HookResult result; - unsafe - { - result = callback( - Unsafe.AsRef((void*)entityio), - Marshal.PtrToStringAnsi(outputName) ?? string.Empty, - new CEntityInstanceImpl(activator), - new CEntityInstanceImpl(caller), - delay - ); - } - profiler.StopRecording(category); - return (int)result; - } - catch (Exception e) - { - if (!GlobalExceptionHandler.Handle(e)) - { - return 0; - } - logger.LogError(e, "Failed to execute entity output callback {0}.", Guid); - } - return 0; - }; - - unmanagedCallbackPtr = Marshal.GetFunctionPointerForDelegate(unmanagedCallback); - nativeHookId = NativeEntitySystem.HookEntityOutput(className, outputName, unmanagedCallbackPtr); - } - - ~EntityOutputHookCallback() - { - Dispose(); - } - - public void Dispose() - { - if (disposed) - { - return; - } - disposed = true; - - NativeEntitySystem.UnhookEntityOutput(nativeHookId); - - GC.SuppressFinalize(this); - } -} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Core/Modules/EntitySystem/EntitySystem.cs b/managed/src/SwiftlyS2.Core/Modules/EntitySystem/EntitySystem.cs index f0a598edd..b003a13c9 100644 --- a/managed/src/SwiftlyS2.Core/Modules/EntitySystem/EntitySystem.cs +++ b/managed/src/SwiftlyS2.Core/Modules/EntitySystem/EntitySystem.cs @@ -1,13 +1,10 @@ using System.Collections.Concurrent; -using Microsoft.Extensions.Logging; using SwiftlyS2.Core.Natives; using SwiftlyS2.Shared.Events; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.Schemas; using SwiftlyS2.Core.Extensions; -using SwiftlyS2.Shared.Profiler; -using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.EntitySystem; using SwiftlyS2.Core.SchemaDefinitions; using SwiftlyS2.Shared.SchemaDefinitions; @@ -16,21 +13,15 @@ namespace SwiftlyS2.Core.EntitySystem; internal class EntitySystemService : IEntitySystemService, IDisposable { - private readonly ILoggerFactory loggerFactory; - private readonly IContextedProfilerService profiler; private readonly IEventSubscriber eventSubscriber; - [Obsolete("Use outputHooks instead.")] - private readonly ConcurrentDictionary outputCallbacks = new(); private readonly ConcurrentDictionary outputHooks = new(); private readonly ConcurrentDictionary inputHooks = new(); private volatile bool disposed; - public EntitySystemService( IEventSubscriber eventSubscriber, ILoggerFactory loggerFactory, IContextedProfilerService profiler ) + public EntitySystemService( IEventSubscriber eventSubscriber ) { - this.loggerFactory = loggerFactory; - this.profiler = profiler; this.eventSubscriber = eventSubscriber; this.disposed = false; } @@ -51,13 +42,20 @@ public T CreateEntity() where T : class, ISchemaClass : CreateEntityByDesignerName(T.ClassName); } - public T CreateEntityByDesignerName( string designerName ) where T : ISchemaClass + public T CreateEntityByDesignerName( string designerName ) where T : class, ISchemaClass + { + return (CreateEntityByDesignerName(designerName) as T)!; + } + + public CEntityInstance CreateEntityByDesignerName( string designerName ) { ThrowIfEntitySystemInvalid(); var handle = NativeEntitySystem.CreateEntityByName(designerName); + var entity = EntityManager.OnEntityCreated(handle); + return handle == nint.Zero ? throw new ArgumentException($"Failed to create entity by designer name: {designerName}, probably invalid designer name.") - : T.From(handle); + : entity; } public CHandle GetRefEHandle( T entity ) where T : class, ISchemaClass @@ -75,45 +73,37 @@ public CHandle GetRefEHandle( T entity ) where T : class, ISchemaClass public IEnumerable GetAllEntities() { - ThrowIfEntitySystemInvalid(); - CEntityIdentity? pFirst = new CEntityIdentityImpl(NativeEntitySystem.GetFirstActiveEntity()); - - while (pFirst != null && pFirst.IsValid) - { - yield return new CEntityInstanceImpl(pFirst.Address.Read()); - pFirst = pFirst.Next; - } + return EntityManager.GetAllEntities(); } public IEnumerable GetAllEntitiesByClass() where T : class, ISchemaClass { - ThrowIfEntitySystemInvalid(); - return string.IsNullOrWhiteSpace(T.ClassName) - ? throw new ArgumentException($"Can't get entities with class {typeof(T).Name}, which doesn't have a designer name") - : GetAllEntities().Where(( entity ) => entity.Entity?.DesignerName == T.ClassName).Select(( entity ) => T.From(entity.Address)); + return GetAllEntities().OfType(); } public IEnumerable GetAllEntitiesByDesignerName( string designerName ) where T : class, ISchemaClass { - ThrowIfEntitySystemInvalid(); return GetAllEntities() .Where(entity => entity.Entity?.DesignerName == designerName) - .Select(entity => T.From(entity.Address)); + .Select(entity => (entity as T)!); } public T? GetEntityByIndex( uint index ) where T : class, ISchemaClass { - ThrowIfEntitySystemInvalid(); - var handle = NativeEntitySystem.GetEntityByIndex(index); - return handle == nint.Zero ? null : T.From(handle); + var ent = GetEntityByIndex(index); + if (ent is null) + { + return null; + } + + return ent is T e + ? e + : throw new InvalidOperationException($"Invalid entity type. Requested: {typeof(T).Name}, Actual: {ent!.GetType().Name}."); } - [Obsolete("Use HookEntityOutput(string outputName, Action callback) instead.")] - public Guid HookEntityOutput( string outputName, IEntitySystemService.EntityOutputHandler callback ) where T : class, ISchemaClass + public CEntityInstance? GetEntityByIndex( uint index ) { - var hook = new EntityOutputHookCallback(T.ClassName ?? throw new ArgumentException($"Can't hook entity output with class {typeof(T).Name}, which doesn't have a designer name"), outputName, callback, loggerFactory, profiler); - _ = outputCallbacks.TryAdd(hook.Guid, hook); - return hook.Guid; + return EntityManager.GetEntityByIndex(index); } public Guid HookEntityOutput( string outputName, IEntitySystemService.EntityOutputEventHandler callback ) where T : class, ISchemaClass @@ -242,12 +232,7 @@ void handler( IOnEntityIdentityAcceptInputHookEvent @event ) public bool UnhookEntityOutput( Guid guid ) { - if (outputCallbacks.TryRemove(guid, out var callback)) - { - callback.Dispose(); - return true; - } - else if (outputHooks.TryRemove(guid, out var handler)) + if (outputHooks.TryRemove(guid, out var handler)) { eventSubscriber.OnEntityFireOutputHook -= handler; return true; @@ -273,12 +258,6 @@ public void Dispose() } disposed = true; - foreach (var callback in outputCallbacks.Values) - { - callback.Dispose(); - } - outputCallbacks.Clear(); - foreach (var handler in outputHooks.Values) { eventSubscriber.OnEntityFireOutputHook -= handler; @@ -294,6 +273,28 @@ public void Dispose() GC.SuppressFinalize(this); } + public T? GetEntityByAddress( nint address ) where T : class, ISchemaClass + { + var ent = GetEntityByAddress(address); + if (ent is null) + { + return null; + } + if (ent is T e) + { + return e; + } + else + { + throw new InvalidOperationException($"Invalid entity type. Requested: {typeof(T).Name}, Actual: {ent!.GetType().Name}."); + } + } + + public CEntityInstance? GetEntityByAddress( nint address ) + { + return EntityManager.GetEntityByAddress(address); + } + ~EntitySystemService() { Dispose(); diff --git a/managed/src/SwiftlyS2.Core/Modules/Events/EventParams/OnClientVoiceEvent.cs b/managed/src/SwiftlyS2.Core/Modules/Events/EventParams/OnClientVoiceEvent.cs new file mode 100644 index 000000000..a3dd9ee06 --- /dev/null +++ b/managed/src/SwiftlyS2.Core/Modules/Events/EventParams/OnClientVoiceEvent.cs @@ -0,0 +1,9 @@ +using SwiftlyS2.Shared.Events; + +namespace SwiftlyS2.Core.Events; + + +internal class OnClientVoiceEvent : IOnClientVoiceEvent +{ + public int PlayerId { get; set; } +} diff --git a/managed/src/SwiftlyS2.Core/Modules/Events/EventParams/OnEntityTouchHookEvent.cs b/managed/src/SwiftlyS2.Core/Modules/Events/EventParams/OnEntityTouchHookEvent.cs index b20a4eb9e..1ecb500bb 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Events/EventParams/OnEntityTouchHookEvent.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Events/EventParams/OnEntityTouchHookEvent.cs @@ -3,16 +3,6 @@ namespace SwiftlyS2.Core.Events; -[Obsolete("OnEntityTouchHookEvent is deprecated. Use OnEntityStartTouchEvent, OnEntityTouchEvent, or OnEntityEndTouchEvent instead.")] -internal class OnEntityTouchHookEvent : IOnEntityTouchHookEvent -{ - public required CBaseEntity Entity { get; init; } - - public required CBaseEntity OtherEntity { get; init; } - - public required EntityTouchType TouchType { get; init; } -} - internal class OnEntityStartTouchEvent : IOnEntityStartTouchEvent { public required CBaseEntity Entity { get; init; } diff --git a/managed/src/SwiftlyS2.Core/Modules/Events/EventParams/OnWeaponServicesDropWeaponHook.cs b/managed/src/SwiftlyS2.Core/Modules/Events/EventParams/OnWeaponServicesDropWeaponHook.cs new file mode 100644 index 000000000..a3bf0bbd1 --- /dev/null +++ b/managed/src/SwiftlyS2.Core/Modules/Events/EventParams/OnWeaponServicesDropWeaponHook.cs @@ -0,0 +1,16 @@ +using SwiftlyS2.Shared.Events; +using SwiftlyS2.Shared.Misc; +using SwiftlyS2.Shared.SchemaDefinitions; + +namespace SwiftlyS2.Core.Events; + +internal class OnWeaponServicesDropWeaponHook : IOnWeaponServicesDropWeaponHook +{ + + public required CCSPlayer_WeaponServices WeaponServices { get; set; } + + public required CBasePlayerWeapon? Weapon { get; set; } + + public required bool SwappingWeapon { get; set; } + public required HookResult Result { get; set; } = HookResult.Continue; +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Core/Modules/Events/EventPublisher.cs b/managed/src/SwiftlyS2.Core/Modules/Events/EventPublisher.cs index e1ac9875c..c19e3dad7 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Events/EventPublisher.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Events/EventPublisher.cs @@ -6,14 +6,14 @@ using SwiftlyS2.Core.Scheduler; using SwiftlyS2.Core.SchemaDefinitions; using SwiftlyS2.Core.ProtobufDefinitions; -using SwiftlyS2.Shared.SchemaDefinitions; using SwiftlyS2.Shared.ProtobufDefinitions; +using SwiftlyS2.Core.Players; +using SwiftlyS2.Core.EntitySystem; namespace SwiftlyS2.Core.Events; internal static class EventPublisher { - internal static event Action? InternalOnMapLoad; private static readonly List subscribers = []; private static readonly Lock subscribersLock = new(); @@ -55,6 +55,7 @@ public static void Register() NativeEvents.RegisterOnEntityTakeDamageCallback((nint)(delegate* unmanaged< nint, nint, nint, byte >)&OnEntityTakeDamage); NativeEvents.RegisterOnPrecacheResourceCallback((nint)(delegate* unmanaged< nint, void >)&OnPrecacheResource); NativeEvents.RegisterOnStartupServerCallback((nint)(delegate* unmanaged< void >)&OnStartupServer); + NativeEvents.RegisterOnClientVoiceCallback((nint)(delegate* unmanaged< int, void >)&OnClientVoice); _ = NativeConvars.AddConvarCreatedListener((nint)(delegate* unmanaged< nint, void >)&OnConVarCreated); _ = NativeConvars.AddConCommandCreatedListener((nint)(delegate* unmanaged< nint, void >)&OnConCommandCreated); _ = NativeConvars.AddGlobalChangeListener((nint)(delegate* unmanaged< nint, int, nint, nint, void >)&OnConVarValueChanged); @@ -203,6 +204,7 @@ public static void OnPreworldUpdate( byte simulating ) [UnmanagedCallersOnly] public static byte OnClientConnected( int playerId ) { + PlayerManagerService.RegisterPlayerObject(playerId); if (subscribers.Count == 0) { return 1; @@ -222,6 +224,7 @@ public static byte OnClientConnected( int playerId ) if (@event.Result == HookResult.Stop) { + PlayerManagerService.UnregisterPlayerObject(playerId); return 0; } } @@ -257,13 +260,19 @@ public static void OnClientDisconnected( int playerId, int reason ) { subscriber.InvokeOnClientDisconnected(@event); } + + PlayerManagerService.UnregisterPlayerObject(playerId); + } catch (Exception e) { if (!GlobalExceptionHandler.Handle(e)) { + PlayerManagerService.UnregisterPlayerObject(playerId); return; } + + PlayerManagerService.UnregisterPlayerObject(playerId); AnsiConsole.WriteException(e); } } @@ -306,6 +315,8 @@ public static void OnClientPutInServer( int playerId, int clientKind ) return; } + if (clientKind == (int)ClientKind.Bot) PlayerManagerService.RegisterPlayerObject(playerId); + try { OnClientPutInServerEvent @event = new() { @@ -382,6 +393,7 @@ public static void OnClientSteamAuthorizeFail( int playerId ) [UnmanagedCallersOnly] public static void OnEntityCreated( nint entityPtr ) { + var entity = EntityManager.OnEntityCreated(entityPtr); if (subscribers.Count == 0) { return; @@ -389,7 +401,7 @@ public static void OnEntityCreated( nint entityPtr ) try { - OnEntityCreatedEvent @event = new() { Entity = new CEntityInstanceImpl(entityPtr) }; + OnEntityCreatedEvent @event = new() { Entity = entity }; foreach (var subscriber in subscribers) { subscriber.InvokeOnEntityCreated(@event); @@ -410,12 +422,15 @@ public static void OnEntityDeleted( nint entityPtr ) { if (subscribers.Count == 0) { + EntityManager.OnEntityDeleted(entityPtr); return; } + var entity = EntityManager.GetEntityByAddress(entityPtr); + try { - OnEntityDeletedEvent @event = new() { Entity = new CEntityInstanceImpl(entityPtr) }; + OnEntityDeletedEvent @event = new() { Entity = entity! }; foreach (var subscriber in subscribers) { subscriber.InvokeOnEntityDeleted(@event); @@ -429,6 +444,10 @@ public static void OnEntityDeleted( nint entityPtr ) } AnsiConsole.WriteException(e); } + finally + { + EntityManager.OnEntityDeleted(entityPtr); + } } [UnmanagedCallersOnly] @@ -496,7 +515,11 @@ public static void OnMapLoad( nint mapNamePtr ) try { - InternalOnMapLoad?.Invoke(); // calls before all plugins. + OnMapLoadEvent @event = new() { MapName = Marshal.PtrToStringUTF8(mapNamePtr) ?? string.Empty }; + foreach (var subscriber in subscribers) + { + subscriber.InvokeOnMapLoad(@event); + } } catch (Exception e) { @@ -506,13 +529,22 @@ public static void OnMapLoad( nint mapNamePtr ) } AnsiConsole.WriteException(e); } + } + + [UnmanagedCallersOnly] + public static void OnClientVoice( int playerId ) + { + if (subscribers.Count == 0) + { + return; + } try { - OnMapLoadEvent @event = new() { MapName = Marshal.PtrToStringUTF8(mapNamePtr) ?? string.Empty }; + OnClientVoiceEvent @event = new() { PlayerId = playerId }; foreach (var subscriber in subscribers) { - subscriber.InvokeOnMapLoad(@event); + subscriber.InvokeOnClientVoice(@event); } } catch (Exception e) @@ -689,31 +721,6 @@ public static void OnStartupServer() } } - [Obsolete("InvokeOnEntityTouchHook is deprecated. Use InvokeOnEntityStartTouch, InvokeOnEntityTouch, or InvokeOnEntityEndTouch instead.")] - public static void InvokeOnEntityTouchHook( OnEntityTouchHookEvent @event ) - { - if (subscribers.Count == 0) - { - return; - } - - try - { - foreach (var subscriber in subscribers) - { - subscriber.InvokeOnEntityTouchHook(@event); - } - } - catch (Exception e) - { - if (!GlobalExceptionHandler.Handle(e)) - { - return; - } - AnsiConsole.WriteException(e); - } - } - public static void InvokeOnEntityStartTouch( OnEntityStartTouchEvent @event ) { if (subscribers.Count == 0) @@ -984,6 +991,30 @@ public static void InvokeOnEntityIdentityAcceptInputHook( OnEntityIdentityAccept } } + public static void InvokeOnWeaponServicesDropWeaponHook( OnWeaponServicesDropWeaponHook @event ) + { + if (subscribers.Count == 0) + { + return; + } + + try + { + foreach (var subscriber in subscribers) + { + subscriber.InvokeOnWeaponServicesDropWeaponHook(@event); + } + } + catch (Exception e) + { + if (!GlobalExceptionHandler.Handle(e)) + { + return; + } + AnsiConsole.WriteException(e); + } + } + public static void InvokeEntityFireOutputHook( OnEntityFireOutputHookEvent @event ) { if (subscribers.Count == 0) diff --git a/managed/src/SwiftlyS2.Core/Modules/Events/EventSubscriber.cs b/managed/src/SwiftlyS2.Core/Modules/Events/EventSubscriber.cs index 5fef525cd..b2a52fd32 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Events/EventSubscriber.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Events/EventSubscriber.cs @@ -49,12 +49,12 @@ public EventSubscriber( IContextedProfilerService profiler, ILogger FindFileAbsoluteList( string wildcard, string pathId ) { - List results = new(); + List results = []; ManagedCUtlVector files = new(); - unsafe { - fixed (void* filesPtr = &files.Value) { + unsafe + { + fixed (void* filesPtr = &files.Value) + { NativeFileSystem.FindFileAbsoluteList(new IntPtr(filesPtr), wildcard, pathId); } diff --git a/managed/src/SwiftlyS2.Core/Modules/Game/GameService.cs b/managed/src/SwiftlyS2.Core/Modules/Game/GameService.cs index 4b036787a..cd9abb77b 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Game/GameService.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Game/GameService.cs @@ -192,17 +192,9 @@ public unsafe int GetWinningTeam() } } - if (match->TerroristScoreTotal > match->CTScoreTotal) - { - return (int)Team.T; - } - - if (match->TerroristScoreTotal < match->CTScoreTotal) - { - return (int)Team.CT; - } - - return (int)Team.None; + return match->TerroristScoreTotal > match->CTScoreTotal + ? (int)Team.T + : match->TerroristScoreTotal < match->CTScoreTotal ? (int)Team.CT : (int)Team.None; } private unsafe void UpdateTeamScores() @@ -221,6 +213,8 @@ private unsafe void UpdateTeamScores() case (int)Team.CT: UpdateTeamEntity(team, match->CTScoreTotal, match->CTScoreFirstHalf, match->CTScoreSecondHalf, match->CTScoreOvertime); break; + default: + break; } } } @@ -228,11 +222,7 @@ private unsafe void UpdateTeamScores() private CCSGameRules GetGameRules() { var gameRules = entitySystemService.GetGameRules(); - if (gameRules?.IsValid ?? false) - { - return gameRules; - } - throw new InvalidOperationException("GameRules not found"); + return gameRules?.IsValid ?? false ? gameRules : throw new InvalidOperationException("GameRules not found"); } private unsafe CCSMatch* GetCCSMatchPtr() diff --git a/managed/src/SwiftlyS2.Core/Modules/GameData/GameDataService.cs b/managed/src/SwiftlyS2.Core/Modules/GameData/GameDataService.cs index e05cafd10..bd400eb4c 100644 --- a/managed/src/SwiftlyS2.Core/Modules/GameData/GameDataService.cs +++ b/managed/src/SwiftlyS2.Core/Modules/GameData/GameDataService.cs @@ -17,185 +17,137 @@ internal record Patch( string signature, string windows, string linux ); internal class GameDataService : IGameDataService { - private CoreContext _Context { get; init; } + private CoreContext _Context { get; init; } - private ConcurrentDictionary _Signatures = new(); - private ConcurrentDictionary _Offsets = new(); - private ConcurrentDictionary _Patches = new(); + private ConcurrentDictionary _Signatures = []; + private ConcurrentDictionary _Offsets = []; + private ConcurrentDictionary _Patches = []; - private static OSPlatform _Platform = RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? OSPlatform.Windows : OSPlatform.Linux; + private static readonly OSPlatform _Platform = RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? OSPlatform.Windows : OSPlatform.Linux; - public GameDataService( CoreContext context, MemoryService memoryService, ILogger logger ) - { - _Context = context; - - var signaturePath = Path.Combine(_Context.BaseDirectory, "resources", "gamedata", "signatures.jsonc"); - var offsetPath = Path.Combine(_Context.BaseDirectory, "resources", "gamedata", "offsets.jsonc"); - var patchPath = Path.Combine(_Context.BaseDirectory, "resources", "gamedata", "patches.jsonc"); + public GameDataService( CoreContext context, MemoryService memoryService, ILogger logger ) + { + _Context = context; - var options = new JsonSerializerOptions() { - AllowTrailingCommas = true, - ReadCommentHandling = JsonCommentHandling.Skip, - }; + var signaturePath = Path.Combine(_Context.BaseDirectory, "resources", "gamedata", "signatures.jsonc"); + var offsetPath = Path.Combine(_Context.BaseDirectory, "resources", "gamedata", "offsets.jsonc"); + var patchPath = Path.Combine(_Context.BaseDirectory, "resources", "gamedata", "patches.jsonc"); - try - { + var options = new JsonSerializerOptions() { + AllowTrailingCommas = true, + ReadCommentHandling = JsonCommentHandling.Skip, + }; - if (File.Exists(signaturePath)) - { - var signatures = JsonSerializer.Deserialize>(File.ReadAllText(signaturePath), options)!; - foreach (var signature in signatures) + try { - nint? value = null; - if (_Platform == OSPlatform.Windows) - { - value = memoryService.GetAddressBySignature(signature.Value.lib, signature.Value.windows); - } - else - { - value = memoryService.GetAddressBySignature(signature.Value.lib, signature.Value.linux); - } - if (value is null) - { - logger.LogError("Failed to load signature {Signature}!", signature.Key); - continue; - } - _Signatures.TryAdd(signature.Key, value.Value); - } - } - if (File.Exists(offsetPath)) - { - var offsets = JsonSerializer.Deserialize>(File.ReadAllText(offsetPath), options)!; - foreach (var offset in offsets) - { - if (_Platform == OSPlatform.Windows) - { - _Offsets.TryAdd(offset.Key, offset.Value.windows); - } - else - { - _Offsets.TryAdd(offset.Key, offset.Value.linux); - } - } - } + if (File.Exists(signaturePath)) + { + var signatures = JsonSerializer.Deserialize>(File.ReadAllText(signaturePath), options)!; + foreach (var signature in signatures) + { + var value = memoryService.GetAddressBySignature(signature.Value.lib, _Platform == OSPlatform.Windows ? signature.Value.windows : signature.Value.linux); + if (value is null) + { + logger.LogError("Failed to load signature {Signature}!", signature.Key); + continue; + } + _ = _Signatures.TryAdd(signature.Key, value.Value); + } + } + + if (File.Exists(offsetPath)) + { + var offsets = JsonSerializer.Deserialize>(File.ReadAllText(offsetPath), options)!; + foreach (var offset in offsets) + { + _ = _Offsets.TryAdd(offset.Key, _Platform == OSPlatform.Windows ? offset.Value.windows : offset.Value.linux); + } + } + + if (File.Exists(patchPath)) + { + var patches = JsonSerializer.Deserialize>(File.ReadAllText(patchPath), options)!; + foreach (var patch in patches) + { + _ = _Patches.TryAdd(patch.Key, patch.Value); + } + } - if (File.Exists(patchPath)) - { - var patches = JsonSerializer.Deserialize>(File.ReadAllText(patchPath), options)!; - foreach (var patch in patches) + } + catch (Exception e) { - _Patches.TryAdd(patch.Key, patch.Value); + if (!GlobalExceptionHandler.Handle(e)) return; + logger.LogError(e, "Failed to load game data."); } - } - - } - catch (Exception e) - { - if (!GlobalExceptionHandler.Handle(e)) return; - logger.LogError(e, "Failed to load game data."); } - } - public bool HasSignature( string signatureName ) - { - if (_Signatures.ContainsKey(signatureName)) + public bool HasSignature( string signatureName ) { - return true; + return _Signatures.ContainsKey(signatureName) || NativeSignatures.Exists(signatureName); } - return NativeSignatures.Exists(signatureName); - } - - public nint GetSignature( string signatureName ) - { - if (_Signatures.TryGetValue(signatureName, out var signature)) + public nint GetSignature( string signatureName ) { - return signature; + return _Signatures.TryGetValue(signatureName, out var signature) ? signature : NativeSignatures.Fetch(signatureName); } - return NativeSignatures.Fetch(signatureName); - } - public bool TryGetSignature( string signatureName, out nint signature ) - { - if (_Signatures.TryGetValue(signatureName, out var _signature)) + public bool TryGetSignature( string signatureName, out nint signature ) { - signature = _signature; - return true; + if (_Signatures.TryGetValue(signatureName, out var _signature)) + { + signature = _signature; + return true; + } + signature = NativeSignatures.Fetch(signatureName); + return signature != nint.Zero; } - signature = NativeSignatures.Fetch(signatureName); - return signature != nint.Zero; - } - public bool HasOffset( string offsetName ) - { - if (_Offsets.ContainsKey(offsetName)) + public bool HasOffset( string offsetName ) { - return true; + return _Offsets.ContainsKey(offsetName) || NativeOffsets.Exists(offsetName); } - return NativeOffsets.Exists(offsetName); - } - - public int GetOffset( string offsetName ) - { - if (_Offsets.TryGetValue(offsetName, out var offset)) + public int GetOffset( string offsetName ) { - return offset; + return _Offsets.TryGetValue(offsetName, out var offset) ? offset : NativeOffsets.Fetch(offsetName); } - return NativeOffsets.Fetch(offsetName); - } - public bool TryGetOffset( string offsetName, out nint offset ) - { - if (_Offsets.TryGetValue(offsetName, out var _offset)) + public bool TryGetOffset( string offsetName, out nint offset ) { - offset = _offset; - return true; + if (_Offsets.TryGetValue(offsetName, out var _offset)) + { + offset = _offset; + return true; + } + offset = NativeOffsets.Fetch(offsetName); + return offset != nint.Zero; } - offset = NativeOffsets.Fetch(offsetName); - return offset != nint.Zero; - } - public bool HasPatch( string patchName ) - { - if (_Patches.ContainsKey(patchName)) + public bool HasPatch( string patchName ) { - return true; + return _Patches.ContainsKey(patchName) || NativePatches.Exists(patchName); } - return NativePatches.Exists(patchName); - } - public void ApplyPatch( string patchName ) - { - if (_Patches.TryGetValue(patchName, out var patch)) + public void ApplyPatch( string patchName ) { - nint address = GetSignature(patch.signature); - if (address == nint.Zero) - { - throw new Exception($"Failed to apply patch {patchName}, cannot find signature {patch.signature}."); - } - - byte[] bytes; - - if (_Platform == OSPlatform.Windows) - { - bytes = patch.windows - .Split(' ', StringSplitOptions.RemoveEmptyEntries) - .Select(x => byte.Parse(x, NumberStyles.HexNumber, CultureInfo.InvariantCulture)) - .ToArray(); - } - else - { - bytes = patch.linux - .Split(' ', StringSplitOptions.RemoveEmptyEntries) - .Select(x => byte.Parse(x, NumberStyles.HexNumber, CultureInfo.InvariantCulture)) - .ToArray(); - } - MemoryPatch.SetMemAccess(address, bytes.Length); - address.CopyFrom(bytes); - return; + if (_Patches.TryGetValue(patchName, out var patch)) + { + var address = GetSignature(patch.signature); + if (address == nint.Zero) + { + throw new Exception($"Failed to apply patch {patchName}, cannot find signature {patch.signature}."); + } + + var bytes = (_Platform == OSPlatform.Windows ? patch.windows : patch.linux) + .Split(' ', StringSplitOptions.RemoveEmptyEntries) + .Select(x => byte.Parse(x, NumberStyles.HexNumber, CultureInfo.InvariantCulture)) + .ToArray(); + + _ = MemoryPatch.SetMemAccess(address, bytes.Length); + address.CopyFrom(bytes); + return; + } + NativePatches.Apply(patchName); } - NativePatches.Apply(patchName); - } } diff --git a/managed/src/SwiftlyS2.Core/Modules/GameEvents/GameEventAccessor.cs b/managed/src/SwiftlyS2.Core/Modules/GameEvents/GameEventAccessor.cs index c78173c7f..085e23a24 100644 --- a/managed/src/SwiftlyS2.Core/Modules/GameEvents/GameEventAccessor.cs +++ b/managed/src/SwiftlyS2.Core/Modules/GameEvents/GameEventAccessor.cs @@ -26,6 +26,7 @@ public void Dispose() private void CheckIsValid() { if (!_IsValid) throw new InvalidOperationException("The event is already disposed."); + if (Address == 0) throw new InvalidOperationException("The event is invalid."); } public void SetBool( string key, bool value ) @@ -141,7 +142,7 @@ public CCSPlayerPawn GetPlayerPawn( string key ) CheckIsValid(); var playerid = GetInt32(key); - return !NativePlayerManager.IsPlayerOnline(playerid) ? null : PlayerManagerService.PlayerObjects[playerid]; + return PlayerManagerService.PlayerObjects.TryGetValue(playerid, out var player) ? player : null; } public void SetPtr( string key, nint value ) diff --git a/managed/src/SwiftlyS2.Core/Modules/GameEvents/GameEventCallback.cs b/managed/src/SwiftlyS2.Core/Modules/GameEvents/GameEventCallback.cs index ec5351ccc..f34af9ff2 100644 --- a/managed/src/SwiftlyS2.Core/Modules/GameEvents/GameEventCallback.cs +++ b/managed/src/SwiftlyS2.Core/Modules/GameEvents/GameEventCallback.cs @@ -15,99 +15,97 @@ namespace SwiftlyS2.Core.GameEvents; internal abstract class GameEventCallback : IEquatable, IDisposable { - public Guid Guid { get; init; } + public Guid Guid { get; init; } - public string EventName { get; init; } = ""; + public string EventName { get; init; } = ""; - public Type EventType { get; init; } = typeof(object); + public Type EventType { get; init; } = typeof(object); - public bool IsPreHook { get; init; } + public bool IsPreHook { get; init; } - public nint UnmanagedWrapperPtr { get; init; } + public nint UnmanagedWrapperPtr { get; init; } - public ulong ListenerId { get; init; } + public ulong ListenerId { get; init; } - public IContextedProfilerService Profiler { get; } + public IContextedProfilerService Profiler { get; } - public ILoggerFactory LoggerFactory { get; } + public ILoggerFactory LoggerFactory { get; } - public CoreContext Context { get; } + public CoreContext Context { get; } - protected GameEventCallback( ILoggerFactory loggerFactory, IContextedProfilerService profiler, CoreContext context ) - { - LoggerFactory = loggerFactory; - Profiler = profiler; - Context = context; - } + protected GameEventCallback( ILoggerFactory loggerFactory, IContextedProfilerService profiler, CoreContext context ) + { + LoggerFactory = loggerFactory; + Profiler = profiler; + Context = context; + } + + public void Dispose() + { + if (IsPreHook) + { + NativeGameEvents.RemoveListenerPreCallback(ListenerId); + } + else + { + NativeGameEvents.RemoveListenerPostCallback(ListenerId); + } + } - public void Dispose() - { - if (IsPreHook) + public bool Equals( GameEventCallback? other ) { - NativeGameEvents.RemoveListenerPreCallback(ListenerId); + return other is not null && Guid == other.Guid; } - else + + public override bool Equals( object? obj ) { - NativeGameEvents.RemoveListenerPostCallback(ListenerId); + return ReferenceEquals(this, obj) || (obj is GameEventCallback other && Equals(other)); + } + + public override int GetHashCode() + { + return Guid.GetHashCode(); } - } - - public bool Equals( GameEventCallback? other ) - { - if (other is null) return false; - return Guid == other.Guid; - } - - public override bool Equals( object? obj ) - { - if (ReferenceEquals(this, obj)) return true; - return obj is GameEventCallback other && Equals(other); - } - - public override int GetHashCode() - { - return Guid.GetHashCode(); - } } internal class GameEventCallback : GameEventCallback, IDisposable where T : IGameEvent { - private IGameEventService.GameEventHandler _callback { get; init; } - private ILogger> _Logger { get; init; } - private UnmanagedEventCallback _unmanagedCallback; - - public GameEventCallback( IGameEventService.GameEventHandler callback, bool pre, ILoggerFactory loggerFactory, IContextedProfilerService profiler, CoreContext context ) : base(loggerFactory, profiler, context) - { - Guid = Guid.NewGuid(); - EventType = typeof(T); - IsPreHook = pre; - EventName = T.GetName(); - _callback = callback; - _Logger = LoggerFactory.CreateLogger>(); - - _unmanagedCallback = ( hash, pEvent, pDontBroadcast ) => + private IGameEventService.GameEventHandler _callback { get; init; } + private ILogger> _Logger { get; init; } + private UnmanagedEventCallback _unmanagedCallback; + + public GameEventCallback( IGameEventService.GameEventHandler callback, bool pre, ILoggerFactory loggerFactory, IContextedProfilerService profiler, CoreContext context ) : base(loggerFactory, profiler, context) { - try - { - if (hash != T.GetHash()) return HookResult.Continue; - var category = "GameEventCallback::" + EventName; - Profiler.StartRecording(category); - var eventObj = T.Create(pEvent); - var result = _callback(eventObj); - pDontBroadcast.Write(eventObj.DontBroadcast); - eventObj.Dispose(); - Profiler.StopRecording(category); - return result; - } - catch (Exception e) - { - if (!GlobalExceptionHandler.Handle(e)) return HookResult.Continue; - _Logger.LogError(e, "Error in event {EventName} callback from context {ContextName}", EventName, Context.Name); - return HookResult.Continue; - } - }; - UnmanagedWrapperPtr = Marshal.GetFunctionPointerForDelegate(_unmanagedCallback); - NativeGameEvents.RegisterListener(EventName); - ListenerId = IsPreHook ? NativeGameEvents.AddListenerPreCallback(UnmanagedWrapperPtr) : NativeGameEvents.AddListenerPostCallback(UnmanagedWrapperPtr); - } + Guid = Guid.NewGuid(); + EventType = typeof(T); + IsPreHook = pre; + EventName = T.GetName(); + _callback = callback; + _Logger = LoggerFactory.CreateLogger>(); + + _unmanagedCallback = ( hash, pEvent, pDontBroadcast ) => + { + try + { + if (hash != T.GetHash()) return HookResult.Continue; + var category = "GameEventCallback::" + EventName; + Profiler.StartRecording(category); + var eventObj = T.Create(pEvent); + var result = _callback(eventObj); + pDontBroadcast.Write(eventObj.DontBroadcast); + eventObj.Dispose(); + Profiler.StopRecording(category); + return result; + } + catch (Exception e) + { + if (!GlobalExceptionHandler.Handle(e)) return HookResult.Continue; + _Logger.LogError(e, "Error in event {EventName} callback from context {ContextName}", EventName, Context.Name); + return HookResult.Continue; + } + }; + UnmanagedWrapperPtr = Marshal.GetFunctionPointerForDelegate(_unmanagedCallback); + NativeGameEvents.RegisterListener(EventName); + ListenerId = IsPreHook ? NativeGameEvents.AddListenerPreCallback(UnmanagedWrapperPtr) : NativeGameEvents.AddListenerPostCallback(UnmanagedWrapperPtr); + } } diff --git a/managed/src/SwiftlyS2.Core/Modules/GameEvents/GameEventService.cs b/managed/src/SwiftlyS2.Core/Modules/GameEvents/GameEventService.cs index 855548029..ac5786822 100644 --- a/managed/src/SwiftlyS2.Core/Modules/GameEvents/GameEventService.cs +++ b/managed/src/SwiftlyS2.Core/Modules/GameEvents/GameEventService.cs @@ -1,11 +1,9 @@ -using System.Reflection; using Microsoft.Extensions.Logging; using SwiftlyS2.Core.Natives; +using SwiftlyS2.Core.Players; using SwiftlyS2.Core.Scheduler; using SwiftlyS2.Core.Services; -using SwiftlyS2.Shared.GameEventDefinitions; using SwiftlyS2.Shared.GameEvents; -using SwiftlyS2.Shared.Misc; using SwiftlyS2.Shared.Profiler; namespace SwiftlyS2.Core.GameEvents; @@ -23,8 +21,8 @@ public GameEventService( ILoggerFactory loggerFactory, CoreContext context, ICon _Profiler = profiler; } - private readonly List _callbacks = new(); - private Lock _lock = new(); + private readonly List _callbacks = []; + private readonly Lock _lock = new(); public Guid HookPre( IGameEventService.GameEventHandler callback ) where T : IGameEvent { @@ -52,7 +50,7 @@ public void Unhook( Guid guid ) { lock (_lock) { - _callbacks.RemoveAll(callback => + _ = _callbacks.RemoveAll(callback => { if (callback.Guid == guid) { @@ -70,7 +68,7 @@ public void UnhookPre() where T : IGameEvent { lock (_lock) { - _callbacks.RemoveAll(callback => + _ = _callbacks.RemoveAll(callback => { if (callback.IsPreHook && callback is GameEventCallback) { @@ -87,7 +85,7 @@ public void UnhookPost() where T : IGameEvent { lock (_lock) { - _callbacks.RemoveAll(callback => + _ = _callbacks.RemoveAll(callback => { if (!callback.IsPreHook && callback is GameEventCallback) { @@ -103,9 +101,9 @@ public void UnhookPost() where T : IGameEvent public void Fire() where T : IGameEvent { var handle = NativeGameEvents.CreateEvent(T.GetName()); - for (int i = 0; i < NativePlayerManager.GetPlayerCap(); i++) + for (var i = 0; i < NativePlayerManager.GetPlayerCap(); i++) { - if (NativeGameEvents.IsPlayerListeningToEventName(i, T.GetName()) && NativePlayerManager.IsPlayerOnline(i)) + if (NativeGameEvents.IsPlayerListeningToEventName(i, T.GetName()) && PlayerManagerService.PlayerObjects.ContainsKey(i)) { NativeGameEvents.FireEventToClient(handle, i); } @@ -120,9 +118,9 @@ public void Fire( Action configureEvent ) where T : IGameEvent var eventObj = T.Create(handle); configureEvent(eventObj); eventObj.Dispose(); - for (int i = 0; i < NativePlayerManager.GetPlayerCap(); i++) + for (var i = 0; i < NativePlayerManager.GetPlayerCap(); i++) { - if (NativeGameEvents.IsPlayerListeningToEventName(i, T.GetName()) && NativePlayerManager.IsPlayerOnline(i)) + if (NativeGameEvents.IsPlayerListeningToEventName(i, T.GetName()) && PlayerManagerService.PlayerObjects.ContainsKey(i)) { NativeGameEvents.FireEventToClient(handle, i); } @@ -138,7 +136,7 @@ public Task FireAsync() where T : IGameEvent public Task FireAsync( Action configureEvent ) where T : IGameEvent { - return SchedulerManager.QueueOrNow(() => Fire(configureEvent)); + return SchedulerManager.QueueOrNow(() => Fire(configureEvent)); } public void FireToPlayer( int slot ) where T : IGameEvent diff --git a/managed/src/SwiftlyS2.Core/Modules/Helpers/Helpers.cs b/managed/src/SwiftlyS2.Core/Modules/Helpers/Helpers.cs index af914bb75..764bd5451 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Helpers/Helpers.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Helpers/Helpers.cs @@ -92,12 +92,8 @@ internal class HelpersService : IHelpers public CCSWeaponBaseVData? GetWeaponCSDataFromKey( int unknown, string key ) { - nint weaponDataPtr = GameFunctions.GetWeaponCSDataFromKey(unknown, key); - if (weaponDataPtr == 0) - { - return null; - } - return new CCSWeaponBaseVDataImpl(weaponDataPtr); + var weaponDataPtr = GameFunctions.GetWeaponCSDataFromKey(unknown, key); + return weaponDataPtr == 0 ? null : (CCSWeaponBaseVData)new CCSWeaponBaseVDataImpl(weaponDataPtr); } public CCSWeaponBaseVData? GetWeaponCSDataFromKey( int itemDefinitionIndex ) diff --git a/managed/src/SwiftlyS2.Core/Modules/Memory/MemoryService.cs b/managed/src/SwiftlyS2.Core/Modules/Memory/MemoryService.cs index 9e5c9b0c7..7be8c28d6 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Memory/MemoryService.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Memory/MemoryService.cs @@ -1,4 +1,3 @@ -using System.Runtime.InteropServices; using Microsoft.Extensions.Logging; using SwiftlyS2.Core.Hooks; using SwiftlyS2.Core.Natives; @@ -14,8 +13,8 @@ internal class MemoryService : IMemoryService, IDisposable private readonly ILogger _Logger; private readonly HookManager _HookManager; private readonly ILoggerFactory _LoggerFactory; - private readonly Dictionary _UnmanagedFunctions = new(); - private readonly Dictionary _UnmanagedMemories = new(); + private readonly Dictionary _UnmanagedFunctions = []; + private readonly Dictionary _UnmanagedMemories = []; public MemoryService( ILogger logger, HookManager hookManager, ILoggerFactory loggerFactory ) { @@ -110,15 +109,17 @@ public IUnmanagedMemory GetUnmanagedMemoryByAddress( nint address ) if (classes.Length == 1) { ptr = NativeMemoryHelpers.GetVirtualTableAddress(library, vtableName); - } + } else if (classes.Length == 2) { ptr = NativeMemoryHelpers.GetVirtualTableAddressNested2(library, classes[0], classes[1]); } - else { + else + { throw new ArgumentException("Vtable has too many nested classes, which is not supported for now."); } - if (ptr == 0) { + if (ptr == 0) + { ptr = null; } return ptr; @@ -151,17 +152,17 @@ public T ToSchemaClass( nint address ) where T : class, ISchemaClass return T.From(address); } - public nint Alloc(ulong size) + public nint Alloc( ulong size ) { return NativeAllocator.Alloc(size); } - public void Free(nint pointer) + public void Free( nint pointer ) { NativeAllocator.Free(pointer); } - public nint Resize(nint pointer, ulong newSize) + public nint Resize( nint pointer, ulong newSize ) { return NativeAllocator.Resize(pointer, newSize); } diff --git a/managed/src/SwiftlyS2.Core/Modules/Memory/UnmanagedFunction.cs b/managed/src/SwiftlyS2.Core/Modules/Memory/UnmanagedFunction.cs index 61b3ade63..850eb4b45 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Memory/UnmanagedFunction.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Memory/UnmanagedFunction.cs @@ -8,93 +8,86 @@ namespace SwiftlyS2.Core.Memory; internal abstract class UnmanagedFunction : NativeHandle, IDisposable { + public UnmanagedFunction( nint address ) : base(address) + { + } - public UnmanagedFunction( nint address ) : base(address) - { - } - - public Type? DelegateType { get; init; } + public Type? DelegateType { get; init; } - public abstract void Dispose(); + public abstract void Dispose(); } internal class UnmanagedFunction : UnmanagedFunction, IUnmanagedFunction, IDisposable where TDelegate : Delegate { - public new nint Address { get; private set; } - - public TDelegate CallOriginal { - get { - if (_HookManager.IsHooked(Address)) - { - var original = _HookManager.GetOriginal(Address); - if (original != nint.Zero) - { - return Marshal.GetDelegateForFunctionPointer(original); + public new nint Address { get; private set; } + + public TDelegate CallOriginal { + get { + if (_HookManager.IsHooked(Address)) + { + var original = _HookManager.GetOriginal(Address); + if (original != nint.Zero) + { + return Marshal.GetDelegateForFunctionPointer(original); + } + } + return Call; } - } - return Call; } - } - - public TDelegate Call { get; private set; } - public List Hooks { get; } = new(); + public TDelegate Call { get; private set; } - private HookManager _HookManager { get; set; } + public List Hooks { get; } = []; - private ILogger> _Logger { get; set; } + private HookManager _HookManager { get; set; } - public UnmanagedFunction( nint address, HookManager hookManager, ILoggerFactory loggerFactory ) : base(address) - { - _Logger = loggerFactory.CreateLogger>(); - _HookManager = hookManager; - DelegateType = typeof(TDelegate); + private ILogger> _Logger { get; set; } - Address = address; + public UnmanagedFunction( nint address, HookManager hookManager, ILoggerFactory loggerFactory ) : base(address) + { + _Logger = loggerFactory.CreateLogger>(); + _HookManager = hookManager; + DelegateType = typeof(TDelegate); - Call = Marshal.GetDelegateForFunctionPointer(address); - } + Address = address; - public Guid AddHook( Func, TDelegate> callbackBuilder ) - { - try - { - var id = _HookManager.AddHook(Address, ( builder ) => callbackBuilder(() => Marshal.GetDelegateForFunctionPointer(builder()))); - Hooks.Add(id); - return id; + Call = Marshal.GetDelegateForFunctionPointer(address); } - catch (Exception e) + + public Guid AddHook( Func, TDelegate> callbackBuilder ) { - if (!GlobalExceptionHandler.Handle(e)) return Guid.Empty; - _Logger.LogError(e, "Failed to add hook to function {0}.", Address); - return Guid.Empty; + try + { + var id = _HookManager.AddHook(Address, ( builder ) => callbackBuilder(() => Marshal.GetDelegateForFunctionPointer(builder()))); + Hooks.Add(id); + return id; + } + catch (Exception e) + { + if (!GlobalExceptionHandler.Handle(e)) return Guid.Empty; + _Logger.LogError(e, "Failed to add hook to function {0}.", Address); + return Guid.Empty; + } } - } - public void RemoveHook( Guid id ) - { - try + public void RemoveHook( Guid id ) { - _HookManager.Remove(new List { id }); - Hooks.Remove(id); + try + { + _HookManager.Remove([id]); + _ = Hooks.Remove(id); + } + catch (Exception e) + { + if (!GlobalExceptionHandler.Handle(e)) return; + _Logger.LogError(e, "Failed to remove hook {0} from function {1}.", id, Address); + } } - catch (Exception e) + + public override void Dispose() { - if (!GlobalExceptionHandler.Handle(e)) return; - _Logger.LogError(e, "Failed to remove hook {0} from function {1}.", id, Address); + _HookManager.Remove(Hooks); + Hooks.Clear(); } - } - - public override void Dispose() - { - _HookManager.Remove(Hooks); - Hooks.Clear(); - } - - - - - - } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Core/Modules/Menus/MenuAPI.cs b/managed/src/SwiftlyS2.Core/Modules/Menus/MenuAPI.cs index 142eee823..ba26e539a 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Menus/MenuAPI.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Menus/MenuAPI.cs @@ -44,17 +44,13 @@ internal sealed class MenuAPI : IMenuAPI, IDisposable /// public IMenuBuilderAPI? Builder { get; init; } - /// - /// Gets or sets the default comment text to use when a menu option's Comment is not set. - /// - [Obsolete("Use Configuration.DefaultComment instead.")] - public string DefaultComment { get; set; } = string.Empty; - /// /// Gets or sets an object that contains data about this menu. /// public object? Tag { get; set; } + private bool WasFrozen { get; set; } = false; + /// /// The parent hierarchy information in a hierarchical menu structure. /// @@ -290,9 +286,11 @@ private void OnRender() { } } - var playerStates = core.PlayerManager - .GetAllPlayers() - .Where(player => player.IsValid && !player.IsFakeClient) + try + { + var playerStates = core.PlayerManager + .GetAllValidPlayers() + .Where(player => !player.IsFakeClient) .Select(player => ( Player: player, DesiredIndex: desiredOptionIndex.TryGetValue(player.PlayerID, out var desired) ? desired : -1, @@ -301,16 +299,18 @@ private void OnRender() .Where(state => state.DesiredIndex >= 0 && state.SelectedIndex >= 0) .ToList(); - var baseMaxVisibleItems = Configuration.MaxVisibleItems < 1 ? core.MenusAPI.Configuration.ItemsPerPage : Configuration.MaxVisibleItems; - var maxVisibleItems = Configuration.AutoIncreaseVisibleItems - ? Math.Clamp(baseMaxVisibleItems + (Configuration.HideTitle ? 1 : 0) + (Configuration.HideFooter ? 1 : 0), 1, 7) - : Math.Clamp(baseMaxVisibleItems, 1, 5); - var halfVisible = maxVisibleItems / 2; + var baseMaxVisibleItems = Configuration.MaxVisibleItems < 1 ? core.MenusAPI.Configuration.ItemsPerPage : Configuration.MaxVisibleItems; + var maxVisibleItems = Configuration.AutoIncreaseVisibleItems + ? Math.Clamp(baseMaxVisibleItems + (Configuration.HideTitle ? 1 : 0) + (Configuration.HideFooter ? 1 : 0), 1, 7) + : Math.Clamp(baseMaxVisibleItems, 1, 5); + var halfVisible = maxVisibleItems / 2; - foreach (var (player, desiredIndex, selectedIndex) in playerStates) - { - ProcessPlayerMenu(player, desiredIndex, selectedIndex, maxOptions, maxVisibleItems, halfVisible); + foreach (var (player, desiredIndex, selectedIndex) in playerStates) + { + ProcessPlayerMenu(player, desiredIndex, selectedIndex, maxOptions, maxVisibleItems, halfVisible); + } } + catch { } } private void ProcessPlayerMenu( IPlayer player, int desiredIndex, int selectedIndex, int maxOptions, int maxVisibleItems, int halfVisible ) @@ -459,9 +459,9 @@ private string BuildMenuHtml( IPlayer player, IReadOnlyList visible "
", guideLine, "
", - Configuration.HideComment + Configuration.HideComment || string.IsNullOrWhiteSpace(Configuration.DefaultComment) ? string.Empty - : string.IsNullOrWhiteSpace(Configuration.DefaultComment) ? $"\u00A0\u00A0\u00A0
" : $"{Configuration.DefaultComment}
" + : $"{Configuration.DefaultComment}
" ); var claimInfo = optionBase?.InputClaimInfo ?? MenuInputClaimInfo.Empty; @@ -602,6 +602,7 @@ public void HideForPlayer( IPlayer player ) { NativePlayer.ClearCenterMenuRender(player.PlayerID); core.Scheduler.NextTick(() => NativePlayer.ClearCenterMenuRender(player.PlayerID)); + _ = core.Scheduler.Delay(5, () => NativePlayer.ClearCenterMenuRender(player.PlayerID)); // Remove viewer, pause animations if no viewers left lock (viewersLock) @@ -765,10 +766,22 @@ private void SetFreezeState( IPlayer player, bool freeze ) core.Scheduler.NextTick(() => { - var moveType = freeze ? MoveType_t.MOVETYPE_NONE : MoveType_t.MOVETYPE_WALK; - player.PlayerPawn.MoveType = moveType; - player.PlayerPawn.ActualMoveType = moveType; - player.PlayerPawn.MoveTypeUpdated(); + if (freeze) + { + var moveType = MoveType_t.MOVETYPE_NONE; + player.PlayerPawn.MoveType = moveType; + player.PlayerPawn.ActualMoveType = moveType; + player.PlayerPawn.MoveTypeUpdated(); + WasFrozen = true; + } + else if (WasFrozen && !freeze) + { + var moveType = MoveType_t.MOVETYPE_WALK; + player.PlayerPawn.MoveType = moveType; + player.PlayerPawn.ActualMoveType = moveType; + player.PlayerPawn.MoveTypeUpdated(); + WasFrozen = false; + } }); } diff --git a/managed/src/SwiftlyS2.Core/Modules/Menus/OptionsBase/MenuOptionBase.cs b/managed/src/SwiftlyS2.Core/Modules/Menus/OptionsBase/MenuOptionBase.cs index 708f5ea39..8a2780e51 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Menus/OptionsBase/MenuOptionBase.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Menus/OptionsBase/MenuOptionBase.cs @@ -29,6 +29,7 @@ public abstract partial class MenuOptionBase : IMenuOption, IDisposable protected MenuOptionBase() { disposed = false; + Comment = ""; } /// @@ -44,16 +45,17 @@ protected MenuOptionBase() protected MenuOptionBase( int updateIntervalMs, int pauseIntervalMs ) { disposed = false; + Comment = ""; if (updateIntervalMs < (int)(1 / 64f * 1000)) { - Spectre.Console.AnsiConsole.WriteException(new ArgumentOutOfRangeException(nameof(updateIntervalMs), + AnsiConsole.WriteException(new ArgumentOutOfRangeException(nameof(updateIntervalMs), $"updateIntervalMs: value {updateIntervalMs} is out of range.")); } if (pauseIntervalMs < (int)(1 / 64f * 1000)) { - Spectre.Console.AnsiConsole.WriteException(new ArgumentOutOfRangeException(nameof(pauseIntervalMs), + AnsiConsole.WriteException(new ArgumentOutOfRangeException(nameof(pauseIntervalMs), $"pauseIntervalMs: value {pauseIntervalMs} is out of range.")); } @@ -241,7 +243,7 @@ public float MaxWidth { if (value < 1f) { - Spectre.Console.AnsiConsole.WriteException(new ArgumentOutOfRangeException(nameof(MaxWidth), + AnsiConsole.WriteException(new ArgumentOutOfRangeException(nameof(MaxWidth), $"MaxWidth: value {value:F3} is out of range.")); } diff --git a/managed/src/SwiftlyS2.Core/Modules/NetMessages/NetMessageService.cs b/managed/src/SwiftlyS2.Core/Modules/NetMessages/NetMessageService.cs index 4a244dd21..0933d0fc8 100644 --- a/managed/src/SwiftlyS2.Core/Modules/NetMessages/NetMessageService.cs +++ b/managed/src/SwiftlyS2.Core/Modules/NetMessages/NetMessageService.cs @@ -1,6 +1,5 @@ using Microsoft.Extensions.Logging; using SwiftlyS2.Core.Natives; -using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; using SwiftlyS2.Shared.Profiler; @@ -10,7 +9,7 @@ namespace SwiftlyS2.Core.NetMessages; internal class NetMessageService : INetMessageService, IDisposable { - private List _callbacks = new(); + private List _callbacks = []; private ILoggerFactory _loggerFactory; private IContextedProfilerService _profiler; private Lock _lock = new(); @@ -56,7 +55,7 @@ public void Unhook( Guid guid ) { lock (_lock) { - _callbacks.RemoveAll(callback => + _ = _callbacks.RemoveAll(callback => { if (callback.Guid == guid) { @@ -72,7 +71,7 @@ public void UnhookClientMessage() where T : ITypedProtobuf, INetMessage { lock (_lock) { - _callbacks.RemoveAll(callback => + _ = _callbacks.RemoveAll(callback => { if (callback is NetMessageClientHookCallback clientHook) { @@ -88,7 +87,7 @@ public void UnhookServerMessage() where T : ITypedProtobuf, INetMessage { lock (_lock) { - _callbacks.RemoveAll(callback => + _ = _callbacks.RemoveAll(callback => { if (callback is NetMessageServerHookCallback serverHook) { @@ -104,7 +103,7 @@ public void UnhookServerMessageInternal() where T : ITypedProtobuf, INetMe { lock (_lock) { - _callbacks.RemoveAll(callback => + _ = _callbacks.RemoveAll(callback => { if (callback is NetMessageServerInternalHookCallback serverInternalHook) { @@ -119,8 +118,9 @@ public void UnhookServerMessageInternal() where T : ITypedProtobuf, INetMe private nint AllocateNetMessage( int msgId ) { var handle = NativeNetMessages.AllocateNetMessageByID(msgId); - if (handle == 0) throw new InvalidOperationException("Failed to allocate net message. This is possibly caused by the message ID is already deprecated not supported in game."); - return handle; + return handle == 0 + ? throw new InvalidOperationException("Failed to allocate net message. This is possibly caused by the message ID is already deprecated not supported in game.") + : handle; } public T Create() where T : ITypedProtobuf, INetMessage, IDisposable diff --git a/managed/src/SwiftlyS2.Core/Modules/Permissions/PermissionManager.cs b/managed/src/SwiftlyS2.Core/Modules/Permissions/PermissionManager.cs index 1bc77d9a9..85569c1fe 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Permissions/PermissionManager.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Permissions/PermissionManager.cs @@ -1,4 +1,3 @@ -using System.Collections.Concurrent; using System.Collections.Immutable; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; @@ -11,267 +10,267 @@ namespace SwiftlyS2.Core.Permissions; internal class PermissionManager : IPermissionManager { - private Dictionary> _playerPermissions = new(); - private Dictionary> _temporaryPlayerPermissions = new(); - private Dictionary> _subPermissions = new(); - private Dictionary> _temporarySubPermissions = new(); - private List _defaultPermissions = new(); - private ImmutableDictionary _queryCache = ImmutableDictionary.Create(); - private object _lock = new(); + private Dictionary> _playerPermissions = []; + private Dictionary> _temporaryPlayerPermissions = []; + private Dictionary> _subPermissions = []; + private Dictionary> _temporarySubPermissions = []; + private List _defaultPermissions = []; + private ImmutableDictionary _queryCache = ImmutableDictionary.Create(); + private object _lock = new(); - public PermissionManager( IOptionsMonitor options, ILogger logger ) - { - LoadPermissions(options.CurrentValue); - - options.OnChange(( config ) => - { - try - { - logger.LogInformation("Permission config changed, reloading..."); - LoadPermissions(config); - logger.LogInformation("Permission config reloaded."); - } - catch (Exception e) - { - if (!GlobalExceptionHandler.Handle(e)) return; - logger.LogError(e, "Error reloading permission config."); - } - }); - } - - private void LoadPermissions( PermissionConfig config ) - { - lock (_lock) + public PermissionManager( IOptionsMonitor options, ILogger logger ) { - _queryCache = _queryCache.Clear(); - _defaultPermissions = config.PermissionGroups.ContainsKey("__default") ? config.PermissionGroups["__default"] : []; - _playerPermissions = config.Players.ToDictionary(x => ulong.Parse(x.Key), x => x.Value); - _subPermissions = config.PermissionGroups; - } - } + LoadPermissions(options.CurrentValue); - private List GetPlayerPermissions( ulong playerId ) - { - List permissions = new(); + _ = options.OnChange(( config ) => + { + try + { + logger.LogInformation("Permission config changed, reloading..."); + LoadPermissions(config); + logger.LogInformation("Permission config reloaded."); + } + catch (Exception e) + { + if (!GlobalExceptionHandler.Handle(e)) return; + logger.LogError(e, "Error reloading permission config."); + } + }); + } - if (_playerPermissions.TryGetValue(playerId, out var playerPermission)) + private void LoadPermissions( PermissionConfig config ) { - permissions.AddRange(playerPermission); + lock (_lock) + { + _queryCache = _queryCache.Clear(); + _defaultPermissions = config.PermissionGroups.ContainsKey("__default") ? config.PermissionGroups["__default"] : []; + _playerPermissions = config.Players.ToDictionary(x => ulong.Parse(x.Key), x => x.Value); + _subPermissions = config.PermissionGroups; + } } - if (_temporaryPlayerPermissions.TryGetValue(playerId, out var temporaryPermissions)) + private List GetPlayerPermissions( ulong playerId ) { - permissions.AddRange(temporaryPermissions); - } + List permissions = []; - permissions.AddRange(_defaultPermissions); + if (_playerPermissions.TryGetValue(playerId, out var playerPermission)) + { + permissions.AddRange(playerPermission); + } - return permissions; - } + if (_temporaryPlayerPermissions.TryGetValue(playerId, out var temporaryPermissions)) + { + permissions.AddRange(temporaryPermissions); + } - private Dictionary> GetSubPermissions() - { - var result = new Dictionary>(); + permissions.AddRange(_defaultPermissions); - foreach (var kvp in _subPermissions) - { - result[kvp.Key] = [.. kvp.Value]; + return permissions; } - foreach (var kvp in _temporarySubPermissions) + private Dictionary> GetSubPermissions() { - if (result.TryGetValue(kvp.Key, out var existingPermissions)) - { - var permissionSet = new HashSet(existingPermissions); - foreach (var perm in kvp.Value) + var result = new Dictionary>(); + + foreach (var kvp in _subPermissions) { - permissionSet.Add(perm); + result[kvp.Key] = [.. kvp.Value]; } - result[kvp.Key] = permissionSet.ToList(); - } - else - { - result[kvp.Key] = [.. kvp.Value]; - } - } - return result; - } + foreach (var kvp in _temporarySubPermissions) + { + if (result.TryGetValue(kvp.Key, out var existingPermissions)) + { + var permissionSet = new HashSet(existingPermissions); + foreach (var perm in kvp.Value) + { + _ = permissionSet.Add(perm); + } + result[kvp.Key] = permissionSet.ToList(); + } + else + { + result[kvp.Key] = [.. kvp.Value]; + } + } - private bool IsEqual( string from, string target ) - { - if (from == "*") - { - return true; + return result; } - if (!from.Contains("*")) - { - return string.Equals(from, target, StringComparison.OrdinalIgnoreCase); - } - - var prefix = from[..^2]; - return target.StartsWith(prefix, StringComparison.OrdinalIgnoreCase); - } - private bool HasNestedPermission( string rootPermission, string targetPermission, HashSet visitedPermissions ) - { - if (visitedPermissions.Contains(rootPermission)) + private bool IsEqual( string from, string target ) { - AnsiConsole.WriteLine("Loop detected for permission: " + rootPermission); - return false; - } - - visitedPermissions.Add(rootPermission); + if (from == "*") + { + return true; + } + if (!from.Contains("*")) + { + return string.Equals(from, target, StringComparison.OrdinalIgnoreCase); + } - if (IsEqual(rootPermission, targetPermission)) - { - return true; + var prefix = from[..^2]; + return target.StartsWith(prefix, StringComparison.OrdinalIgnoreCase); } - if (GetSubPermissions().TryGetValue(rootPermission, out var subPermissions)) + private bool HasNestedPermission( string rootPermission, string targetPermission, HashSet visitedPermissions ) { - foreach (var subPermission in subPermissions) - { - if (HasNestedPermission(subPermission, targetPermission, visitedPermissions)) + if (visitedPermissions.Contains(rootPermission)) { - return true; + AnsiConsole.WriteLine("Loop detected for permission: " + rootPermission); + return false; } - } - } - return false; - } + _ = visitedPermissions.Add(rootPermission); - public bool PlayerHasPermissions( ulong playerId, IEnumerable permissions ) - { - foreach (var permission in permissions) - { - if (!PlayerHasPermission(playerId, permission)) - { - return false; - } - } + if (IsEqual(rootPermission, targetPermission)) + { + return true; + } - return true; - } + if (GetSubPermissions().TryGetValue(rootPermission, out var subPermissions)) + { + foreach (var subPermission in subPermissions) + { + if (HasNestedPermission(subPermission, targetPermission, visitedPermissions)) + { + return true; + } + } + } - public bool PlayerHasPermission( ulong playerId, string permission ) - { - var key = new PermissionCacheKey { PlayerId = playerId, Permission = permission }; - if (_queryCache.TryGetValue(key, out var result)) - { - return result; + return false; } - lock (_lock) + public bool PlayerHasPermissions( ulong playerId, IEnumerable permissions ) { - var permissions = GetPlayerPermissions(playerId); - - if (permissions.Count == 0) - { - _queryCache = _queryCache.Add(key, false); - return false; - } + foreach (var permission in permissions) + { + if (!PlayerHasPermission(playerId, permission)) + { + return false; + } + } - if (permissions.Any(p => IsEqual(p, permission))) - { - _queryCache = _queryCache.Add(key, true); return true; - } + } - foreach (var perm in permissions) - { - if (HasNestedPermission(perm, permission, new HashSet())) + public bool PlayerHasPermission( ulong playerId, string permission ) + { + var key = new PermissionCacheKey { PlayerId = playerId, Permission = permission }; + if (_queryCache.TryGetValue(key, out var result)) { - _queryCache = _queryCache.Add(key, true); - return true; + return result; } - } - _queryCache = _queryCache.Add(key, false); - return false; - } + lock (_lock) + { + var permissions = GetPlayerPermissions(playerId); + + if (permissions.Count == 0) + { + _queryCache = _queryCache.Add(key, false); + return false; + } + + if (permissions.Any(p => IsEqual(p, permission))) + { + _queryCache = _queryCache.Add(key, true); + return true; + } + + foreach (var perm in permissions) + { + if (HasNestedPermission(perm, permission, [])) + { + _queryCache = _queryCache.Add(key, true); + return true; + } + } + + _queryCache = _queryCache.Add(key, false); + return false; + } - } + } - public void AddPermission( ulong playerId, string permission ) - { - lock (_lock) + public void AddPermission( ulong playerId, string permission ) { - if (_temporaryPlayerPermissions.TryGetValue(playerId, out var permissions)) - { - if (!permissions.Contains(permission)) + lock (_lock) { - permissions.Add(permission); + if (_temporaryPlayerPermissions.TryGetValue(playerId, out var permissions)) + { + if (!permissions.Contains(permission)) + { + permissions.Add(permission); + } + } + else + { + _temporaryPlayerPermissions[playerId] = [permission]; + } + + _queryCache = _queryCache.Clear(); } - } - else - { - _temporaryPlayerPermissions[playerId] = [permission]; - } - - _queryCache = _queryCache.Clear(); } - } - public void RemovePermission( ulong playerId, string permission ) - { - lock (_lock) + public void RemovePermission( ulong playerId, string permission ) { - if (_temporaryPlayerPermissions.TryGetValue(playerId, out var permissions)) - { - if (permissions.Contains(permission)) + lock (_lock) { - permissions.Remove(permission); + if (_temporaryPlayerPermissions.TryGetValue(playerId, out var permissions)) + { + if (permissions.Contains(permission)) + { + _ = permissions.Remove(permission); + } + } } - } - } - _queryCache = _queryCache.Clear(); - } + _queryCache = _queryCache.Clear(); + } - public void AddSubPermission( string permission, string subPermission ) - { - lock (_lock) + public void AddSubPermission( string permission, string subPermission ) { - if (_temporarySubPermissions.TryGetValue(permission, out var subPermissions)) - { - if (!subPermissions.Contains(subPermission)) + lock (_lock) { - subPermissions.Add(subPermission); + if (_temporarySubPermissions.TryGetValue(permission, out var subPermissions)) + { + if (!subPermissions.Contains(subPermission)) + { + subPermissions.Add(subPermission); + } + } + else + { + _temporarySubPermissions[permission] = [subPermission]; + } } - } - else - { - _temporarySubPermissions[permission] = [subPermission]; - } + _queryCache = _queryCache.Clear(); } - _queryCache = _queryCache.Clear(); - } - public void RemoveSubPermission( string permission, string subPermission ) - { - lock (_lock) + public void RemoveSubPermission( string permission, string subPermission ) { - if (_temporarySubPermissions.TryGetValue(permission, out var subPermissions)) - { - if (subPermissions.Contains(subPermission)) + lock (_lock) { - subPermissions.Remove(subPermission); + if (_temporarySubPermissions.TryGetValue(permission, out var subPermissions)) + { + if (subPermissions.Contains(subPermission)) + { + _ = subPermissions.Remove(subPermission); + } + } } - } - } - _queryCache = _queryCache.Clear(); - } + _queryCache = _queryCache.Clear(); + } - public void ClearPermission( ulong playerId ) - { - lock (_lock) + public void ClearPermission( ulong playerId ) { - _temporaryPlayerPermissions.Remove(playerId); - } + lock (_lock) + { + _ = _temporaryPlayerPermissions.Remove(playerId); + } - _queryCache = _queryCache.Clear(); - } + _queryCache = _queryCache.Clear(); + } } diff --git a/managed/src/SwiftlyS2.Core/Modules/Players/Player.cs b/managed/src/SwiftlyS2.Core/Modules/Players/Player.cs index db2bc2f93..5f454ada0 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Players/Player.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Players/Player.cs @@ -10,33 +10,42 @@ namespace SwiftlyS2.Core.Players; -internal class Player : IPlayer +internal class Player : IPlayer, IDisposable { public Player( int pid ) { Slot = pid; + SessionId = NativePlayer.GetSessionID(pid); } + ~Player() + { + Dispose(); + } + + private bool _disposed = false; + public int PlayerID => Slot; + public ulong SessionId { get; } public int Slot { get; } - public int UserID => NativePlayer.GetUserID(Slot); + public int UserID { get { ThrowIfDisposed(); return NativePlayer.GetUserID(Slot); } } - public bool IsFakeClient => NativePlayer.IsFakeClient(Slot); + public string Name { get { ThrowIfDisposed(); return NativePlayer.GetName(Slot); } } - public bool IsAuthorized => NativePlayer.IsAuthorized(Slot); + public bool IsFakeClient { get { ThrowIfDisposed(); return NativePlayer.IsFakeClient(Slot); } } - public uint ConnectedTime => NativePlayer.GetConnectedTime(Slot); + public bool IsAuthorized { get { ThrowIfDisposed(); return NativePlayer.IsAuthorized(Slot); } } + public uint ConnectedTime { get { ThrowIfDisposed(); return NativePlayer.GetConnectedTime(Slot); } } - public Language PlayerLanguage => new(NativePlayer.GetLanguage(Slot)); + public Language PlayerLanguage { get { ThrowIfDisposed(); return new(NativePlayer.GetLanguage(Slot)); } } - public ulong SteamID => NativePlayer.GetSteamID(Slot); + public ulong SteamID { get { ThrowIfDisposed(); return NativePlayer.GetSteamID(Slot); } } - public ulong UnauthorizedSteamID => NativePlayer.GetUnauthorizedSteamID(Slot); - - public CCSPlayerController Controller => new CCSPlayerControllerImpl(NativePlayer.GetController(Slot)); + public ulong UnauthorizedSteamID { get { ThrowIfDisposed(); return NativePlayer.GetUnauthorizedSteamID(Slot); } } + public CCSPlayerController Controller { get { ThrowIfDisposed(); return new CCSPlayerControllerImpl(NativePlayer.GetController(Slot)); } } public CCSPlayerController RequiredController => Controller is { IsValid: true } controller ? controller : throw new InvalidOperationException("Controller is not valid"); public CBasePlayerPawn? Pawn => Controller?.Pawn.Value; @@ -47,59 +56,73 @@ public Player( int pid ) public CCSPlayerPawn RequiredPlayerPawn => PlayerPawn is { IsValid: true } pawn ? pawn : throw new InvalidOperationException("PlayerPawn is not valid"); - public GameButtonFlags PressedButtons => (GameButtonFlags)NativePlayer.GetPressedButtons(Slot); - - public string IPAddress => NativePlayer.GetIPAddress(Slot); + public GameButtonFlags PressedButtons { get { ThrowIfDisposed(); return (GameButtonFlags)NativePlayer.GetPressedButtons(Slot); } } - public VoiceFlagValue VoiceFlags { get => (VoiceFlagValue)NativeVoiceManager.GetClientVoiceFlags(Slot); set => NativeVoiceManager.SetClientVoiceFlags(Slot, (int)value); } + public string IPAddress { get { ThrowIfDisposed(); return NativePlayer.GetIPAddress(Slot); } } + public VoiceFlagValue VoiceFlags { get { ThrowIfDisposed(); return (VoiceFlagValue)NativeVoiceManager.GetClientVoiceFlags(Slot); } set { ThrowIfDisposed(); NativeVoiceManager.SetClientVoiceFlags(Slot, (int)value); } } public bool IsValid => + !_disposed && Controller is { IsValid: true, IsHLTV: false, Connected: PlayerConnectedState.PlayerConnected } && Pawn is { IsValid: true }; public bool IsAlive => IsValid && Pawn!.LifeState == (byte)LifeState_t.LIFE_ALIVE; - public bool IsFirstSpawn => NativePlayer.IsFirstSpawn(Slot); + public bool IsFirstSpawn { get { ThrowIfDisposed(); return NativePlayer.IsFirstSpawn(Slot); } } Language IPlayer.PlayerLanguage => PlayerLanguage; public void ChangeTeam( Team team ) { + ThrowIfDisposed(); NativePlayer.ChangeTeam(Slot, (byte)team); } public Task ChangeTeamAsync( Team team ) { + ThrowIfDisposed(); return SchedulerManager.QueueOrNow(() => ChangeTeam(team)); } public void ClearTransmitEntityBlocks() { + ThrowIfDisposed(); NativePlayer.ClearTransmitEntityBlocked(Slot); } public ListenOverride GetListenOverride( int player ) { + ThrowIfDisposed(); return (ListenOverride)NativeVoiceManager.GetClientListenOverride(Slot, player); } public bool IsTransmitEntityBlocked( int entityid ) { + ThrowIfDisposed(); return NativePlayer.IsTransmitEntityBlocked(Slot, entityid); } public void Kick( string reason, ENetworkDisconnectionReason gameReason ) { - NativePlayer.Kick(Slot, reason, (int)gameReason); + ThrowIfDisposed(); + CancellationTokenSource cts = new(); + SchedulerManager.NextTick(() => + { + NativePlayer.Kick(Slot, reason, (int)gameReason); + }, cts.Token); } public Task KickAsync( string reason, ENetworkDisconnectionReason gameReason ) { - return SchedulerManager.QueueOrNow(() => Kick(reason, gameReason)); + return SchedulerManager.NextTickAsync(() => + { + NativePlayer.Kick(Slot, reason, (int)gameReason); + }); } public void SendMessage( MessageType kind, string message ) { + ThrowIfDisposed(); NativePlayer.SendMessage(Slot, (int)kind, message, 5000); } @@ -110,16 +133,19 @@ public Task SendMessageAsync( MessageType kind, string message ) public void SetListenOverride( int player, ListenOverride listenOverride ) { + ThrowIfDisposed(); NativeVoiceManager.SetClientListenOverride(Slot, player, (int)listenOverride); } public void ShouldBlockTransmitEntity( int entityid, bool shouldBlockTransmit ) { + ThrowIfDisposed(); NativePlayer.ShouldBlockTransmitEntity(Slot, entityid, shouldBlockTransmit); } public void SwitchTeam( Team team ) { + ThrowIfDisposed(); NativePlayer.SwitchTeam(Slot, (byte)team); } @@ -130,6 +156,7 @@ public Task SwitchTeamAsync( Team team ) public void TakeDamage( CTakeDamageInfo damageInfo ) { + ThrowIfDisposed(); unsafe { NativePlayer.TakeDamage(Slot, (nint)(&damageInfo)); @@ -179,6 +206,7 @@ public void Respawn() public void ExecuteCommand( string command ) { + ThrowIfDisposed(); NativePlayer.ExecuteCommand(Slot, command); } @@ -189,7 +217,7 @@ public Task ExecuteCommandAsync( string command ) public bool Equals( IPlayer? other ) { - return other is not null && PlayerID == other.PlayerID; + return other is not null && SessionId == other.SessionId; } public override bool Equals( object? obj ) @@ -204,6 +232,7 @@ public override int GetHashCode() public void SendMessage( MessageType kind, string message, int htmlDuration = 5000 ) { + ThrowIfDisposed(); NativePlayer.SendMessage(Slot, (int)kind, message, htmlDuration); } @@ -282,6 +311,19 @@ public Task SendChatEOTAsync( string message ) return SendMessageAsync(MessageType.ChatEOT, message); } + public void Dispose() + { + _disposed = true; + } + + public void ThrowIfDisposed() + { + if (_disposed) + { + throw new ObjectDisposedException($"Player object (slot={Slot},sessionId={SessionId}) has been disposed."); + } + } + public static bool operator ==( Player? left, Player? right ) { return left is not null && right is not null && left.Equals(right); diff --git a/managed/src/SwiftlyS2.Core/Modules/Players/PlayerManagerService.cs b/managed/src/SwiftlyS2.Core/Modules/Players/PlayerManagerService.cs index ea92f1d55..2829d1dd9 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Players/PlayerManagerService.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Players/PlayerManagerService.cs @@ -1,7 +1,7 @@ -using SwiftlyS2.Core.Natives; +using System.Collections.Concurrent; +using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.Scheduler; using SwiftlyS2.Core.SchemaDefinitions; -using SwiftlyS2.Shared; using SwiftlyS2.Shared.Players; using SwiftlyS2.Shared.SchemaDefinitions; using SwiftlyS2.Shared.SteamAPI; @@ -11,14 +11,34 @@ namespace SwiftlyS2.Core.Players; internal class PlayerManagerService : IPlayerManagerService { - private ITranslationService _translationService; - public static List PlayerObjects = Enumerable.Range(0, NativePlayerManager.GetPlayerCap()).Select(i => new Player(i) as IPlayer).ToList(); + private readonly ITranslationService _translationService; + public static ConcurrentDictionary PlayerObjects { get; } = new(); + public static ConcurrentDictionary SessionIdToPlayerObjects { get; } = new(); public PlayerManagerService( ITranslationService translationService ) { _translationService = translationService; } + public static void RegisterPlayerObject( int playerid ) + { + UnregisterPlayerObject(playerid); + var player = new Player(playerid); + _ = PlayerObjects.TryAdd(playerid, player); + _ = SessionIdToPlayerObjects.TryAdd(player.SessionId, player); + } + + public static void UnregisterPlayerObject( int playerid ) + { + if (PlayerObjects.TryGetValue(playerid, out var player)) + { + var p = (Player)player; + _ = SessionIdToPlayerObjects.TryRemove(p.SessionId, out var _); + p.Dispose(); + _ = PlayerObjects.TryRemove(playerid, out var _); + } + } + public int PlayerCount => NativePlayerManager.GetPlayerCount(); public int PlayerCap => NativePlayerManager.GetPlayerCap(); @@ -30,7 +50,7 @@ public void ClearAllBlockedTransmitEntities() public IPlayer? GetPlayer( int playerid ) { - return !IsPlayerOnline(playerid) ? null : PlayerObjects[playerid]; + return PlayerObjects.TryGetValue(playerid, out var player) ? player : null; } public IPlayer? GetPlayerFromController( CBasePlayerController controller ) @@ -45,7 +65,7 @@ public void ClearAllBlockedTransmitEntities() public bool IsPlayerOnline( int playerid ) { - return NativePlayerManager.IsPlayerOnline(playerid); + return PlayerObjects.ContainsKey(playerid); } public void SendMessage( MessageType kind, string message ) @@ -65,8 +85,7 @@ public void ShouldBlockTransmitEntity( int entityid, bool shouldBlockTransmit ) public IEnumerable GetAllPlayers() { - return PlayerObjects - .Where(( p ) => IsPlayerOnline(p.PlayerID)); + return PlayerObjects.Values; } public IEnumerable GetAllValidPlayers() @@ -79,7 +98,7 @@ public IEnumerable FindTargettedPlayers( IPlayer player, string target, { IEnumerable allPlayers = []; - var players = GetAllPlayers(); + var players = GetAllValidPlayers(); foreach (var targetPlayer in players) { if (searchMode.HasFlag(TargetSearchMode.NoBots) && targetPlayer.IsFakeClient) @@ -159,7 +178,7 @@ public IEnumerable FindTargettedPlayers( IPlayer player, string target, } else if (target.StartsWith('#')) { - if (int.TryParse(target[1..], out int id) && targetPlayer.PlayerID == id) + if (int.TryParse(target[1..], out var id) && targetPlayer.PlayerID == id) { allPlayers = allPlayers.Append(targetPlayer); } @@ -329,4 +348,31 @@ public Task SendMessageAsync( MessageType kind, Func SendMessage(kind, messageCallback, htmlDuration)); } + + public IPlayer? GetPlayerFromSteamId( ulong steamId, bool allowUnauthorized = true ) + { + return PlayerObjects.Values.FirstOrDefault(p => + { + if (allowUnauthorized) + { + if (p.SteamID == steamId) return true; + if (p.UnauthorizedSteamID == steamId) return true; + } + else + { + if (p.SteamID == steamId && p.IsAuthorized) return true; + } + return false; + }); + } + + public bool IsSessionIdValid( ulong sessionId ) + { + return SessionIdToPlayerObjects.ContainsKey(sessionId); + } + + public IPlayer? GetPlayerFromSessionId( ulong sessionId ) + { + return SessionIdToPlayerObjects.TryGetValue(sessionId, out var player) ? player : null; + } } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Core/Modules/Plugins/PluginContext.cs b/managed/src/SwiftlyS2.Core/Modules/Plugins/PluginContext.cs index 9108fb861..4468e4ee0 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Plugins/PluginContext.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Plugins/PluginContext.cs @@ -16,8 +16,6 @@ internal class PluginContext : IDisposable public PluginStatus? Status { get; set; } public BasePlugin? Plugin { get; set; } - public bool NeedReloadOnMapStart { get; set; } = false; - public PluginLoader? Loader { get; set; } public void Dispose() diff --git a/managed/src/SwiftlyS2.Core/Modules/Plugins/PluginManager.cs b/managed/src/SwiftlyS2.Core/Modules/Plugins/PluginManager.cs index 4253be0a2..a887113a5 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Plugins/PluginManager.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Plugins/PluginManager.cs @@ -10,387 +10,385 @@ using SwiftlyS2.Shared.Plugins; using SwiftlyS2.Core.Modules.Plugins; using System.Runtime.InteropServices; -using SwiftlyS2.Core.Events; +using Semver; namespace SwiftlyS2.Core.Plugins; internal class PluginManager : IPluginManager { - private readonly IServiceProvider rootProvider; - private readonly RootDirService rootDirService; - private readonly DataDirectoryService dataDirectoryService; - private readonly ILogger logger; - - private readonly InterfaceManager interfaceManager; - private readonly List sharedTypes; - private readonly List plugins; - private readonly ConcurrentDictionary fileLastChange; - private readonly ConcurrentDictionary fileReloadTokens; - - private readonly FileSystemWatcher? fileWatcher; + private const int DefaultReloadDebounceSeconds = 2; + private const int WindowsDelayMs = 300; + private const int LinuxDelayMs = 5000; + private const int MaxFileAccessRetries = 10; + private const int InitialFileAccessDelayMs = 50; + + private readonly IServiceProvider _rootProvider; + private readonly RootDirService _rootDirService; + private readonly DataDirectoryService _dataDirectoryService; + private readonly ILogger _logger; + private readonly InterfaceManager _interfaceManager; + private readonly List _sharedTypes; + private readonly List _plugins; + private readonly ConcurrentDictionary _fileLastChange; + private readonly ConcurrentDictionary _fileReloadTokens; + private readonly ConcurrentDictionary _pluginLoadErrors; + private readonly FileSystemWatcher? _fileWatcher; public PluginManager( IServiceProvider provider, ILogger logger, RootDirService rootDirService, - DataDirectoryService dataDirectoryService - ) - { - this.rootProvider = provider; - this.rootDirService = rootDirService; - this.dataDirectoryService = dataDirectoryService; - this.logger = logger; - - this.interfaceManager = new(); - this.sharedTypes = []; - this.plugins = []; - this.fileLastChange = new ConcurrentDictionary(); - this.fileReloadTokens = new ConcurrentDictionary(); - - this.fileWatcher = new FileSystemWatcher { - Path = rootDirService.GetPluginsRoot(), + DataDirectoryService dataDirectoryService ) + { + _rootProvider = provider; + _rootDirService = rootDirService; + _dataDirectoryService = dataDirectoryService; + _logger = logger; + _interfaceManager = new InterfaceManager(); + _sharedTypes = []; + _plugins = []; + _fileLastChange = new ConcurrentDictionary(); + _fileReloadTokens = new ConcurrentDictionary(); + _pluginLoadErrors = new ConcurrentDictionary(); + + if (NativeServerHelpers.UseAutoHotReload()) + { + _fileWatcher = InitializeFileWatcher(); + } + + ConfigureAssemblyResolver(); + } + + internal void Initialize() + { + LoadExports(); + + if (!NativeCore.PluginManualLoadState()) + { + LoadPlugins(); + } + else + { + LoadPluginsInOrder(NativeCore.PluginLoadOrder()); + } + } + + private FileSystemWatcher InitializeFileWatcher() + { + var watcher = new FileSystemWatcher { + Path = _rootDirService.GetPluginsRoot(), Filter = "*.dll", IncludeSubdirectories = true, NotifyFilter = NotifyFilters.LastWrite, EnableRaisingEvents = true }; - this.fileWatcher.Changed += ( sender, e ) => - { - static async Task WaitForFileAccess( CancellationToken token, string filePath, int maxRetries = 10, int initialDelayMs = 50, ILogger? logger = null ) - { - for (var i = 1; i <= maxRetries && !token.IsCancellationRequested; i++) - { - try - { - using var stream = File.Open(filePath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite); - break; - } - catch (IOException) - { - if (i < maxRetries) - { - // 50ms, 100ms, 200ms, 400ms, 800ms... - await Task.Delay(initialDelayMs * (1 << (i - 1)), token); - } - continue; - } - catch (Exception) - { - break; - } - } - } - try - { - if (!NativeServerHelpers.UseAutoHotReload() || e.ChangeType != WatcherChangeTypes.Changed) - { - return; - } + watcher.Changed += OnPluginFileChanged; + watcher.Created += OnPluginFileCreated; - var pluginDirectory = Path.GetDirectoryName(e.FullPath) ?? string.Empty; - var directoryName = Path.GetFileName(pluginDirectory) ?? string.Empty; - var fileName = Path.GetFileNameWithoutExtension(e.FullPath); - if (string.IsNullOrWhiteSpace(directoryName) || !fileName.Equals(directoryName)) - { - return; - } + return watcher; + } - if ((DateTime.UtcNow - fileLastChange.GetValueOrDefault(directoryName, DateTime.MinValue)).TotalSeconds > 2) - { - _ = fileLastChange.AddOrUpdate(directoryName, DateTime.UtcNow, ( _, _ ) => DateTime.UtcNow); - - var context = plugins.Find(x => pluginDirectory.Equals(x.PluginDirectory, StringComparison.CurrentCultureIgnoreCase)); - if (context != null) - { - var plugin = context.Plugin; - if (plugin != null) - { - var method = plugin.ReloadMethod; - if (method == PluginReloadMethod.OnMapChange) - { - context.NeedReloadOnMapStart = true; - logger.LogInformation("Found plugin file update, it will be reloaded on next map start: {name}", directoryName); - return; - } - if (method == PluginReloadMethod.OnlyByCommand) - { - logger.LogInformation("Found plugin file update, but its auto hot-reload is disabled: {name}", directoryName); - return; - } - } - } - if (fileReloadTokens.TryRemove(directoryName, out var oldCts)) - { - oldCts.Cancel(); - oldCts.Dispose(); - } - - var cts = new CancellationTokenSource(); - _ = fileReloadTokens.AddOrUpdate(directoryName, cts, ( _, _ ) => cts); - - // Wait for file to be accessible, then reload - _ = Task.Run(async () => - { - try - { - var wait = 300; - if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux)) - { - wait = 5000; - logger.LogWarning("Detected Linux OS, a 5 second delay for reload."); - } - await Task.Delay(wait, cts.Token); - - await WaitForFileAccess(cts.Token, e.FullPath, logger: logger); - var pdbFile = Path.ChangeExtension(e.FullPath, ".pdb"); - if (File.Exists(pdbFile)) - { - await WaitForFileAccess(cts.Token, pdbFile, logger: logger); - } - - if (ReloadPluginByDllName(directoryName, true)) - { - logger.LogInformation("Reloaded plugin: {Format}", directoryName); - } - else - { - logger.LogWarning("Failed to reload plugin: {Format}", directoryName); - } - } - catch (Exception ex) - { - if (GlobalExceptionHandler.Handle(ex)) - { - AnsiConsole.WriteException(ex); - } - } - }, cts.Token); - } - } - catch (Exception ex) - { - if (!GlobalExceptionHandler.Handle(ex)) - { - return; - } - logger.LogError(ex, "Failed to handle plugin change"); - } + private void ConfigureAssemblyResolver() + { + AppDomain.CurrentDomain.AssemblyResolve += ( sender, e ) => + { + var assemblyName = new AssemblyName(e.Name).Name ?? string.Empty; + + return assemblyName.Equals("SwiftlyS2.CS2", StringComparison.OrdinalIgnoreCase) + ? Assembly.GetExecutingAssembly() + : AppDomain.CurrentDomain.GetAssemblies() + .FirstOrDefault(a => assemblyName.Equals(a.GetName().Name, StringComparison.OrdinalIgnoreCase)); }; + } - this.fileWatcher.Created += ( sender, e ) => - { - static async Task WaitForFileAccess( CancellationToken token, string filePath, int maxRetries = 10, int initialDelayMs = 50 ) - { - for (var i = 1; i <= maxRetries && !token.IsCancellationRequested; i++) - { - try - { - using var stream = File.Open(filePath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite); - break; - } - catch (IOException) - { - if (i < maxRetries) - { - await Task.Delay(initialDelayMs * (1 << (i - 1)), token); - } - continue; - } - catch (Exception) - { - break; - } - } - } + public IReadOnlyList GetPlugins() => _plugins.AsReadOnly(); - try - { - if (!NativeServerHelpers.UseAutoHotReload() || e.ChangeType != WatcherChangeTypes.Created) - { - return; - } + public bool LoadPlugin( string pluginId, bool silent = false ) + => LoadPluginById(pluginId, silent); - var pluginDirectory = Path.GetDirectoryName(e.FullPath) ?? string.Empty; - var directoryName = Path.GetFileName(pluginDirectory) ?? string.Empty; - var fileName = Path.GetFileNameWithoutExtension(e.FullPath); + public bool UnloadPlugin( string pluginId, bool silent = false ) + => UnloadPluginById(pluginId, silent); - if (string.IsNullOrWhiteSpace(directoryName) || !fileName.Equals(directoryName)) - { - return; - } + public bool ReloadPlugin( string pluginId, bool silent = false ) + => ReloadPluginById(pluginId, silent); - // Check if this plugin already exists - var existingContext = plugins.Find(x => pluginDirectory.Equals(x.PluginDirectory, StringComparison.CurrentCultureIgnoreCase)); - if (existingContext != null) - { - logger.LogInformation("Plugin already loaded, skipping: {name}", directoryName); - return; - } + public PluginStatus? GetPluginStatus( string pluginId ) + => FindPluginById(pluginId)?.Status; + + public PluginStatus? GetPluginStatusByDllName( string dllName ) + { + var pluginDir = FindPluginDirectoryByDllName(dllName); + return string.IsNullOrWhiteSpace(pluginDir) + ? null + : FindPluginByDirectory(pluginDir)?.Status; + } - var cts = new CancellationTokenSource(); + public PluginMetadata? GetPluginMetadata( string pluginId ) + => FindPluginById(pluginId)?.Metadata; - // Wait for file to be accessible, then load the new plugin - _ = Task.Run(async () => - { - try - { - var wait = 300; - if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux)) - { - wait = 5000; - logger.LogWarning("Detected Linux OS, a 5 second delay for loading new plugin."); - } - await Task.Delay(wait, cts.Token); - - await WaitForFileAccess(cts.Token, e.FullPath); - var pdbFile = Path.ChangeExtension(e.FullPath, ".pdb"); - if (File.Exists(pdbFile)) - { - await WaitForFileAccess(cts.Token, pdbFile); - } - - // Load the new plugin - var context = LoadPlugin(pluginDirectory, false, silent: false); - if (context?.Status == PluginStatus.Loaded) - { - var relativePath = Path.GetRelativePath(rootDirService.GetRoot(), pluginDirectory); - var displayPath = Path.Join("(swRoot)", relativePath); - - logger.LogInformation( - string.Join("\n", [ - "Hot-loaded New Plugin", - "├─ {Id} {Version}", - "├─ Author: {Author}", - "└─ Path: {RelativePath}" - ]), - context.Metadata!.Id, - context.Metadata!.Version, - context.Metadata!.Author, - displayPath - ); - } - else - { - logger.LogWarning("Failed to hot-load new plugin: {Format}", directoryName); - } - } - catch (Exception ex) - { - if (GlobalExceptionHandler.Handle(ex)) - { - AnsiConsole.WriteException(ex); - } - logger.LogError(ex, "Failed to hot-load new plugin: {Format}", directoryName); - } - finally - { - cts.Dispose(); - } - }, cts.Token); + public string? GetPluginPath( string pluginId ) + => FindPluginById(pluginId)?.PluginDirectory; + + public Dictionary GetPluginPaths() + => _plugins + .Where(p => p.Metadata != null && p.PluginDirectory != null) + .ToDictionary(p => p.Metadata!.Id, p => p.PluginDirectory!); + + public Dictionary GetAllPluginStatuses() + => _plugins + .Where(p => p.Metadata != null) + .ToDictionary(p => p.Metadata!.Id, p => p.Status ?? PluginStatus.Indeterminate); + + public Dictionary GetAllPluginMetadata() + => _plugins + .Where(p => p.Metadata != null) + .ToDictionary(p => p.Metadata!.Id, p => p.Metadata!); + + public IEnumerable GetAllPlugins() + => _plugins + .Where(p => p.Metadata != null) + .Select(p => p.Metadata!.Id); + + public Dictionary GetPluginLoadErrors() + => new Dictionary(_pluginLoadErrors); + + public void RegenerateTranslations() + { + foreach (var plugin in _plugins.Where(p => p.Core != null)) + { + plugin.Core!.TranslationService.CreateTranslationResource(); + } + } + + public bool LoadPluginById( string id, bool silent = false ) + { + var context = FindPluginById(id, excludeStatuses: [PluginStatus.Loading, PluginStatus.Loaded]); + if (context == null || string.IsNullOrWhiteSpace(context.PluginDirectory)) + { + if (!silent) _logger.LogWarning("Failed to load plugin by id: {Id}", id); + return false; + } + + return LoadPluginByDllName(Path.GetFileName(context.PluginDirectory), hotReload: false, silent); + } + + public bool LoadPluginByDllName( string dllName, bool hotReload, bool silent = false ) + { + var pluginDir = FindPluginDirectoryByDllName(dllName); + if (string.IsNullOrWhiteSpace(pluginDir)) + { + if (!silent) _logger.LogWarning("Failed to load plugin by name: {DllName}", dllName); + return false; + } + + var oldContext = FindPluginByDirectory(pluginDir, excludeStatuses: [PluginStatus.Loading, PluginStatus.Loaded]); + PluginContext? newContext = null; + + try + { + if (oldContext != null && _plugins.Remove(oldContext)) + { + newContext = LoadPluginInternal(pluginDir, hotReload, silent); } - catch (Exception ex) + else if (oldContext == null) { - if (!GlobalExceptionHandler.Handle(ex)) + newContext = LoadPluginInternal(pluginDir, hotReload, silent); + } + + if (newContext?.Status == PluginStatus.Loaded) + { + if (!silent) { - return; + _logger.LogInformation("Loaded plugin: {Id}", newContext.Metadata!.Id); } - logger.LogError(ex, "Failed to handle new plugin creation"); + return true; } - }; - AppDomain.CurrentDomain.AssemblyResolve += ( sender, e ) => + throw new InvalidOperationException($"Failed to load plugin from: {pluginDir}"); + } + catch (Exception e) { - var loadingAssemblyName = new AssemblyName(e.Name).Name ?? string.Empty; - return loadingAssemblyName.Equals("SwiftlyS2.CS2", StringComparison.OrdinalIgnoreCase) - ? Assembly.GetExecutingAssembly() - : AppDomain.CurrentDomain.GetAssemblies().FirstOrDefault(a => loadingAssemblyName == a.GetName().Name); - }; - EventPublisher.InternalOnMapLoad += () => + if (GlobalExceptionHandler.Handle(e)) + { + _logger.LogWarning(e, "Failed to load plugin by name: {Path}", pluginDir); + var pluginName = Path.GetFileName(pluginDir); + _pluginLoadErrors[pluginName] = e.ToString(); + } + return false; + } + finally { - var array = plugins.Where(x => x.NeedReloadOnMapStart).ToArray(); - foreach (var p in array) + RebuildSharedServices(); + } + } + + private void LoadPluginsInOrder( string loadOrder ) + { + var plugins = loadOrder.Split('\x01'); + foreach (var plugin in plugins) + { + _ = LoadPluginById(plugin, silent: false); + } + } + + private void LoadPlugins() + { + EnumeratePluginDirectories(_rootDirService.GetPluginsRoot(), pluginDir => + { + var displayPath = GetDisplayPath(pluginDir); + var dllName = Path.GetFileName(pluginDir); + var fullDisplayPath = Path.Join(displayPath, $"{dllName}.dll"); + + _logger.LogInformation("Loading plugin: {Path}", fullDisplayPath); + + try { - p.NeedReloadOnMapStart = false; - var directoryName = Path.GetFileName(p.PluginDirectory) ?? string.Empty; - if (ReloadPluginByDllName(directoryName, true)) + var context = LoadPluginInternal(pluginDir, hotReload: false, silent: false); + if (context?.Status == PluginStatus.Loaded) { - logger.LogInformation("Reloaded plugin on map start: {Format}", directoryName); + LogPluginLoadSuccess(context, displayPath); } else { - logger.LogWarning("Failed to reload plugin: {Format}", directoryName); + _logger.LogWarning("Failed to load plugin: {Path}", fullDisplayPath); + _pluginLoadErrors[dllName] = "Plugin failed to load (status not loaded)"; + context?.Status = PluginStatus.Error; } } - }; + catch (Exception e) + { + if (GlobalExceptionHandler.Handle(e)) + { + _logger.LogWarning(e, "Failed to load plugin: {Path}", fullDisplayPath); + _pluginLoadErrors[dllName] = e.ToString(); + } + } + }); + + RebuildSharedServices(); + NotifyAllPluginsLoaded(); } - /// - /// Must be called after DI container is fully built to avoid circular dependency. - /// - internal void Initialize() + private PluginContext? LoadPluginInternal( string directory, bool hotReload, bool silent = false ) { - LoadExports(); - if (!NativeCore.PluginManualLoadState()) LoadPlugins(); - else + var existingContext = _plugins.FirstOrDefault(p => + p.PluginDirectory?.Trim().Equals(directory.Trim(), StringComparison.OrdinalIgnoreCase) ?? false); + + if (existingContext != null) { - var plugins = NativeCore.PluginLoadOrder().Split('\x01'); - foreach (var plugin in plugins) - { - _ = LoadPluginById(plugin, silent: false); - } + _ = _plugins.Remove(existingContext); } - } - public IReadOnlyList GetPlugins() => plugins.AsReadOnly(); + var context = new PluginContext { + PluginDirectory = directory, + Status = PluginStatus.Loading + }; + _plugins.Add(context); - public string? FindPluginDirectoryByDllName( string dllName ) - { - dllName = dllName.Trim(); - if (dllName.EndsWith(".dll", StringComparison.OrdinalIgnoreCase)) + var entrypointDll = GetPluginEntrypointPath(directory); + if (!File.Exists(entrypointDll)) { - dllName = dllName[..^4]; + return FailWithError(context, silent, $"Plugin entrypoint DLL not found: {entrypointDll}"); } - var pluginDir = plugins - .FirstOrDefault(p => Path.GetFileName(p.PluginDirectory)?.Trim().Equals(dllName.Trim()) ?? false) - ?.PluginDirectory; + var loader = CreatePluginLoader(entrypointDll); + var pluginType = FindPluginType(loader); + if (pluginType == null) + { + return FailWithError(context, silent, $"No plugin type found in: {entrypointDll}"); + } - if (!string.IsNullOrWhiteSpace(pluginDir)) + var metadata = pluginType.GetCustomAttribute(); + if (metadata == null) { - return pluginDir; + return FailWithError(context, silent, $"Plugin metadata not found in: {entrypointDll}"); } - string? foundDir = null; - EnumeratePluginDirectories(rootDirService.GetPluginsRoot(), dir => + context.Metadata = metadata; + + var coreVersion = NativeEngineHelpers.GetNativeVersion(); + var minimumApiVersion = context.Metadata.MinimumAPIVersion ?? "0.0.0"; + + SemVersion? coreSemver = null; + try { - if (Path.GetFileName(dir).Equals(dllName)) + coreSemver = SemVersion.Parse(coreVersion, SemVersionStyles.AllowV); + } + catch (Exception) { } + + if (coreSemver != null) + { + SemVersion? minApiSemver = null; + try { - foundDir = dir; + minApiSemver = SemVersion.Parse(minimumApiVersion, SemVersionStyles.AllowV); + } + catch (Exception e) + { + if (GlobalExceptionHandler.Handle(e)) + { + _logger.LogWarning(e, "Failed to parse minimum API version for plugin {Id}: '{Version}'. Falling back to '0.0.0'.", context.Metadata.Id, minimumApiVersion); + } + minApiSemver = new SemVersion(0, 0, 0); } - }); - return foundDir; + var r = SemVersion.CompareSortOrder(coreSemver, minApiSemver); + + if (r < 0) + { + return FailWithError(context, silent, $"Plugin API version '{minimumApiVersion}' is newer than the core version '{coreVersion}'."); + } + } + + _dataDirectoryService.EnsurePluginDataDirectory(metadata.Id); + + var core = CreateSwiftlyCore(metadata, pluginType, directory); + var plugin = InstantiatePlugin(pluginType, core); + + try + { + plugin.Load(hotReload); + context.Status = PluginStatus.Loaded; + context.Core = core; + context.Plugin = plugin; + context.Loader = loader; + + var pluginName = Path.GetFileName(directory); + _ = _pluginLoadErrors.TryRemove(pluginName, out _); + + return context; + } + catch (Exception e) + { + _ = GlobalExceptionHandler.Handle(e); + CleanupFailedPlugin(plugin, loader, core); + _logger.LogError(e, "Exception occurred while loading plugin: {PluginPath}", entrypointDll); + var pluginName = Path.GetFileName(directory); + _pluginLoadErrors[pluginName] = e.ToString(); + return FailWithError(context, silent, $"Failed to load plugin: {entrypointDll}"); + } } public bool UnloadPluginById( string id, bool silent = false, bool rebuild = true ) { - var context = plugins - .Where(p => p.Status != PluginStatus.Unloaded) - .FirstOrDefault(p => p.Metadata?.Id.Trim().Equals(id.Trim(), StringComparison.OrdinalIgnoreCase) ?? false); + var context = FindPluginById(id, excludeStatuses: [PluginStatus.Unloaded]); + if (context == null) + { + if (!silent) _logger.LogWarning("Plugin not found: {Id}", id); + return false; + } try { - context?.Dispose(); - context?.Loader?.Dispose(); - context?.Core?.Dispose(); - context!.Status = PluginStatus.Unloaded; + context.Dispose(); + _ = _plugins.Remove(context); return true; } catch { - logger.LogWarning("Failed to unload plugin by id: {Id}", id); - context!.Status = PluginStatus.Indeterminate; + if (!silent) _logger.LogWarning("Failed to unload plugin: {Id}", id); + context.Status = PluginStatus.Indeterminate; return false; } finally @@ -407,204 +405,245 @@ public bool UnloadPluginByDllName( string dllName, bool silent = false, bool reb var pluginDir = FindPluginDirectoryByDllName(dllName); if (string.IsNullOrWhiteSpace(pluginDir)) { - logger.LogWarning("Failed to find plugin by name: {DllName}", dllName); + if (!silent) _logger.LogWarning("Failed to find plugin by name: {DllName}", dllName); return false; } - var context = plugins - .Where(p => p.Status != PluginStatus.Unloaded) - .FirstOrDefault(p => p.PluginDirectory?.Trim().Equals(pluginDir.Trim()) ?? false); - - if (string.IsNullOrWhiteSpace(context?.Metadata?.Id)) + var context = FindPluginByDirectory(pluginDir, excludeStatuses: [PluginStatus.Unloaded]); + if (context?.Metadata == null) { - logger.LogWarning("Failed to find plugin by name: {DllName}", dllName); + if (!silent) _logger.LogWarning("Failed to find plugin by name: {DllName}", dllName); return false; } return UnloadPluginById(context.Metadata.Id, silent, rebuild); } - public bool LoadPluginById( string id, bool silent = false ) + public bool ReloadPluginById( string id, bool silent = false ) { - var context = plugins - .Where(p => p.Status != PluginStatus.Loading && p.Status != PluginStatus.Loaded) - .FirstOrDefault(p => p.Metadata?.Id.Trim().Equals(id.Trim(), StringComparison.OrdinalIgnoreCase) ?? false); + _ = UnloadPluginById(id, silent, rebuild: false); + return LoadPluginById(id, silent); + } - if (string.IsNullOrWhiteSpace(context?.PluginDirectory)) + public bool ReloadPluginByDllName( string dllName, bool silent = false ) + { + _ = UnloadPluginByDllName(dllName, silent, rebuild: false); + return LoadPluginByDllName(dllName, hotReload: true, silent); + } + + private void LoadExports() + { + try { - logger.LogWarning("Failed to load plugin by id: {Id}", id); - return false; + var resolver = new DependencyResolver(_logger); + resolver.AnalyzeDependencies(_rootDirService.GetPluginsRoot()); + + _logger.LogInformation("{Graph}", resolver.GetDependencyGraphVisualization()); + + var loadOrder = resolver.GetLoadOrder(); + _logger.LogInformation("Loading {Count} export assemblies in dependency order", loadOrder.Count); + + foreach (var exportFile in loadOrder) + { + LoadExportAssembly(exportFile); + } + + _logger.LogInformation("Loaded {Count} shared types", _sharedTypes.Count); + } + catch (InvalidOperationException ex) when (ex.Message.Contains("circular dependency", StringComparison.OrdinalIgnoreCase)) + { + _logger.LogError(ex, "Circular dependency detected in plugin exports, loading manually"); + LoadExportsManually(_rootDirService.GetPluginsRoot()); + } + catch (Exception ex) + { + if (GlobalExceptionHandler.Handle(ex)) + { + _logger.LogError(ex, "Failed to load exports"); + } + } + } + + private void LoadExportAssembly( string exportFile ) + { + try + { + var assembly = Assembly.LoadFrom(exportFile); + var exports = assembly.GetTypes(); + _logger.LogDebug("Loaded {Count} types from {Path}", exports.Length, Path.GetFileName(exportFile)); + _sharedTypes.AddRange(exports); + } + catch (Exception ex) + { + if (GlobalExceptionHandler.Handle(ex)) + { + _logger.LogWarning(ex, "Failed to load export assembly: {Path}", exportFile); + } + } + } + + private void LoadExportsManually( string startDirectory ) + { + EnumeratePluginDirectories(startDirectory, pluginDir => + { + var exportsPath = Path.Combine(pluginDir, "resources", "exports"); + if (!Directory.Exists(exportsPath)) + { + return; + } + + foreach (var exportFile in Directory.GetFiles(exportsPath, "*.dll")) + { + LoadExportAssembly(exportFile); + } + }); + } + + private void OnPluginFileChanged( object sender, FileSystemEventArgs e ) + { + if (!ShouldProcessFileChange(e, out var directoryName)) + { + return; + } + + try + { + if (!ShouldDebounceReload(directoryName)) + { + return; + } + + CancelPreviousReload(directoryName); + var cts = RegisterNewReload(directoryName); + SchedulePluginReload(e.FullPath, directoryName, cts); + } + catch (Exception ex) + { + if (GlobalExceptionHandler.Handle(ex)) + { + _logger.LogError(ex, "Failed to handle plugin change"); + } } - - return LoadPluginByDllName(Path.GetFileName(context.PluginDirectory), silent); } - public bool LoadPluginByDllName( string dllName, bool silent = false ) + private void OnPluginFileCreated( object sender, FileSystemEventArgs e ) { - var pluginDir = FindPluginDirectoryByDllName(dllName); - if (string.IsNullOrWhiteSpace(pluginDir)) + if (!ShouldProcessFileChange(e, out var directoryName)) { - logger.LogWarning("Failed to load plugin by name: {DllName}", dllName); - return false; + return; } - var oldContext = plugins - .Where(p => p.Status != PluginStatus.Loading && p.Status != PluginStatus.Loaded) - .FirstOrDefault(p => p.PluginDirectory?.Trim().Equals(pluginDir.Trim()) ?? false); - - PluginContext? newContext = null; try { - // If plugin exists and is not loaded, reload it - if (oldContext != null && plugins.Remove(oldContext)) + var pluginDirectory = Path.GetDirectoryName(e.FullPath) ?? string.Empty; + if (FindPluginByDirectory(pluginDirectory) != null) { - newContext = LoadPlugin(pluginDir, true, silent); - if (newContext?.Status == PluginStatus.Loaded) - { - if (!silent) - { - logger.LogInformation("Loaded plugin: {Id}", newContext.Metadata!.Id); - } - return true; - } - } - // If plugin doesn't exist in the list, it's a new plugin - load it - else if (oldContext == null) - { - newContext = LoadPlugin(pluginDir, false, silent); - if (newContext?.Status == PluginStatus.Loaded) - { - if (!silent) - { - logger.LogInformation("Loaded new plugin: {Id}", newContext.Metadata!.Id); - } - return true; - } + _logger.LogInformation("Plugin already loaded, skipping: {Name}", directoryName); + return; } - throw new ArgumentException(string.Empty, string.Empty); + + var cts = new CancellationTokenSource(); + SchedulePluginLoad(e.FullPath, pluginDirectory, directoryName, cts); } - catch (Exception e) + catch (Exception ex) { - if (!GlobalExceptionHandler.Handle(e)) + if (GlobalExceptionHandler.Handle(ex)) { - return false; + _logger.LogError(ex, "Failed to handle new plugin creation"); } - logger.LogWarning(e, "Failed to load plugin by name: {Path}", pluginDir); + } + } + + private bool ShouldProcessFileChange( FileSystemEventArgs e, out string directoryName ) + { + directoryName = string.Empty; + + if (!NativeServerHelpers.UseAutoHotReload()) + { return false; } - finally + + var pluginDirectory = Path.GetDirectoryName(e.FullPath) ?? string.Empty; + directoryName = Path.GetFileName(pluginDirectory) ?? string.Empty; + var fileName = Path.GetFileNameWithoutExtension(e.FullPath); + + return !string.IsNullOrWhiteSpace(directoryName) && fileName.Equals(directoryName); + } + + private bool ShouldDebounceReload( string directoryName ) + { + var lastChange = _fileLastChange.GetValueOrDefault(directoryName, DateTime.MinValue); + var timeSinceLastChange = (DateTime.UtcNow - lastChange).TotalSeconds; + + if (timeSinceLastChange > DefaultReloadDebounceSeconds) { - RebuildSharedServices(); + _ = _fileLastChange.AddOrUpdate(directoryName, DateTime.UtcNow, ( _, _ ) => DateTime.UtcNow); + return true; } + + return false; } - public bool ReloadPluginById( string id, bool silent = false ) + private void CancelPreviousReload( string directoryName ) { - _ = UnloadPluginById(id, silent, false); - return LoadPluginById(id, silent); + if (_fileReloadTokens.TryRemove(directoryName, out var oldCts)) + { + oldCts.Cancel(); + oldCts.Dispose(); + } } - public bool ReloadPluginByDllName( string dllName, bool silent = false ) + private CancellationTokenSource RegisterNewReload( string directoryName ) { - _ = UnloadPluginByDllName(dllName, silent: true, rebuild: false); - return LoadPluginByDllName(dllName, silent); + var cts = new CancellationTokenSource(); + _ = _fileReloadTokens.AddOrUpdate(directoryName, cts, ( _, _ ) => cts); + return cts; } - private void LoadExports() + private void SchedulePluginReload( string filePath, string directoryName, CancellationTokenSource cts ) { - void PopulateSharedManually( string startDirectory ) + _ = Task.Run(async () => { - EnumeratePluginDirectories(startDirectory, pluginDir => + try { - var exportsPath = Path.Combine(pluginDir, "resources", "exports"); - if (!Directory.Exists(exportsPath)) - { - return; - } - - Directory.GetFiles(exportsPath, "*.dll") - .ToList() - .ForEach(exportFile => - { - try - { - var assembly = Assembly.LoadFrom(exportFile); - assembly.GetTypes().ToList().ForEach(sharedTypes.Add); - } - catch (Exception innerEx) - { - if (!GlobalExceptionHandler.Handle(innerEx)) - { - return; - } - logger.LogWarning(innerEx, "Failed to load export assembly: {Path}", exportFile); - } - }); - }); - } - - try - { - var resolver = new DependencyResolver(logger); - resolver.AnalyzeDependencies(rootDirService.GetPluginsRoot()); - logger.LogInformation("{Graph}", resolver.GetDependencyGraphVisualization()); - var loadOrder = resolver.GetLoadOrder(); - logger.LogInformation("Loading {Count} export assemblies in dependency order", loadOrder.Count); + await WaitForPlatformDelay(cts.Token); + await WaitForFileAccessibility(filePath, cts.Token); - loadOrder.ForEach(exportFile => - { - try + if (ReloadPluginByDllName(directoryName, silent: true)) { - var assembly = Assembly.LoadFrom(exportFile); - var exports = assembly.GetTypes(); - logger.LogDebug("Loaded {Count} types from {Path}", exports.Length, Path.GetFileName(exportFile)); - exports.ToList().ForEach(sharedTypes.Add); + _logger.LogInformation("Reloaded plugin: {Name}", directoryName); } - catch (Exception ex) + else { - if (!GlobalExceptionHandler.Handle(ex)) - { - return; - } - logger.LogWarning(ex, "Failed to load export assembly: {Path}", exportFile); + _logger.LogWarning("Failed to reload plugin: {Name}", directoryName); } - }); - - logger.LogInformation("Loaded {Count} shared types", sharedTypes.Count); - } - catch (InvalidOperationException ex) when (ex.Message.Contains("circular dependency", StringComparison.OrdinalIgnoreCase)) - { - logger.LogError(ex, "Circular dependency detected in plugin exports, loading manually"); - PopulateSharedManually(rootDirService.GetPluginsRoot()); - } - catch (Exception ex) - { - if (!GlobalExceptionHandler.Handle(ex)) + } + catch (Exception ex) { - return; + if (GlobalExceptionHandler.Handle(ex)) + { + AnsiConsole.WriteException(ex); + } } - logger.LogError(ex, "Failed to load exports"); - } + }, cts.Token); } - private void LoadPlugins() + + private void SchedulePluginLoad( string filePath, string pluginDirectory, string directoryName, CancellationTokenSource cts ) { - EnumeratePluginDirectories(rootDirService.GetPluginsRoot(), pluginDir => + _ = Task.Run(async () => { - var relativePath = Path.GetRelativePath(rootDirService.GetRoot(), pluginDir); - var displayPath = Path.Join("(swRoot)", relativePath); - var dllName = Path.GetFileName(pluginDir); - var fullDisplayPath = string.IsNullOrWhiteSpace(displayPath) ? string.Empty : $"{Path.Join(displayPath, dllName)}.dll"; - - logger.LogInformation("Loading plugin: {Path}", fullDisplayPath); - try { - var context = LoadPlugin(pluginDir, false, silent: false); + await WaitForPlatformDelay(cts.Token); + await WaitForFileAccessibility(filePath, cts.Token); + + var context = LoadPluginInternal(pluginDirectory, hotReload: true, silent: false); if (context?.Status == PluginStatus.Loaded) { - logger.LogInformation( + var displayPath = GetDisplayPath(pluginDirectory); + _logger.LogInformation( string.Join("\n", [ - "Loaded Plugin", + "Hot-loaded New Plugin", "├─ {Id} {Version}", "├─ Author: {Author}", "└─ Path: {RelativePath}" @@ -617,257 +656,293 @@ private void LoadPlugins() } else { - logger.LogWarning("Failed to load plugin: {Path}", fullDisplayPath); + _logger.LogWarning("Failed to hot-load new plugin: {Name}", directoryName); } } - catch (Exception e) + catch (Exception ex) { - if (!GlobalExceptionHandler.Handle(e)) + if (GlobalExceptionHandler.Handle(ex)) { - return; + AnsiConsole.WriteException(ex); } - logger.LogWarning(e, "Failed to load plugin: {Path}", fullDisplayPath); + _logger.LogError(ex, "Failed to hot-load new plugin: {Name}", directoryName); } - }); - - RebuildSharedServices(); - - plugins - .Where(p => p.Status == PluginStatus.Loaded) - .ToList() - .ForEach(p => p.Plugin?.OnAllPluginsLoaded()); + finally + { + cts.Dispose(); + } + }, cts.Token); } - private PluginContext? LoadPlugin( string dir, bool hotReload, bool silent = false ) + private static async Task WaitForPlatformDelay( CancellationToken token ) { - PluginContext? FailWithError( PluginContext context, string message ) - { - logger.LogWarning("{Message}", message); - context.Status = PluginStatus.Error; - return null; - } + var delay = RuntimeInformation.IsOSPlatform(OSPlatform.Linux) ? LinuxDelayMs : WindowsDelayMs; + await Task.Delay(delay, token); + } - var context = new PluginContext { PluginDirectory = dir, Status = PluginStatus.Loading }; - plugins.Add(context); + private async Task WaitForFileAccessibility( string filePath, CancellationToken token ) + { + await WaitForFileAccess(filePath, token); - var entrypointDll = Path.Combine(dir, Path.GetFileName(dir) + ".dll"); - if (!File.Exists(entrypointDll)) + var pdbFile = Path.ChangeExtension(filePath, ".pdb"); + if (File.Exists(pdbFile)) { - return FailWithError(context, $"Failed to find plugin entrypoint DLL: {Path.Combine(dir, Path.GetFileName(dir))}.dll"); + await WaitForFileAccess(pdbFile, token); } + } - var currentContext = AssemblyLoadContext.GetLoadContext(Assembly.GetExecutingAssembly()); - var loader = PluginLoader.CreateFromAssemblyFile( - entrypointDll, - [typeof(BasePlugin), .. sharedTypes], - config => + private static async Task WaitForFileAccess( string filePath, CancellationToken token, int maxRetries = MaxFileAccessRetries, int initialDelayMs = InitialFileAccessDelayMs ) + { + for (var i = 1; i <= maxRetries && !token.IsCancellationRequested; i++) + { + try { - config.IsUnloadable = config.LoadInMemory = true; - if (currentContext != null) + using var stream = File.Open(filePath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite); + return; + } + catch (IOException) + { + if (i < maxRetries) { - (config.DefaultContext, config.PreferSharedTypes) = (currentContext, true); + var delay = initialDelayMs * (1 << (i - 1)); // Exponential backoff + await Task.Delay(delay, token); } } - ); - - var pluginType = loader.LoadDefaultAssembly() - .GetTypes() - .FirstOrDefault(t => t.IsSubclassOf(typeof(BasePlugin))); - if (pluginType == null) - { - return FailWithError(context, $"Failed to find plugin type: {Path.Combine(dir, Path.GetFileName(dir))}.dll"); - } - - var metadata = pluginType.GetCustomAttribute(); - if (metadata == null) - { - return FailWithError(context, $"Failed to find plugin metadata: {Path.Combine(dir, Path.GetFileName(dir))}.dll"); + catch + { + return; + } } + } - context.Metadata = metadata; - dataDirectoryService.EnsurePluginDataDirectory(metadata.Id); - - var pluginDir = Path.GetDirectoryName(entrypointDll)!; - var dataDir = dataDirectoryService.GetPluginDataDirectory(metadata.Id); - var core = new SwiftlyCore(metadata.Id, pluginDir, metadata, pluginType, rootProvider, dataDir); + public string? FindPluginDirectoryByDllName( string dllName ) + { + dllName = dllName.Trim().TrimEnd(".dll", StringComparison.OrdinalIgnoreCase); - core.InitializeType(pluginType); - var plugin = (BasePlugin)Activator.CreateInstance(pluginType, [core])!; - core.InitializeObject(plugin); + var pluginDir = _plugins + .FirstOrDefault(p => Path.GetFileName(p.PluginDirectory)?.Trim().Equals(dllName, StringComparison.OrdinalIgnoreCase) ?? false) + ?.PluginDirectory; - try + if (!string.IsNullOrWhiteSpace(pluginDir)) { - plugin.Load(hotReload); - context.Status = PluginStatus.Loaded; - context.Core = core; - context.Plugin = plugin; - context.Loader = loader; - return context; + return pluginDir; } - catch (Exception e) - { - _ = GlobalExceptionHandler.Handle(e); - try - { - plugin.Unload(); - loader?.Dispose(); - core?.Dispose(); - } - catch (Exception ex) + string? foundDir = null; + EnumeratePluginDirectories(_rootDirService.GetPluginsRoot(), dir => + { + if (Path.GetFileName(dir).Equals(dllName, StringComparison.OrdinalIgnoreCase)) { - if (GlobalExceptionHandler.Handle(ex)) - { - AnsiConsole.WriteException(ex); - } + foundDir = dir; } + }); - logger.LogError(e, "Exception occurred while loading plugin: {PluginPath}", Path.Combine(dir, Path.GetFileName(dir)) + ".dll"); - - return FailWithError(context, $"Failed to load plugin: {Path.Combine(dir, Path.GetFileName(dir))}.dll"); - } + return foundDir; } - private void RebuildSharedServices() + private PluginContext? FindPluginById( string id, PluginStatus[]? excludeStatuses = null ) { - interfaceManager.Dispose(); - - var loadedPlugins = plugins - .Where(p => p.Status == PluginStatus.Loaded) - .ToList(); + var query = _plugins.AsEnumerable(); - loadedPlugins.ForEach(p => p.Plugin?.ConfigureSharedInterface(interfaceManager)); - interfaceManager.Build(); + if (excludeStatuses != null && excludeStatuses.Length > 0) + { + query = query.Where(p => !excludeStatuses.Contains(p.Status ?? PluginStatus.Indeterminate)); + } - loadedPlugins.ForEach(p => p.Plugin?.UseSharedInterface(interfaceManager)); - loadedPlugins.ForEach(p => p.Plugin?.OnSharedInterfaceInjected(interfaceManager)); + return query.FirstOrDefault(p => + p.Metadata?.Id.Trim().Equals(id.Trim(), StringComparison.OrdinalIgnoreCase) ?? false); } - private static void EnumeratePluginDirectories( string directory, Action action ) + private PluginContext? FindPluginByDirectory( string directory, PluginStatus[]? excludeStatuses = null ) { - var pluginDirs = Directory.GetDirectories(directory); + var query = _plugins.AsEnumerable(); - foreach (var pluginDir in pluginDirs) + if (excludeStatuses != null && excludeStatuses.Length > 0) { - var dirName = Path.GetFileName(pluginDir); - if (dirName.Trim().StartsWith('[') && dirName.EndsWith(']')) - { - EnumeratePluginDirectories(pluginDir, action); - continue; - } + query = query.Where(p => !excludeStatuses.Contains(p.Status ?? PluginStatus.Indeterminate)); + } - if (dirName.Trim().Equals("disable", StringComparison.OrdinalIgnoreCase) || dirName.Trim().Equals("disabled", StringComparison.OrdinalIgnoreCase) || dirName.Trim().Equals("_", StringComparison.OrdinalIgnoreCase)) - { - continue; - } + return query.FirstOrDefault(p => + p.PluginDirectory?.Trim().Equals(directory.Trim(), StringComparison.OrdinalIgnoreCase) ?? false); + } + + private PluginLoader CreatePluginLoader( string entrypointDll ) + { + var currentContext = AssemblyLoadContext.GetLoadContext(Assembly.GetExecutingAssembly()); - if (dirName.Trim().Length >= 2 && dirName.StartsWith('_')) + return PluginLoader.CreateFromAssemblyFile( + entrypointDll, + [typeof(BasePlugin), .. _sharedTypes], + config => { - continue; - } + config.IsUnloadable = true; + config.LoadInMemory = true; - action(pluginDir); - } + if (currentContext != null) + { + config.DefaultContext = currentContext; + config.PreferSharedTypes = true; + } + }); } - public bool LoadPlugin( string pluginId, bool silent = false ) + private static Type? FindPluginType( PluginLoader loader ) { - return LoadPluginById(pluginId, silent); + return loader.LoadDefaultAssembly() + .GetTypes() + .FirstOrDefault(t => t.IsSubclassOf(typeof(BasePlugin))); } - public bool UnloadPlugin( string pluginId, bool silent = false ) + private SwiftlyCore CreateSwiftlyCore( PluginMetadata metadata, Type pluginType, string pluginDirectory ) { - return UnloadPluginById(pluginId, silent); + var dataDir = _dataDirectoryService.GetPluginDataDirectory(metadata.Id); + var core = new SwiftlyCore( + metadata.Id, + pluginDirectory, + metadata, + pluginType, + _rootProvider, + dataDir); + + core.InitializeType(pluginType); + return core; } - public bool ReloadPlugin( string pluginId, bool silent = false ) + private static BasePlugin InstantiatePlugin( Type pluginType, SwiftlyCore core ) { - return ReloadPluginById(pluginId, silent); + var plugin = (BasePlugin)Activator.CreateInstance(pluginType, [core])!; + core.InitializeObject(plugin); + return plugin; } - public PluginStatus? GetPluginStatus( string pluginId ) + private void CleanupFailedPlugin( BasePlugin? plugin, PluginLoader? loader, SwiftlyCore? core ) { - foreach (var plugin in plugins) + try { - if (plugin.Metadata != null && plugin.Metadata.Id == pluginId) + plugin?.Unload(); + loader?.Dispose(); + core?.Dispose(); + } + catch (Exception ex) + { + if (GlobalExceptionHandler.Handle(ex)) { - return plugin.Status; + AnsiConsole.WriteException(ex); } } - return null; } - public PluginMetadata? GetPluginMetadata( string pluginId ) + private PluginContext? FailWithError( PluginContext context, bool silent, string message ) { - foreach (var plugin in plugins) + if (!silent) _logger.LogWarning("{Message}", message); + context.Status = PluginStatus.Error; + + if (!string.IsNullOrWhiteSpace(context.PluginDirectory)) { - if (plugin.Metadata != null && plugin.Metadata.Id == pluginId) - { - return plugin.Metadata; - } + var pluginName = Path.GetFileName(context.PluginDirectory); + _pluginLoadErrors[pluginName] = message; } + return null; } - public string? GetPluginPath( string pluginId ) + private void RebuildSharedServices() { - foreach (var plugin in plugins) + _interfaceManager.Dispose(); + + var loadedPlugins = _plugins + .Where(p => p.Status == PluginStatus.Loaded && p.Plugin != null) + .ToList(); + + foreach (var plugin in loadedPlugins) { - if (plugin.Metadata != null && plugin.Metadata.Id == pluginId) - { - return plugin.PluginDirectory; - } + plugin.Plugin!.ConfigureSharedInterface(_interfaceManager); } - return null; - } - public Dictionary GetPluginPaths() - { - var paths = new Dictionary(); - foreach (var plugin in plugins) + _interfaceManager.Build(); + + foreach (var plugin in loadedPlugins) { - if (plugin.Metadata != null && plugin.PluginDirectory != null) - { - paths[plugin.Metadata.Id] = plugin.PluginDirectory; - } + plugin.Plugin!.UseSharedInterface(_interfaceManager); + plugin.Plugin!.OnSharedInterfaceInjected(_interfaceManager); } - return paths; } - public Dictionary GetAllPluginStatuses() + private void NotifyAllPluginsLoaded() { - var statuses = new Dictionary(); - foreach (var plugin in plugins) + foreach (var plugin in _plugins.Where(p => p.Status == PluginStatus.Loaded && p.Plugin != null)) { - if (plugin.Metadata != null) - { - statuses[plugin.Metadata.Id] = plugin.Status ?? PluginStatus.Indeterminate; - } + plugin.Plugin!.OnAllPluginsLoaded(); } - return statuses; } - public Dictionary GetAllPluginMetadata() + private static void EnumeratePluginDirectories( string directory, Action action ) { - var metadatas = new Dictionary(); - foreach (var plugin in plugins) + foreach (var pluginDir in Directory.GetDirectories(directory)) { - if (plugin.Metadata != null) + var dirName = Path.GetFileName(pluginDir); + + // Handle nested plugin directories (e.g., [category]) + if (dirName.Trim().StartsWith('[') && dirName.EndsWith(']')) { - metadatas[plugin.Metadata.Id] = plugin.Metadata; + EnumeratePluginDirectories(pluginDir, action); + continue; } - } - return metadatas; - } - public IEnumerable GetAllPlugins() - { - foreach (var plugin in plugins) - { - if (plugin.Metadata != null) + // Skip disabled directories + if (IsDisabledDirectory(dirName)) { - yield return plugin.Metadata.Id; + continue; } + + action(pluginDir); } } + + private static bool IsDisabledDirectory( string dirName ) + { + var trimmed = dirName.Trim(); + + return trimmed.Equals("disable", StringComparison.OrdinalIgnoreCase) || + trimmed.Equals("disabled", StringComparison.OrdinalIgnoreCase) || + trimmed.Equals("_", StringComparison.OrdinalIgnoreCase) || + (trimmed.Length >= 2 && trimmed.StartsWith('_')); + } + + private string GetDisplayPath( string pluginDirectory ) + { + var relativePath = Path.GetRelativePath(_rootDirService.GetRoot(), pluginDirectory); + return Path.Join("(swRoot)", relativePath); + } + + private static string GetPluginEntrypointPath( string directory ) + { + var dirName = Path.GetFileName(directory); + return Path.Combine(directory, $"{dirName}.dll"); + } + + private void LogPluginLoadSuccess( PluginContext context, string displayPath ) + { + _logger.LogInformation( + string.Join("\n", [ + "Loaded Plugin", + "├─ {Id} {Version}", + "├─ Author: {Author}", + "└─ Path: {RelativePath}" + ]), + context.Metadata!.Id, + context.Metadata!.Version, + context.Metadata!.Author, + displayPath); + } +} + +internal static class StringExtensions +{ + public static string TrimEnd( this string source, string suffix, StringComparison comparison ) + { + return source.EndsWith(suffix, comparison) + ? source[..^suffix.Length] + : source; + } } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Core/Modules/Plugins/SwiftlyCore.cs b/managed/src/SwiftlyS2.Core/Modules/Plugins/SwiftlyCore.cs index 22cb4ad98..b241e3bd5 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Plugins/SwiftlyCore.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Plugins/SwiftlyCore.cs @@ -76,8 +76,6 @@ internal class SwiftlyCore : ISwiftlyCore, IDisposable public Localizer Localizer { get; init; } public PermissionManager PermissionManager { get; init; } public RegistratorService RegistratorService { get; init; } - // [Obsolete("MenuManager will be deprecared at the release of SwiftlyS2. Please use MenuManagerAPI instead")] - // public MenuManager MenuManager { get; init; } public MenuManagerAPI MenuManagerAPI { get; init; } public CommandLineService CommandLineService { get; init; } public HelpersService Helpers { get; init; } @@ -126,7 +124,7 @@ public SwiftlyCore( string contextId, string contextBaseDirectory, PluginMetadat .AddSingleton() .AddSingleton() .AddSingleton() - .AddSingleton(provider => provider.GetRequiredService().GetLocalizer()) + .AddSingleton(provider => provider.GetRequiredService().GetLocalizer()) .AddSingleton() // .AddSingleton() .AddSingleton() @@ -235,11 +233,9 @@ public void Dispose() ISchedulerService ISwiftlyCore.Scheduler => SchedulerService; IDatabaseService ISwiftlyCore.Database => DatabaseService; ITranslationService ISwiftlyCore.Translation => TranslationService; - ILocalizer ISwiftlyCore.Localizer => Localizer; + ILocalizer ISwiftlyCore.Localizer => TranslationService.GetLocalizer(); IPermissionManager ISwiftlyCore.Permission => PermissionManager; IRegistratorService ISwiftlyCore.Registrator => RegistratorService; - // [Obsolete("MenuManager will be deprecared at the release of SwiftlyS2. Please use MenuManagerAPI instead")] - // IMenuManager ISwiftlyCore.Menus => MenuManager; IMenuManagerAPI ISwiftlyCore.MenusAPI => MenuManagerAPI; ICommandLine ISwiftlyCore.CommandLine => CommandLineService; IHelpers ISwiftlyCore.Helpers => Helpers; @@ -252,4 +248,5 @@ public void Dispose() string ISwiftlyCore.PluginDataDirectory => PluginDataDirectory; string ISwiftlyCore.CSGODirectory => NativeEngineHelpers.GetCSGODirectoryPath(); string ISwiftlyCore.GameDirectory => NativeEngineHelpers.GetGameDirectoryPath(); + bool ISwiftlyCore.IsGameThread => NativeCore.IsMainThread(); } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Core/Modules/Scheduler/SchedulerManager.cs b/managed/src/SwiftlyS2.Core/Modules/Scheduler/SchedulerManager.cs index b9c51dab8..dffa7c8b6 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Scheduler/SchedulerManager.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Scheduler/SchedulerManager.cs @@ -2,9 +2,6 @@ using Spectre.Console; using SwiftlyS2.Core.Natives; using SwiftlyS2.Shared.Scheduler; -using System.Collections.Generic; -using System.Linq; -using System.Threading; namespace SwiftlyS2.Core.Scheduler; @@ -22,27 +19,34 @@ internal static class SchedulerManager private static long _currentTick = 0; private static long _currentTimeMs = 0; - private static readonly ConcurrentQueue _asyncOnTickTaskQueue = new(); - private static readonly ConcurrentQueue _asyncOnWorldUpdateTaskQueue = new(); + private static readonly ConcurrentQueue _asyncOnTickTaskQueue = []; + private static readonly ConcurrentQueue _asyncOnWorldUpdateTaskQueue = []; // Min-heap keyed by DueTick private static readonly PriorityQueue _timerQueue = new(); private static readonly PriorityQueue _timerQueueMs = new(); // Next-tick tasks keyed by guid so services can remove them before they run - private static readonly List<(Action action, CancellationToken ownerToken)> _nextTickTasks = new(); + private static readonly List<(Action action, CancellationToken ownerToken)> _nextTickTasks = []; - private static readonly List<(Action action, CancellationToken ownerToken)> _nextWorldUpdateTasks = new(); + private static readonly List<(Action action, CancellationToken ownerToken)> _nextWorldUpdateTasks = []; public static void OnWorldUpdate() { - ExecuteOnWorldUpdateAsyncTasks(); - ExecuteOnWorldUpdateTimers(); + try + { + ExecuteOnWorldUpdateAsyncTasks(); + ExecuteOnWorldUpdateTimers(); + } + catch (Exception ex) + { + if (GlobalExceptionHandler.Handle(ex)) AnsiConsole.WriteException(ex); + } } private static void ExecuteOnWorldUpdateAsyncTasks() { - int batchCount = _asyncOnWorldUpdateTaskQueue.Count; + var batchCount = _asyncOnWorldUpdateTaskQueue.Count; while (batchCount > 0 && _asyncOnWorldUpdateTaskQueue.TryDequeue(out var task)) { batchCount--; @@ -89,13 +93,20 @@ private static void ExecuteOnWorldUpdateTimers() public static void OnTick() { _currentTimeMs = DateTimeOffset.Now.ToUnixTimeMilliseconds(); - ExecuteOnTickAsyncTasks(); - ExecuteOnTickTimers(); + try + { + ExecuteOnTickAsyncTasks(); + ExecuteOnTickTimers(); + } + catch (Exception ex) + { + if (GlobalExceptionHandler.Handle(ex)) AnsiConsole.WriteException(ex); + } } private static void ExecuteOnTickAsyncTasks() { - int batchCount = _asyncOnTickTaskQueue.Count; + var batchCount = _asyncOnTickTaskQueue.Count; while (batchCount > 0 && _asyncOnTickTaskQueue.TryDequeue(out var task)) { batchCount--; @@ -105,7 +116,7 @@ private static void ExecuteOnTickAsyncTasks() } catch (Exception ex) { - AnsiConsole.WriteException(ex); + if (GlobalExceptionHandler.Handle(ex)) AnsiConsole.WriteException(ex); } } } @@ -128,7 +139,7 @@ private static void ExecuteOnTickTimers() { if (!_timerQueue.TryPeek(out var timer, out var due)) break; if (due > _currentTick) break; - _timerQueue.Dequeue(); + _ = _timerQueue.Dequeue(); // Skip canceled/owner-disposed timers if (timer.CancellationTokenSource.IsCancellationRequested || timer.OwnerToken.IsCancellationRequested) @@ -143,7 +154,7 @@ private static void ExecuteOnTickTimers() { if (!_timerQueueMs.TryPeek(out var timer, out var due)) break; if (due > _currentTimeMs) break; - _timerQueueMs.Dequeue(); + _ = _timerQueueMs.Dequeue(); // Skip canceled/owner-disposed timers if (timer.CancellationTokenSource.IsCancellationRequested || timer.OwnerToken.IsCancellationRequested) @@ -167,8 +178,7 @@ private static void ExecuteOnTickTimers() } catch (Exception ex) { - if (!GlobalExceptionHandler.Handle(ex)) return; - AnsiConsole.WriteException(ex); + if (GlobalExceptionHandler.Handle(ex)) AnsiConsole.WriteException(ex); } } } @@ -184,8 +194,7 @@ private static void ExecuteOnTickTimers() } catch (Exception ex) { - if (!GlobalExceptionHandler.Handle(ex)) return; - AnsiConsole.WriteException(ex); + if (GlobalExceptionHandler.Handle(ex)) AnsiConsole.WriteException(ex); } } } @@ -213,6 +222,7 @@ private static void ExecuteTimer( Timer timer ) _timerQueueMs.Enqueue(timer, timer.Context.ExpectedNextTimeMs); break; case TimerStep.StopStep: + if (timer.CancellationTokenSource.IsCancellationRequested) break; timer.CancellationTokenSource.Cancel(); break; default: @@ -241,7 +251,8 @@ public static CancellationTokenSource AddTimer( Func ta var cancellationTokenSource = new CancellationTokenSource(); - var _ = NextTickAsync(() => { + var _ = NextTickAsync(() => + { var timer = new Timer { Task = task, CancellationTokenSource = cancellationTokenSource, @@ -382,11 +393,6 @@ public static Task QueueOrNow( Action action ) public static Task QueueOrNow( Func task ) { - if (NativeBinding.IsMainThread) - { - return Task.FromResult(task()); - } - - return NextWorldUpdateAsync(task); + return NativeBinding.IsMainThread ? Task.FromResult(task()) : NextWorldUpdateAsync(task); } } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Core/Modules/Scheduler/SchedulerService.cs b/managed/src/SwiftlyS2.Core/Modules/Scheduler/SchedulerService.cs index 065d71e69..e0957f670 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Scheduler/SchedulerService.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Scheduler/SchedulerService.cs @@ -5,7 +5,7 @@ namespace SwiftlyS2.Core.Scheduler; internal class SchedulerService : ISchedulerService, IDisposable { - private readonly List _timers = new(); + private readonly List _timers = []; private readonly Lock _lock = new(); private readonly CancellationTokenSource _lifecycleCts = new(); private CancellationTokenSource _mapChangeCts = new(); @@ -175,14 +175,14 @@ public CancellationTokenSource AddTimer( Func task ) public void StopOnMapChange( CancellationTokenSource cts ) { - _mapChangeCts.Token.Register(cts.Cancel); + _ = _mapChangeCts.Token.Register(cts.Cancel); } private void CleanFinishedTimers() { lock (_lock) { - _timers.RemoveAll(timer => timer.IsCancellationRequested); + _ = _timers.RemoveAll(timer => timer.IsCancellationRequested); } } diff --git a/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CBaseModelEntity.cs b/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CBaseModelEntity.cs index 1259d8aab..47cab8622 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CBaseModelEntity.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CBaseModelEntity.cs @@ -4,6 +4,30 @@ namespace SwiftlyS2.Shared.SchemaDefinitions; public partial interface CBaseModelEntity { + /// + /// Gets the skeletance instance of the entity. + /// + /// + public CSkeletonInstance? GetSkeletonInstance(); + + /// + /// Gets the model of the entity. + /// + /// + public string? GetModel(); + + /// + /// Gets the model meshgroupmask of the entity. + /// + /// + public ulong? GetMeshGroupMask(); + + /// + /// Sets the model meshgroupmask of the entity. + /// + /// + public void SetMeshGroupMask(ulong meshGroupMask); + /// /// Sets the model to the entity. /// @@ -11,13 +35,13 @@ public partial interface CBaseModelEntity /// /// The model path to be used. [ThreadUnsafe] - public void SetModel( string model ); + public void SetModel(string model); /// /// Sets the model to the entity asynchronously. /// /// The model path to be used. - public Task SetModelAsync( string model ); + public Task SetModelAsync(string model); /// /// Sets the bodygroup to the entity. @@ -25,14 +49,14 @@ public partial interface CBaseModelEntity /// Thread unsafe, use async variant instead for non-main thread context. /// [ThreadUnsafe] - public void SetBodygroupByName( string group, int value ); + public void SetBodygroupByName(string group, int value); /// /// Sets the bodygroup to the entity asynchronously. /// /// The name of the bodygroup to be set. /// The value to be set for the bodygroup. - public Task SetBodygroupByNameAsync( string group, int value ); + public Task SetBodygroupByNameAsync(string group, int value); /// /// Sets the scale of the entity. @@ -40,10 +64,10 @@ public partial interface CBaseModelEntity /// Thread unsafe, use async variant instead for non-main thread context. /// [ThreadUnsafe] - public void SetScale( float scale ); + public void SetScale(float scale); /// /// Sets the scale of the entity. /// - public Task SetScaleAsync( float scale ); + public Task SetScaleAsync(float scale); } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CBaseModelEntityImpl.cs b/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CBaseModelEntityImpl.cs index 3d51fa17a..9d4d0d5ae 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CBaseModelEntityImpl.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CBaseModelEntityImpl.cs @@ -6,31 +6,55 @@ namespace SwiftlyS2.Core.SchemaDefinitions; internal partial class CBaseModelEntityImpl : CBaseModelEntity { - public void SetModel( string model ) + public CSkeletonInstance? GetSkeletonInstance() + { + return CBodyComponent?.SceneNode?.GetSkeletonInstance(); + } + + public string? GetModel() + { + return GetSkeletonInstance()?.ModelState.ModelName; + } + + public void SetModel(string model) { NativeBinding.ThrowIfNonMainThread(); GameFunctions.SetModel(Address, model); } - public Task SetModelAsync( string model ) + public Task SetModelAsync(string model) { return SchedulerManager.QueueOrNow(() => SetModel(model)); } - public void SetBodygroupByName( string group, int value ) + public void SetBodygroupByName(string group, int value) { NativeBinding.ThrowIfNonMainThread(); AcceptInput("SetBodygroup", $"{group},{value}"); } - public Task SetBodygroupByNameAsync( string group, int value ) + public Task SetBodygroupByNameAsync(string group, int value) { return SchedulerManager.QueueOrNow(() => SetBodygroupByName(group, value)); } - public void SetScale( float scale ) + public ulong? GetMeshGroupMask() + { + return GetSkeletonInstance()?.ModelState.MeshGroupMask; + } + + public void SetMeshGroupMask(ulong meshGroupMask) + { + var skeletonInstance = GetSkeletonInstance(); + if (skeletonInstance == null) return; + + skeletonInstance.ModelState.MeshGroupMask = meshGroupMask; + CBodyComponentUpdated(); + } + + public void SetScale(float scale) { - var skeletonInstance = CBodyComponent?.SceneNode?.GetSkeletonInstance(); + var skeletonInstance = GetSkeletonInstance(); if (skeletonInstance == null) return; skeletonInstance.Scale = scale; @@ -38,17 +62,17 @@ public void SetScale( float scale ) CBodyComponentUpdated(); } - public Task SetScaleAsync( float scale ) + public Task SetScaleAsync(float scale) { return SchedulerManager.QueueOrNow(() => SetScale(scale)); } - public void ChangeSubclass( ushort itemDefinitionIndex ) + public void ChangeSubclass(ushort itemDefinitionIndex) { AcceptInput("ChangeSubclass", itemDefinitionIndex.ToString()); } - public Task ChangeSubclassAsync( ushort itemDefinitionIndex ) + public Task ChangeSubclassAsync(ushort itemDefinitionIndex) { return SchedulerManager.QueueOrNow(() => ChangeSubclass(itemDefinitionIndex)); } diff --git a/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CBasePlayerControllerImpl.cs b/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CBasePlayerControllerImpl.cs index 69a086a1c..67d58da7b 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CBasePlayerControllerImpl.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CBasePlayerControllerImpl.cs @@ -9,15 +9,15 @@ internal partial class CBasePlayerControllerImpl : CBasePlayerController { public void SetPawn( CBasePlayerPawn? pawn ) { - nint? handle = pawn?.Address; + var handle = pawn?.Address; GameFunctions.SetPlayerControllerPawn(Address, handle ?? IntPtr.Zero, true, false, false, false); } public IPlayer? ToPlayer() { if (!IsValid) return null; - var player = PlayerManagerService.PlayerObjects[(int)(Index - 1)]; - if (player is not { IsValid: true } || !NativePlayerManager.IsPlayerOnline(player.PlayerID)) return null; - return player; + if (!PlayerManagerService.PlayerObjects.TryGetValue((int)(Index - 1), out var player)) return null; + + return player is { IsValid: true } ? player : null; } } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CEntityInstance.cs b/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CEntityInstance.cs index c65bb05fe..78db1a692 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CEntityInstance.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CEntityInstance.cs @@ -1,4 +1,3 @@ -using SwiftlyS2.Core.EntitySystem; using SwiftlyS2.Shared.EntitySystem; using SwiftlyS2.Shared.Misc; @@ -6,7 +5,10 @@ namespace SwiftlyS2.Shared.SchemaDefinitions; public partial interface CEntityInstance : IEquatable { - + /// + /// Whether the entity instance is valid. + /// + public new bool IsValid { get; } /// /// The index of the entity. diff --git a/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CEntityInstanceImpl.cs b/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CEntityInstanceImpl.cs index 073058581..03fc596b4 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CEntityInstanceImpl.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CEntityInstanceImpl.cs @@ -3,6 +3,7 @@ using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.EntitySystem; using SwiftlyS2.Shared.SchemaDefinitions; +using SwiftlyS2.Core.EntitySystem; namespace SwiftlyS2.Core.SchemaDefinitions; @@ -11,11 +12,22 @@ internal partial class CEntityInstanceImpl : CEntityInstance, IEquatable Entity?.EntityHandle.EntityIndex ?? uint.MaxValue; public string DesignerName => Entity?.DesignerName ?? string.Empty; - public bool IsValidEntity => NativeEntitySystem.IsValidEntity(Address); + public new bool IsValid => base.IsValid && IsValidEntity; + + public bool IsValidEntity => EntityManager.IsAddressValid(Address); + + private void ThrowIfInvalidEntity() + { + if (!IsValidEntity) + { + throw new InvalidOperationException("The entity instance is no longer valid."); + } + } public unsafe void AcceptInput( string input, T? value, CEntityInstance? activator = null, CEntityInstance? caller = null, int outputID = 0 ) { NativeBinding.ThrowIfNonMainThread(); + ThrowIfInvalidEntity(); using var variant = new CVariant(value); @@ -30,6 +42,7 @@ public Task AcceptInputAsync( string input, T? value, CEntityInstance? activa public unsafe void AddEntityIOEvent( string input, T? value, CEntityInstance? activator = null, CEntityInstance? caller = null, float delay = 0f ) { NativeBinding.ThrowIfNonMainThread(); + ThrowIfInvalidEntity(); using var variant = new CVariant(value); @@ -43,21 +56,25 @@ public Task AddEntityIOEventAsync( string input, T? value, CEntityInstance? a public void SetTransmitState( bool transmitting, int playerId ) { + ThrowIfInvalidEntity(); NativePlayer.ShouldBlockTransmitEntity(playerId, (int)Index, !transmitting); } public void SetTransmitState( bool transmitting ) { + ThrowIfInvalidEntity(); NativePlayerManager.ShouldBlockTransmitEntity((int)Index, !transmitting); } public bool IsTransmitting( int playerId ) { + ThrowIfInvalidEntity(); return !NativePlayer.IsTransmitEntityBlocked(playerId, (int)Index); } public void DispatchSpawn( CEntityKeyValues? entityKV = null ) { + ThrowIfInvalidEntity(); NativeEntitySystem.Spawn(Address, entityKV?.Address ?? nint.Zero); } @@ -68,6 +85,7 @@ public Task DispatchSpawnAsync( CEntityKeyValues? entityKV = null ) public void Despawn() { + ThrowIfInvalidEntity(); NativeEntitySystem.Despawn(Address); } diff --git a/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CGameSceneNode.cs b/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CGameSceneNode.cs index 5096b6462..ae32596b9 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CGameSceneNode.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CGameSceneNode.cs @@ -1,4 +1,4 @@ -namespace SwiftlyS2.Shared.SchemaDefinitions; +namespace SwiftlyS2.Shared.SchemaDefinitions; public partial interface CGameSceneNode { diff --git a/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CGameSceneNodeImpl.cs b/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CGameSceneNodeImpl.cs index e0896c10c..a32cc9d92 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CGameSceneNodeImpl.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CGameSceneNodeImpl.cs @@ -1,4 +1,4 @@ -using SwiftlyS2.Core.Natives; +using SwiftlyS2.Core.Natives; using SwiftlyS2.Shared.SchemaDefinitions; namespace SwiftlyS2.Core.SchemaDefinitions; diff --git a/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CPlayer_WeaponServices.cs b/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CPlayer_WeaponServices.cs index 047caa51a..445ae9bc2 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CPlayer_WeaponServices.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CPlayer_WeaponServices.cs @@ -1,4 +1,5 @@ using SwiftlyS2.Shared.Misc; +using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.Schemas; namespace SwiftlyS2.Shared.SchemaDefinitions; @@ -20,6 +21,23 @@ public partial interface CPlayer_WeaponServices /// The weapon to drop. public Task DropWeaponAsync( CBasePlayerWeapon weapon ); + /// + /// Drop a weapon. + /// + /// Thread unsafe, use async variant instead for non-main thread context. + /// + /// The weapon to drop. + /// The momentum to apply to the dropped weapon. + [ThreadUnsafe] + public void DropWeapon( CBasePlayerWeapon weapon, Vector momentum ); + + /// + /// Drop a weapon asynchronously. + /// + /// The weapon to drop. + /// The momentum to apply to the dropped weapon. + public Task DropWeaponAsync( CBasePlayerWeapon weapon, Vector momentum ); + /// /// Drop and remove a weapon. /// @@ -58,12 +76,29 @@ public partial interface CPlayer_WeaponServices [ThreadUnsafe] public void DropWeaponBySlot( gear_slot_t slot ); + /// + /// Drop a weapon by slot. + /// + /// Thread unsafe, use async variant instead for non-main thread context. + /// + /// The slot to drop the weapon from. + /// The momentum to apply to the dropped weapon. + [ThreadUnsafe] + public void DropWeaponBySlot( gear_slot_t slot, Vector momentum ); + /// /// Drop a weapon by slot asynchronously. /// /// The slot to drop the weapon from. public Task DropWeaponBySlotAsync( gear_slot_t slot ); + /// + /// Drop a weapon by slot asynchronously. + /// + /// The slot to drop the weapon from. + /// The momentum to apply to the dropped weapon. + public Task DropWeaponBySlotAsync( gear_slot_t slot, Vector momentum ); + /// /// Remove a weapon by slot. /// @@ -103,12 +138,29 @@ public partial interface CPlayer_WeaponServices [ThreadUnsafe] public void DropWeaponByDesignerName( string designerName ); + /// + /// Drop a weapon by designer name. + /// + /// Thread unsafe, use async variant instead for non-main thread context. + /// + /// The designer name of the weapon to drop. + /// The momentum to apply to the dropped weapon. + [ThreadUnsafe] + public void DropWeaponByDesignerName( string designerName, Vector momentum ); + /// /// Drop a weapon by designer name asynchronously. /// /// The designer name of the weapon to drop. public Task DropWeaponByDesignerNameAsync( string designerName ); + /// + /// Drop a weapon by designer name asynchronously. + /// + /// The designer name of the weapon to drop. + /// The momentum to apply to the dropped weapon. + public Task DropWeaponByDesignerNameAsync( string designerName, Vector momentum ); + /// /// Remove a weapon by designer name. /// @@ -148,12 +200,29 @@ public partial interface CPlayer_WeaponServices [ThreadUnsafe] public void DropWeaponByClass() where T : class, ISchemaClass; + /// + /// Drop all weapons with the specified class. + /// + /// Thread unsafe, use async variant instead for non-main thread context. + /// + /// The weapon class. + /// The momentum to apply to the dropped weapon. + [ThreadUnsafe] + public void DropWeaponByClass( Vector momentum ) where T : class, ISchemaClass; + /// /// Drop all weapons with the specified class asynchronously. /// /// The weapon class. public Task DropWeaponByClassAsync() where T : class, ISchemaClass; + /// + /// Drop all weapons with the specified class asynchronously. + /// + /// The weapon class. + /// The momentum to apply to the dropped weapon. + public Task DropWeaponByClassAsync( Vector momentum ) where T : class, ISchemaClass; + /// /// Drop and remove all weapons with the specified class. /// diff --git a/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CPlayer_WeaponServicesImpl.cs b/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CPlayer_WeaponServicesImpl.cs index 6b0d613fd..2cfe93a84 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CPlayer_WeaponServicesImpl.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Schemas/Extensions/CPlayer_WeaponServicesImpl.cs @@ -1,6 +1,6 @@ -using SwiftlyS2.Core.EntitySystem; using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.Scheduler; +using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.SchemaDefinitions; using SwiftlyS2.Shared.Schemas; @@ -11,13 +11,28 @@ internal partial class CPlayer_WeaponServicesImpl public void DropWeapon( CBasePlayerWeapon weapon ) { NativeBinding.ThrowIfNonMainThread(); - GameFunctions.CCSPlayer_WeaponServices_DropWeapon(Address, weapon.Address); + unsafe + { + GameFunctions.CCSPlayer_WeaponServices_DropWeapon(Address, weapon.Address, null); + } + } + + public void DropWeapon( CBasePlayerWeapon weapon, Vector momentum ) + { + NativeBinding.ThrowIfNonMainThread(); + unsafe + { + GameFunctions.CCSPlayer_WeaponServices_DropWeapon(Address, weapon.Address, &momentum); + } } public void RemoveWeapon( CBasePlayerWeapon weapon ) { NativeBinding.ThrowIfNonMainThread(); - GameFunctions.CCSPlayer_WeaponServices_DropWeapon(Address, weapon.Address); + unsafe + { + GameFunctions.CCSPlayer_WeaponServices_DropWeapon(Address, weapon.Address, null); + } weapon.Despawn(); } @@ -39,6 +54,18 @@ public void DropWeaponBySlot( gear_slot_t slot ) }); } + public void DropWeaponBySlot( gear_slot_t slot, Vector momentum ) + { + NativeBinding.ThrowIfNonMainThread(); + MyWeapons.ToList().ForEach(weapon => + { + if (weapon.Value?.As().WeaponBaseVData.GearSlot == slot) + { + DropWeapon(weapon.Value, momentum); + } + }); + } + public void RemoveWeaponBySlot( gear_slot_t slot ) { NativeBinding.ThrowIfNonMainThread(); @@ -76,6 +103,18 @@ public void DropWeaponByDesignerName( string designerName ) }); } + public void DropWeaponByDesignerName( string designerName, Vector momentum ) + { + NativeBinding.ThrowIfNonMainThread(); + MyWeapons.ToList().ForEach(weapon => + { + if (weapon.Value?.Entity?.DesignerName == designerName) + { + DropWeapon(weapon.Value, momentum); + } + }); + } + public void RemoveWeaponByDesignerName( string designerName ) { NativeBinding.ThrowIfNonMainThread(); @@ -113,6 +152,19 @@ public void DropWeaponByClass() where T : class, ISchemaClass DropWeaponByDesignerName(name); } + public void DropWeaponByClass( Vector momentum ) where T : class, ISchemaClass + { + NativeBinding.ThrowIfNonMainThread(); + var name = T.ClassName; + if (name == null) + { + throw new ArgumentException( + $"Can't drop weapon with class {typeof(T).Name}, which doesn't have a designer name."); + } + + DropWeaponByDesignerName(name, momentum); + } + public void RemoveWeaponByClass() where T : class, ISchemaClass { NativeBinding.ThrowIfNonMainThread(); @@ -144,6 +196,11 @@ public Task DropWeaponAsync( CBasePlayerWeapon weapon ) return SchedulerManager.QueueOrNow(() => DropWeapon(weapon)); } + public Task DropWeaponAsync( CBasePlayerWeapon weapon, Vector momentum ) + { + return SchedulerManager.QueueOrNow(() => DropWeapon(weapon, momentum)); + } + public Task RemoveWeaponAsync( CBasePlayerWeapon weapon ) { return SchedulerManager.QueueOrNow(() => RemoveWeapon(weapon)); @@ -159,6 +216,11 @@ public Task DropWeaponBySlotAsync( gear_slot_t slot ) return SchedulerManager.QueueOrNow(() => DropWeaponBySlot(slot)); } + public Task DropWeaponBySlotAsync( gear_slot_t slot, Vector momentum ) + { + return SchedulerManager.QueueOrNow(() => DropWeaponBySlot(slot, momentum)); + } + public Task RemoveWeaponBySlotAsync( gear_slot_t slot ) { return SchedulerManager.QueueOrNow(() => RemoveWeaponBySlot(slot)); @@ -174,6 +236,11 @@ public Task DropWeaponByDesignerNameAsync( string designerName ) return SchedulerManager.QueueOrNow(() => DropWeaponByDesignerName(designerName)); } + public Task DropWeaponByDesignerNameAsync( string designerName, Vector momentum ) + { + return SchedulerManager.QueueOrNow(() => DropWeaponByDesignerName(designerName, momentum)); + } + public Task RemoveWeaponByDesignerNameAsync( string designerName ) { return SchedulerManager.QueueOrNow(() => RemoveWeaponByDesignerName(designerName)); @@ -189,6 +256,11 @@ public Task DropWeaponByClassAsync() where T : class, ISchemaClass return SchedulerManager.QueueOrNow(() => DropWeaponByClass()); } + public Task DropWeaponByClassAsync( Vector momentum ) where T : class, ISchemaClass + { + return SchedulerManager.QueueOrNow(() => DropWeaponByClass(momentum)); + } + public Task RemoveWeaponByClassAsync() where T : class, ISchemaClass { return SchedulerManager.QueueOrNow(() => RemoveWeaponByClass()); diff --git a/managed/src/SwiftlyS2.Core/Modules/Schemas/Schema.cs b/managed/src/SwiftlyS2.Core/Modules/Schemas/Schema.cs index d1b911b67..ffb0d330e 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Schemas/Schema.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Schemas/Schema.cs @@ -5,12 +5,13 @@ using System.Buffers; using System.Runtime.InteropServices; using SwiftlyS2.Shared.Natives; +using SwiftlyS2.Core.Scheduler; namespace SwiftlyS2.Core.Schemas; internal static class Schema { - private static readonly HashSet dangerousFields = new() { + private static readonly HashSet dangerousFields = [ 0x509D90A88DFCB984, // CMaterialAttributeAnimTag.m_flValue 0xCB1D2D708DFCB984, // CNmConstFloatNode__CDefinition.m_flValue 0xB6A452E28DFCB984, // MaterialParamFloat_t.m_flValue @@ -44,18 +45,16 @@ internal static class Schema 0xCD91F684A1B165B2, // CEconEntity.m_nFallbackSeed 0xCD91F68486253266, // CEconEntity.m_flFallbackWear 0xCD91F68467ECC1E7, // CEconEntity.m_nFallbackStatTrak - }; + ]; public static bool isFollowingServerGuidelines = NativeServerHelpers.IsFollowingServerGuidelines(); [MethodImpl(MethodImplOptions.AggressiveInlining)] public static nint GetOffset( ulong hash ) { - if (isFollowingServerGuidelines && dangerousFields.Contains(hash)) - { - throw new InvalidOperationException($"Cannot get or set 0x{hash:X16} while \"FollowCS2ServerGuidelines\" is enabled.\n\tTo use this operation, disable the option in core.jsonc."); - } - return NativeSchema.GetOffset(hash); + return isFollowingServerGuidelines && dangerousFields.Contains(hash) + ? throw new InvalidOperationException($"Cannot get or set 0x{hash:X16} while \"FollowCS2ServerGuidelines\" is enabled.\n\tTo use this operation, disable the option in core.jsonc.") + : NativeSchema.GetOffset(hash); } [MethodImpl(MethodImplOptions.AggressiveInlining)] @@ -65,7 +64,7 @@ public static void Update( nint handle, ulong hash ) { throw new InvalidOperationException($"Cannot get or set 0x{hash:X16} while \"FollowCS2ServerGuidelines\" is enabled.\n\tTo use this operation, disable the option in core.jsonc."); } - NativeSchema.SetStateChanged(handle, hash); + _ = SchedulerManager.QueueOrNow(() => NativeSchema.SetStateChanged(handle, hash)); } [MethodImpl(MethodImplOptions.AggressiveInlining)] @@ -84,7 +83,7 @@ public static void SetFixedString( nint handle, nint offset, string value, int m throw new ArgumentException("Value is too long. Max size is " + maxSize); } var bytes = pool.Rent(size + 1); - Encoding.UTF8.GetBytes(value, bytes); + _ = Encoding.UTF8.GetBytes(value, bytes); bytes[size] = 0; Unsafe.CopyBlockUnaligned( ref handle.AsRef(offset), diff --git a/managed/src/SwiftlyS2.Core/Modules/Schemas/SchemaClass.cs b/managed/src/SwiftlyS2.Core/Modules/Schemas/SchemaClass.cs index 440c9c49e..dc1097957 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Schemas/SchemaClass.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Schemas/SchemaClass.cs @@ -1,12 +1,11 @@ -using System.Security.Cryptography.X509Certificates; using SwiftlyS2.Core.Natives.NativeObjects; -using SwiftlyS2.Shared.Natives; -using SwiftlyS2.Shared.Schemas; namespace SwiftlyS2.Core.Schemas; -internal abstract class SchemaClass : NativeHandle { - public SchemaClass(nint handle) : base(handle) { +internal abstract class SchemaClass : NativeHandle +{ + public SchemaClass( nint handle ) : base(handle) + { } } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Core/Modules/Schemas/SchemaClassFixedArray.cs b/managed/src/SwiftlyS2.Core/Modules/Schemas/SchemaClassFixedArray.cs index 916d3d1cd..55223ed10 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Schemas/SchemaClassFixedArray.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Schemas/SchemaClassFixedArray.cs @@ -1,4 +1,3 @@ -using System.Reflection.Metadata; using SwiftlyS2.Shared.Schemas; namespace SwiftlyS2.Core.Schemas; diff --git a/managed/src/SwiftlyS2.Core/Modules/Schemas/SchemaField.cs b/managed/src/SwiftlyS2.Core/Modules/Schemas/SchemaField.cs index 32f1fe49c..ab5343c65 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Schemas/SchemaField.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Schemas/SchemaField.cs @@ -5,12 +5,7 @@ namespace SwiftlyS2.Core.Schemas; internal abstract class SchemaField : NativeHandle, ISchemaField { - - private ulong _hash { get; set; } = 0; - public SchemaField( nint handle, ulong hash ) : base(handle + Schema.GetOffset(hash)) { - _hash = hash; } - } diff --git a/managed/src/SwiftlyS2.Core/Modules/StringPool/StringPool.cs b/managed/src/SwiftlyS2.Core/Modules/StringPool/StringPool.cs index 46446691a..a5c91b503 100644 --- a/managed/src/SwiftlyS2.Core/Modules/StringPool/StringPool.cs +++ b/managed/src/SwiftlyS2.Core/Modules/StringPool/StringPool.cs @@ -1,6 +1,5 @@ using System.Collections.Concurrent; using System.Text; -using SwiftlyS2.Core.Natives; namespace SwiftlyS2.Core.Natives; @@ -29,7 +28,7 @@ public static nint Allocate( string str ) } var byteCount = Encoding.UTF8.GetByteCount(str); - var neededSize = byteCount + 1; + var neededSize = byteCount + 1; if (neededSize > BLOCK_SIZE / 2) { @@ -60,7 +59,7 @@ public static nint Allocate( string str ) private static unsafe void WriteBytes( nint addr, string str, int length ) { var span = new Span(addr.ToPointer(), length + 1); - Encoding.UTF8.GetBytes(str, span); + _ = Encoding.UTF8.GetBytes(str, span); span[length] = 0; } } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Core/Modules/StringTable/StringTable.cs b/managed/src/SwiftlyS2.Core/Modules/StringTable/StringTable.cs index 247604c18..f06d0cb05 100644 --- a/managed/src/SwiftlyS2.Core/Modules/StringTable/StringTable.cs +++ b/managed/src/SwiftlyS2.Core/Modules/StringTable/StringTable.cs @@ -27,11 +27,7 @@ internal class StringTable( nint handle, INetMessageService netMessageService ) public string? GetString( int index ) { - if (!IsStringIndexValid(index)) - { - return null; - } - return NativeStringTable.GetString(handle, index); + return !IsStringIndexValid(index) ? null : NativeStringTable.GetString(handle, index); } public bool TryGetStringUserData( int index, out StringTableOutUserData result ) @@ -62,11 +58,7 @@ public bool TryGetStringUserData( int index, out StringTableOutUserData result ) public StringTableOutUserData GetStringUserData( int index ) { - if (!TryGetStringUserData(index, out var result)) - { - return default; - } - return result; + return !TryGetStringUserData(index, out var result) ? default : result; } public bool TryGetStringUserData( string str, out StringTableOutUserData result ) @@ -82,11 +74,7 @@ public bool TryGetStringUserData( string str, out StringTableOutUserData result public StringTableOutUserData GetStringUserData( string str ) { - if (!TryGetStringUserData(str, out var result)) - { - return default; - } - return result; + return !TryGetStringUserData(str, out var result) ? default : result; } public bool SetStringUserData( int index, StringTableUserData userData, bool forceOverride = true ) @@ -107,11 +95,9 @@ public bool SetStringUserData( int index, StringTableUserData userData, bool for public bool SetStringUserData( string str, StringTableUserData userData, bool forceOverride = true ) { var index = FindStringIndex(str); - if (index is null) - { - throw new ArgumentException("Failed to set string user data. String is not found in string table."); - } - return SetStringUserData(index!.Value, userData, forceOverride); + return index is null + ? throw new ArgumentException("Failed to set string user data. String is not found in string table.") + : SetStringUserData(index!.Value, userData, forceOverride); } public bool SetOrAddStringUserData( string str, StringTableUserData userData, bool forceOverride = true ) diff --git a/managed/src/SwiftlyS2.Core/Modules/Translations/Localizer.cs b/managed/src/SwiftlyS2.Core/Modules/Translations/Localizer.cs index 6122aae6b..6df12dba0 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Translations/Localizer.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Translations/Localizer.cs @@ -1,38 +1,28 @@ -using SwiftlyS2.Shared.Services; using SwiftlyS2.Shared.Translation; namespace SwiftlyS2.Core.Translations; internal class Localizer : ILocalizer { - private Dictionary _Resource { get; init; } - private Dictionary _DefaultResource { get; init; } + private Dictionary _Resource { get; init; } + private Dictionary _DefaultResource { get; init; } - - - public Localizer( Dictionary resource, Dictionary defaultResource ) - { - _Resource = resource; - _DefaultResource = defaultResource; - } - - public string this[string key] => Get(key); - - public string this[string key, params object[] args] => string.Format(this[key], args); - - public string Get( string key ) - { - if (_Resource.TryGetValue(key, out var value)) + public Localizer( Dictionary resource, Dictionary defaultResource ) { - return value; + _Resource = resource; + _DefaultResource = defaultResource; } - if (_DefaultResource.TryGetValue(key, out var defaultValue)) - { - return defaultValue; - } + public string this[string key] => Get(key); - throw new Exception($"Translation key {key} not found."); - } + public string this[string key, params object[] args] => string.Format(this[key], args); + public string Get( string key ) + { + return _Resource.TryGetValue(key, out var value) + ? value + : _DefaultResource.TryGetValue(key, out var defaultValue) + ? defaultValue + : throw new Exception($"Translation key {key} not found."); + } } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Core/Modules/Translations/TranslationFactory.cs b/managed/src/SwiftlyS2.Core/Modules/Translations/TranslationFactory.cs index 0c2328d31..4b30d3db9 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Translations/TranslationFactory.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Translations/TranslationFactory.cs @@ -6,7 +6,7 @@ namespace SwiftlyS2.Core.Translations; internal class TranslationResource { - public Dictionary> Resources { get; set; } = new(); + public Dictionary> Resources { get; set; } = []; } internal class TranslationFactory @@ -38,7 +38,7 @@ public static TranslationResource Create( string resourceDir ) ReadCommentHandling = JsonCommentHandling.Skip, }; - var translation = JsonSerializer.Deserialize>(File.ReadAllText(translationFile), options) ?? new(); + var translation = JsonSerializer.Deserialize>(File.ReadAllText(translationFile), options) ?? []; foreach (var translationEntry in translation) { translation[translationEntry.Key] = translationEntry.Value.Colored(); @@ -46,17 +46,11 @@ public static TranslationResource Create( string resourceDir ) resource.Resources[new Language(language)] = translation; } - if (resource.Resources.Count == 0) - { - throw new Exception("No translation files found."); - } - - if (!resource.Resources.ContainsKey(Language.English)) - { - throw new Exception("English primary translation file not found."); - } - - return resource; + return resource.Resources.Count == 0 + ? throw new Exception("No translation files found.") + : !resource.Resources.ContainsKey(Language.English) + ? throw new Exception("English primary translation file not found.") + : resource; } @@ -65,11 +59,8 @@ public static Localizer CreateLocalizer( TranslationResource resource, Language var defaultResource = resource.Resources[Language.English]; - if (!resource.Resources.ContainsKey(language)) - { - return new Localizer(defaultResource, defaultResource); - } - - return new Localizer(resource.Resources[language], defaultResource); + return !resource.Resources.TryGetValue(language, out var value) + ? new Localizer(defaultResource, defaultResource) + : new Localizer(value, defaultResource); } } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Core/Modules/Translations/TranslationService.cs b/managed/src/SwiftlyS2.Core/Modules/Translations/TranslationService.cs index cfc0cf970..43770ab50 100644 --- a/managed/src/SwiftlyS2.Core/Modules/Translations/TranslationService.cs +++ b/managed/src/SwiftlyS2.Core/Modules/Translations/TranslationService.cs @@ -1,5 +1,3 @@ -using System.Text.Json; -using Microsoft.Extensions.Logging; using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.Services; using SwiftlyS2.Shared.Players; @@ -9,15 +7,18 @@ namespace SwiftlyS2.Core.Translations; internal class TranslationService : ITranslationService { - private ILogger _Logger { get; init; } private CoreContext _Context { get; init; } private TranslationResource _TranslationResource { get; set; } = new(); - public TranslationService( ILogger logger, CoreContext context ) + public TranslationService( CoreContext context ) { - _Logger = logger; _Context = context; + CreateTranslationResource(); + } + + public void CreateTranslationResource() + { var translationDir = Path.Combine(_Context.BaseDirectory, "resources", "translations"); if (!Directory.Exists(translationDir)) diff --git a/managed/src/SwiftlyS2.Core/Natives/GameFunctions.cs b/managed/src/SwiftlyS2.Core/Natives/GameFunctions.cs index 2022c3321..d5b23d3ed 100644 --- a/managed/src/SwiftlyS2.Core/Natives/GameFunctions.cs +++ b/managed/src/SwiftlyS2.Core/Natives/GameFunctions.cs @@ -14,7 +14,7 @@ internal static class GameFunctions public static unsafe delegate* unmanaged< nint, CTakeDamageInfo*, CTakeDamageResult*, void > pTakeDamage; public static unsafe delegate* unmanaged< nint, Ray_t*, Vector*, Vector*, CTraceFilter*, CGameTrace*, void > pTraceShape; public static unsafe delegate* unmanaged< Vector*, Vector*, BBox_t*, CTraceFilter*, CGameTrace*, void > pTracePlayerBBox; - public static unsafe delegate* unmanaged< nint, IntPtr, void > pSetModel; + public static unsafe delegate* unmanaged< nint, IntPtr, nint > pSetModel; public static unsafe delegate* unmanaged< nint, nint, byte, byte, byte, byte, void > pSetPlayerControllerPawn; public static unsafe delegate* unmanaged< nint, nint, float, void > pSetOrAddAttribute; public static unsafe delegate* unmanaged< int, nint, nint > pGetWeaponCSDataFromKey; @@ -77,7 +77,7 @@ public static void Initialize() pTakeDamage = (delegate* unmanaged< nint, CTakeDamageInfo*, CTakeDamageResult*, void >)NativeSignatures.Fetch("CBaseEntity::TakeDamage"); pTraceShape = (delegate* unmanaged< nint, Ray_t*, Vector*, Vector*, CTraceFilter*, CGameTrace*, void >)NativeSignatures.Fetch("TraceShape"); pTracePlayerBBox = (delegate* unmanaged< Vector*, Vector*, BBox_t*, CTraceFilter*, CGameTrace*, void >)NativeSignatures.Fetch("TracePlayerBBox"); - pSetModel = (delegate* unmanaged< nint, IntPtr, void >)NativeSignatures.Fetch("CBaseModelEntity::SetModel"); + pSetModel = (delegate* unmanaged< nint, IntPtr, nint >)NativeSignatures.Fetch("CBaseModelEntity::SetModel"); pSetPlayerControllerPawn = (delegate* unmanaged< nint, nint, byte, byte, byte, byte, void >)NativeSignatures.Fetch("CBasePlayerController::SetPawn"); pSetOrAddAttribute = (delegate* unmanaged< nint, IntPtr, float, void >)NativeSignatures.Fetch("CAttributeList::SetOrAddAttributeValueByName"); pGetWeaponCSDataFromKey = (delegate* unmanaged< int, nint, nint >)NativeSignatures.Fetch("GetWeaponCSDataFromKey"); @@ -109,19 +109,7 @@ public static void DispatchParticleEffect( string particleName, uint attachmentT { try { - unsafe - { - var pool = ArrayPool.Shared; - var nameLength = Encoding.UTF8.GetByteCount(particleName); - var nameBuffer = pool.Rent(nameLength + 1); - _ = Encoding.UTF8.GetBytes(particleName, nameBuffer); - nameBuffer[nameLength] = 0; - fixed (byte* pParticleName = nameBuffer) - { - pDispatchParticleEffect((nint)pParticleName, attachmentType, entity, attachmentPoint, attachmentName, (byte)(resetAllParticlesOnEntity ? 1 : 0), splitScreenSlot, (nint)(&filter), IntPtr.Zero); - pool.Return(nameBuffer); - } - } + NativeEngineHelpers.DispatchParticleEffect(particleName, attachmentType, entity, attachmentPoint, attachmentName._pString, resetAllParticlesOnEntity, splitScreenSlot, filter.ToMask()); } catch (Exception e) { @@ -262,7 +250,7 @@ public static void SetModel( nint pEntity, string model ) modelBuffer[modelLength] = 0; fixed (byte* pModel = modelBuffer) { - pSetModel(pEntity, (IntPtr)pModel); + _ = pSetModel(pEntity, (IntPtr)pModel); pool.Return(modelBuffer); } } @@ -475,7 +463,7 @@ public static void CCSPlayer_ItemServices_DropActiveItem( nint pThis, Vector mom } } - public static void CCSPlayer_WeaponServices_DropWeapon( nint pThis, nint pWeapon ) + public static unsafe void CCSPlayer_WeaponServices_DropWeapon( nint pThis, nint pWeapon, Vector* momentum ) { try { @@ -483,8 +471,8 @@ public static void CCSPlayer_WeaponServices_DropWeapon( nint pThis, nint pWeapon { CheckPtr(pThis, nameof(pThis)); CheckPtr(pWeapon, nameof(pWeapon)); - var pDropWeapon = (delegate* unmanaged< nint, nint, nint, nint, void >)GetVirtualFunction(pThis, DropWeaponOffset); - pDropWeapon(pThis, pWeapon, 0, 0); + var pDropWeapon = (delegate* unmanaged< nint, nint, nint, Vector*, void >)GetVirtualFunction(pThis, DropWeaponOffset); + pDropWeapon(pThis, pWeapon, 0, momentum); } } catch (Exception e) diff --git a/managed/src/SwiftlyS2.Core/Natives/NativeBinding.cs b/managed/src/SwiftlyS2.Core/Natives/NativeBinding.cs index 2b9f4ef24..359575df0 100644 --- a/managed/src/SwiftlyS2.Core/Natives/NativeBinding.cs +++ b/managed/src/SwiftlyS2.Core/Natives/NativeBinding.cs @@ -1,15 +1,12 @@ using System.Reflection; using System.Runtime.InteropServices; using Spectre.Console; -using SwiftlyS2.Shared.Natives; namespace SwiftlyS2.Core.Natives; internal class NativeBinding { - public static int MainThreadID { get; private set; } - - public static bool IsMainThread => Environment.CurrentManagedThreadId == MainThreadID; + public static bool IsMainThread => NativeCore.IsMainThread(); public static void ThrowIfNonMainThread() { @@ -21,15 +18,13 @@ public static void ThrowIfNonMainThread() public static void BindNatives( IntPtr nativeTable, int nativeTableSize ) { - MainThreadID = Environment.CurrentManagedThreadId; unsafe { try { var pNativeTables = (NativeFunction*)nativeTable; - - for (int i = 0; i < nativeTableSize; i++) + for (var i = 0; i < nativeTableSize; i++) { var name = Marshal.PtrToStringUTF8(pNativeTables[i].Name)!; diff --git a/managed/src/SwiftlyS2.Core/Natives/NativeObjects/NativeHandle.cs b/managed/src/SwiftlyS2.Core/Natives/NativeObjects/NativeHandle.cs index 110ba7392..1b973d77f 100644 --- a/managed/src/SwiftlyS2.Core/Natives/NativeObjects/NativeHandle.cs +++ b/managed/src/SwiftlyS2.Core/Natives/NativeObjects/NativeHandle.cs @@ -13,5 +13,10 @@ public NativeHandle(nint handle) { _Handle = handle; } + internal void DangerousSetHandle(nint ptr) + { + _Handle = ptr; + } + public nint Address => _Handle; } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Core/Services/CoreCommandService.cs b/managed/src/SwiftlyS2.Core/Services/CoreCommandService.cs index bfa21339e..4f632960b 100644 --- a/managed/src/SwiftlyS2.Core/Services/CoreCommandService.cs +++ b/managed/src/SwiftlyS2.Core/Services/CoreCommandService.cs @@ -26,7 +26,7 @@ public CoreCommandService( ILogger logger, ISwiftlyCore core this.pluginManager = pluginManager; this.rootDirService = rootDirService; this.profileService = profileService; - _ = core.Command.RegisterCommand("sw", OnCommand, true); + _ = core.Command.RegisterCommand("sw", OnCommand, true, helpText: "SwiftlyS2 Core Command"); } private void OnCommand( ICommandContext context ) @@ -151,6 +151,9 @@ bool RequireConsoleAccess() case "confilter" when RequireConsoleAccess(): ConfilterCommand(context); break; + case "translations" when RequireConsoleAccess(): + TranslationsCommand(context); + break; default: ShowHelp(context); break; @@ -180,12 +183,49 @@ private static void ShowHelp( ICommandContext context ) .AddRow("confilter", "Console Filter Menu") .AddRow("plugins", "Plugin Management Menu") .AddRow("gc", "Show garbage collection information on managed") - .AddRow("profiler", "Profiler Menu"); + .AddRow("profiler", "Profiler Menu") + .AddRow("translations", "Translations Menu"); } _ = table.AddRow("version", "Display Swiftly version"); AnsiConsole.Write(table); } + private void TranslationsCommand( ICommandContext context ) + { + void ShowTranslationsHelp() + { + var table = new Table() + .AddColumn("Command") + .AddColumn("Description") + .AddRow("reload", "Reload all translations"); + AnsiConsole.Write(table); + } + + void ReloadTranslations() + { + pluginManager.RegenerateTranslations(); + + logger.LogInformation("Succesfully reloaded the translations"); + } + + var args = context.Args; + if (args.Length == 1) + { + ShowTranslationsHelp(); + return; + } + + switch (args[1].Trim().ToLower()) + { + case "reload": + ReloadTranslations(); + break; + default: + logger.LogWarning("Unknown command"); + break; + } + } + private void ConfilterCommand( ICommandContext context ) { void ShowConfilterHelp() @@ -287,7 +327,7 @@ private void ProfilerCommand( ICommandContext context ) logger.LogInformation("The profiler has been disabled."); break; case "status": - logger.LogInformation("Profiler is currently {Status}.", (profileService.IsEnabled() ? "enabled" : "disabled")); + logger.LogInformation("Profiler is currently {Status}.", profileService.IsEnabled() ? "enabled" : "disabled"); break; case "save": var pluginId = args.Length >= 3 ? args[2] : "core"; @@ -323,19 +363,31 @@ void ShowPluginList() foreach (var plugin in pluginManager.GetPlugins()) { - var pluginId = plugin.Metadata?.Id ?? ""; - var version = plugin.Metadata?.Version is { } v ? $" {v}" : string.Empty; + var pluginId = Markup.Escape(plugin.Metadata?.Id ?? ""); + var version = Markup.Escape(plugin.Metadata?.Version is { } v ? $" {v}" : string.Empty); var statusText = GetColoredStatus(plugin.Status); _ = table.AddRow( statusText, $"{pluginId}{version}", - plugin.Metadata?.Author ?? "Anonymous", - plugin.Metadata?.Website ?? string.Empty, - plugin.PluginDirectory is { } dir ? Path.Join("(swRoot)", Path.GetRelativePath(rootDirService.GetRoot(), dir)) : string.Empty); + Markup.Escape(plugin.Metadata?.Author ?? "Anonymous"), + Markup.Escape(plugin.Metadata?.Website ?? string.Empty), + Markup.Escape(plugin.PluginDirectory is { } dir ? Path.Join("(swRoot)", Path.GetRelativePath(rootDirService.GetRoot(), dir)) : string.Empty)); } AnsiConsole.Write(table); + + var loadErrors = pluginManager.GetPluginLoadErrors(); + if (loadErrors.Count > 0) + { + Console.WriteLine("\n"); + var errorString = "Plugin Load Errors:"; + foreach (var error in loadErrors) + { + errorString += $"\n {error.Key}: {error.Value}"; + } + logger.LogWarning(errorString); + } } void ShowPluginHelp() @@ -390,6 +442,13 @@ bool ValidatePluginId( string[] args, string command, string usage ) if (ValidatePluginId(args, "load", "")) { Console.WriteLine("\n"); + if (pluginManager.GetPluginStatusByDllName(args[2]) == PluginStatus.Loaded) + { + logger.LogWarning("Plugin is already loaded: {Format}", args[2]); + Console.WriteLine("\n"); + break; + } + if (pluginManager.LoadPluginByDllName(args[2], true)) { logger.LogInformation("Loaded plugin: {Format}", args[2]); @@ -402,10 +461,10 @@ bool ValidatePluginId( string[] args, string command, string usage ) } break; case "unload": - if (ValidatePluginId(args, "unload", "")) + if (ValidatePluginId(args, "unload", "")) { Console.WriteLine("\n"); - if (pluginManager.UnloadPluginById(args[2], true) || pluginManager.UnloadPluginByDllName(args[2], true)) + if (pluginManager.UnloadPluginByDllName(args[2], true)) { logger.LogInformation("Unloaded plugin: {Format}", args[2]); } @@ -417,10 +476,10 @@ bool ValidatePluginId( string[] args, string command, string usage ) } break; case "reload": - if (ValidatePluginId(args, "reload", "")) + if (ValidatePluginId(args, "reload", "")) { Console.WriteLine("\n"); - if (pluginManager.ReloadPluginById(args[2], true) || pluginManager.ReloadPluginByDllName(args[2], true)) + if (pluginManager.ReloadPluginByDllName(args[2], true)) { logger.LogInformation("Reloaded plugin: {Format}", args[2]); } diff --git a/managed/src/SwiftlyS2.Core/Services/CoreHookService.cs b/managed/src/SwiftlyS2.Core/Services/CoreHookService.cs index b4f5eea75..04bc418cd 100644 --- a/managed/src/SwiftlyS2.Core/Services/CoreHookService.cs +++ b/managed/src/SwiftlyS2.Core/Services/CoreHookService.cs @@ -5,6 +5,7 @@ using Microsoft.Extensions.Logging; using Spectre.Console; using SwiftlyS2.Core.Datamaps; +using SwiftlyS2.Core.EntitySystem; using SwiftlyS2.Core.Events; using SwiftlyS2.Core.Extensions; using SwiftlyS2.Core.Natives; @@ -42,6 +43,7 @@ public CoreHookService( ILogger logger, ISwiftlyCore core ) HookEntityIdentityAcceptInput(); HookEntityIOOutputFireOutputInternal(); HookDispatchDatamapFunction(); + HookWeaponServicesDropWeapon(); } /* @@ -80,6 +82,8 @@ __int64 sub_1C0CD0(__int64 a1, int a2, unsigned int a3, ...) private delegate void CEntityIdentityAcceptInput( nint pEntityIdentity, nint inputName, nint activator, nint caller, nint variant, int outputId, nint unk1, nint unk2 ); private delegate void CEntityIOOutputFireOutputInternal( nint pEntityIO, nint pActivator, nint pCaller, nint pVariant, float flDelay, nint unk1, nint unk2 ); private delegate void DispatchDatamapFunction( nint a1, nint pDatamapFunc, nint a3, uint a4, nint a5, double a6 /* unknown */ ); + private delegate byte DropWeaponWindows( nint weaponServices, nint playerWeapon, byte swapping ); + private delegate nint DropWeaponLinux( nint weaponServices, nint playerWeapon, byte swapping ); private IUnmanagedFunction? executeCommand; private Guid executeCommandGuid; @@ -108,12 +112,15 @@ __int64 sub_1C0CD0(__int64 a1, int a2, unsigned int a3, ...) private Guid entityIOOutputFireOutputInternalGuid; private IUnmanagedFunction? dispatchDatamapFunction; private Guid dispatchDatamapFunctionGuid; + private IUnmanagedFunction? dropWeaponWindows; + private IUnmanagedFunction? dropWeaponLinux; + private Guid dropWeaponGuid; private void HookEntityIdentityAcceptInput() { var address = core.GameData.GetSignature("CEntityIdentity::AcceptInput"); - logger.LogInformation("Hooking CEntityIdentity::AcceptInput at {Address}", address); + logger.LogInformation("Hooking CEntityIdentity::AcceptInput at {Address:X}", address); entityIdentityAcceptInput = core.Memory.GetUnmanagedFunctionByAddress(address); entityIdentityAcceptInputGuid = entityIdentityAcceptInput.AddHook(next => @@ -123,17 +130,20 @@ private void HookEntityIdentityAcceptInput() unsafe { var entityIdentity = core.Memory.ToSchemaClass(pEntityIdentity); - var inputName = pInputName.AsRef(); - var activator = pActivator != nint.Zero ? core.Memory.ToSchemaClass(pActivator) : null; - var caller = pCaller != nint.Zero ? core.Memory.ToSchemaClass(pCaller) : null; - - var variant = pVariant.AsRef>(); + if (!entityIdentity.IsValid || !entityIdentity.EntityInstance.IsValid) + { + next()(pEntityIdentity, pInputName, pActivator, pCaller, pVariant, outputId, unk1, unk2); + return; + } + var inputName = pInputName != nint.Zero ? pInputName.AsRef().Value : ""; + var activator = pActivator != nint.Zero ? EntityManager.GetEntityByAddress(pActivator) : null; + var caller = pCaller != nint.Zero ? EntityManager.GetEntityByAddress(pCaller) : null; var @event = new OnEntityIdentityAcceptInputHookEvent { Identity = entityIdentity, - EntityInstance = entityIdentity.EntityInstance, - DesignerName = entityIdentity?.DesignerName ?? string.Empty, - InputName = inputName.Value, + EntityInstance = EntityManager.GetEntityByIndex(entityIdentity.EntityInstance.Index)!, + DesignerName = entityIdentity.DesignerName, + InputName = inputName, Activator = activator, Caller = caller, _variant = (CVariant*)pVariant, @@ -157,7 +167,7 @@ private unsafe void HookEntityIOOutputFireOutputInternal() { var address = core.GameData.GetSignature("CEntityIOOutput::FireOutputInternal"); - logger.LogInformation("Hooking CEntityIOOutput_FireOutputInternal at {Address}", address); + logger.LogInformation("Hooking CEntityIOOutput_FireOutputInternal at {Address:X}", address); entityIOOutputFireOutputInternal = core.Memory.GetUnmanagedFunctionByAddress(address); entityIOOutputFireOutputInternalGuid = entityIOOutputFireOutputInternal.AddHook(next => @@ -167,8 +177,8 @@ private unsafe void HookEntityIOOutputFireOutputInternal() var entityIO = pEntityIO.AsRef(); var outputName = entityIO.Desc.Name.Value; - var activator = pActivator != nint.Zero ? core.Memory.ToSchemaClass(pActivator) : null; - var caller = pCaller != nint.Zero ? core.Memory.ToSchemaClass(pCaller) : null; + var activator = pActivator != nint.Zero ? EntityManager.GetEntityByAddress(pActivator) : null; + var caller = pCaller != nint.Zero ? EntityManager.GetEntityByAddress(pCaller) : null; var variant = pVariant.AsRef>(); @@ -199,7 +209,7 @@ private void HookExecuteCommand() { var address = core.GameData.GetSignature("Cmd_ExecuteCommand"); - logger.LogInformation("Hooking Cmd_ExecuteCommand at {Address}", address); + logger.LogInformation("Hooking Cmd_ExecuteCommand at {Address:X}", address); executeCommand = core.Memory.GetUnmanagedFunctionByAddress(address); executeCommandGuid = executeCommand.AddHook(( next ) => @@ -231,13 +241,64 @@ private void HookExecuteCommand() }); } + private void HookWeaponServicesDropWeapon() + { + var sig = core.GameData.GetSignature("CCSPlayer_WeaponServices::DropWeapon"); + if (IsWindows) + { + dropWeaponWindows = core.Memory.GetUnmanagedFunctionByAddress(sig); + logger.LogInformation("Hooking CCSPlayer_WeaponServices::DropWeapon at {Address:X}", dropWeaponWindows.Address); + dropWeaponGuid = dropWeaponWindows.AddHook(next => + { + return ( pWeaponServices, pPlayerWeapon, swapping ) => + { + var weaponServices = core.Memory.ToSchemaClass(pWeaponServices); + var playerWeapon = pPlayerWeapon != nint.Zero ? core.Memory.ToSchemaClass(pPlayerWeapon) : null; + + var @event = new OnWeaponServicesDropWeaponHook { + WeaponServices = weaponServices, + Weapon = playerWeapon, + SwappingWeapon = swapping != 0, + Result = HookResult.Continue + }; + EventPublisher.InvokeOnWeaponServicesDropWeaponHook(@event); + + return @event.Result == HookResult.Stop ? (byte)0 : next()(pWeaponServices, pPlayerWeapon, swapping); + }; + }); + } + else + { + dropWeaponLinux = core.Memory.GetUnmanagedFunctionByAddress(sig); + logger.LogInformation("Hooking CCSPlayer_WeaponServices::DropWeapon at {Address:X}", dropWeaponLinux.Address); + dropWeaponGuid = dropWeaponLinux.AddHook(next => + { + return ( pWeaponServices, pPlayerWeapon, swapping ) => + { + var weaponServices = core.Memory.ToSchemaClass(pWeaponServices); + var playerWeapon = pPlayerWeapon != nint.Zero ? core.Memory.ToSchemaClass(pPlayerWeapon) : null; + + var @event = new OnWeaponServicesDropWeaponHook { + WeaponServices = weaponServices, + Weapon = playerWeapon, + SwappingWeapon = swapping != 0, + Result = HookResult.Continue + }; + EventPublisher.InvokeOnWeaponServicesDropWeaponHook(@event); + + return @event.Result == HookResult.Stop ? 0 : next()(pWeaponServices, pPlayerWeapon, swapping); + }; + }); + } + } + private void HookICvarFindConCommandTemplate() { + var offset = core.GameData.GetOffset("ICvar::FindConCommand"); if (IsWindows) { - var offset = core.GameData.GetOffset("ICvar::FindConCommand"); findConCommandWindows = core.Memory.GetUnmanagedFunctionByVTable(core.Memory.GetVTableAddress(Library.Tier0, "CCvar")!.Value, offset); - logger.LogInformation("Hooking ICvar::FindConCommand at {Address}", findConCommandWindows.Address); + logger.LogInformation("Hooking ICvar::FindConCommand at {Address:X}", findConCommandWindows.Address); findConCommandGuid = findConCommandWindows.AddHook(( next ) => { return ( pICvar, pRet, pConCommandName, unk1 ) => @@ -262,9 +323,8 @@ private void HookICvarFindConCommandTemplate() } else { - var offset = core.GameData.GetOffset("ICvar::FindConCommand"); findConCommandLinux = core.Memory.GetUnmanagedFunctionByVTable(core.Memory.GetVTableAddress(Library.Tier0, "CCvar")!.Value, offset); - logger.LogInformation("Hooking ICvar::FindConCommand at {Address}", findConCommandLinux.Address); + logger.LogInformation("Hooking ICvar::FindConCommand at {Address:X}", findConCommandLinux.Address); findConCommandGuid = findConCommandLinux.AddHook(( next ) => { return ( pICvar, pConCommandName, unk1 ) => @@ -293,7 +353,7 @@ private void HookCCSPlayerItemServicesCanAcquire() { var address = core.GameData.GetSignature("CCSPlayer_ItemServices::CanAcquire"); - logger.LogInformation("Hooking CCSPlayer_ItemServices::CanAcquire at {Address}", address); + logger.LogInformation("Hooking CCSPlayer_ItemServices::CanAcquire at {Address:X}", address); itemServicesCanAcquire = core.Memory.GetUnmanagedFunctionByAddress(address); itemServicesCanAcquireGuid = itemServicesCanAcquire.AddHook(next => @@ -335,15 +395,15 @@ private void HookCCSPlayerWeaponServicesCanUse() { var offset = core.GameData.GetOffset("CCSPlayer_WeaponServices::CanUse"); weaponServicesCanUse = core.Memory.GetUnmanagedFunctionByVTable(core.Memory.GetVTableAddress(Library.Server, "CCSPlayer_WeaponServices")!.Value, offset); - logger.LogInformation("Hooking CCSPlayer_WeaponServices::CanUse at {Address}", weaponServicesCanUse.Address); + logger.LogInformation("Hooking CCSPlayer_WeaponServices::CanUse at {Address:X}", weaponServicesCanUse.Address); weaponServicesCanUseGuid = weaponServicesCanUse.AddHook(next => { return ( pWeaponServices, pBasePlayerWeapon ) => { var result = next()(pWeaponServices, pBasePlayerWeapon); - var weaponServices = new CCSPlayer_WeaponServicesImpl(pWeaponServices); - var basePlayerWeapon = new CCSWeaponBaseImpl(pBasePlayerWeapon); + var weaponServices = core.Memory.ToSchemaClass(pWeaponServices); + var basePlayerWeapon = core.Memory.ToSchemaClass(pBasePlayerWeapon); var @event = new OnWeaponServicesCanUseHookEvent { WeaponServices = weaponServices, @@ -365,18 +425,17 @@ private void HookCBaseEntityTouchTemplate() entityStartTouch = core.Memory.GetUnmanagedFunctionByVTable(core.Memory.GetVTableAddress(Library.Server, "CBaseEntity")!.Value, startTouchOffset); entityTouch = core.Memory.GetUnmanagedFunctionByVTable(core.Memory.GetVTableAddress(Library.Server, "CBaseEntity")!.Value, touchOffset); entityEndTouch = core.Memory.GetUnmanagedFunctionByVTable(core.Memory.GetVTableAddress(Library.Server, "CBaseEntity")!.Value, endTouchOffset); - logger.LogInformation("Hooking CBaseEntity::StartTouch at {Address}", entityStartTouch.Address); - logger.LogInformation("Hooking CBaseEntity::Touch at {Address}", entityTouch.Address); - logger.LogInformation("Hooking CBaseEntity::EndTouch at {Address}", entityEndTouch.Address); + logger.LogInformation("Hooking CBaseEntity::StartTouch at {Address:X}", entityStartTouch.Address); + logger.LogInformation("Hooking CBaseEntity::Touch at {Address:X}", entityTouch.Address); + logger.LogInformation("Hooking CBaseEntity::EndTouch at {Address:X}", entityEndTouch.Address); entityStartTouchGuid = entityStartTouch.AddHook(next => { return ( pBaseEntity, pOtherEntity ) => { - var entity = new CBaseEntityImpl(pBaseEntity); - var otherEntity = new CBaseEntityImpl(pOtherEntity); + var entity = core.Memory.ToSchemaClass(pBaseEntity); + var otherEntity = core.Memory.ToSchemaClass(pOtherEntity); EventPublisher.InvokeOnEntityStartTouch(new OnEntityStartTouchEvent { Entity = entity, OtherEntity = otherEntity }); - EventPublisher.InvokeOnEntityTouchHook(new OnEntityTouchHookEvent { Entity = entity, OtherEntity = otherEntity, TouchType = EntityTouchType.StartTouch }); return next()(pBaseEntity, pOtherEntity); }; }); @@ -385,10 +444,9 @@ private void HookCBaseEntityTouchTemplate() { return ( pBaseEntity, pOtherEntity ) => { - var entity = new CBaseEntityImpl(pBaseEntity); - var otherEntity = new CBaseEntityImpl(pOtherEntity); + var entity = core.Memory.ToSchemaClass(pBaseEntity); + var otherEntity = core.Memory.ToSchemaClass(pOtherEntity); EventPublisher.InvokeOnEntityTouch(new OnEntityTouchEvent { Entity = entity, OtherEntity = otherEntity }); - EventPublisher.InvokeOnEntityTouchHook(new OnEntityTouchHookEvent { Entity = entity, OtherEntity = otherEntity, TouchType = EntityTouchType.Touch }); return next()(pBaseEntity, pOtherEntity); }; }); @@ -397,10 +455,9 @@ private void HookCBaseEntityTouchTemplate() { return ( pBaseEntity, pOtherEntity ) => { - var entity = new CBaseEntityImpl(pBaseEntity); - var otherEntity = new CBaseEntityImpl(pOtherEntity); + var entity = core.Memory.ToSchemaClass(pBaseEntity); + var otherEntity = core.Memory.ToSchemaClass(pOtherEntity); EventPublisher.InvokeOnEntityEndTouch(new OnEntityEndTouchEvent { Entity = entity, OtherEntity = otherEntity }); - EventPublisher.InvokeOnEntityTouchHook(new OnEntityTouchHookEvent { Entity = entity, OtherEntity = otherEntity, TouchType = EntityTouchType.EndTouch }); return next()(pBaseEntity, pOtherEntity); }; }); @@ -410,7 +467,7 @@ private void HookSteamServerAPIActivated() { var offset = core.GameData.GetOffset("IServerGameDLL::GameServerSteamAPIActivated"); steamServerAPIActivated = core.Memory.GetUnmanagedFunctionByVTable(core.Memory.GetVTableAddress(Library.Server, "CSource2Server")!.Value, offset); - logger.LogInformation("Hooking IServerGameDLL::GameServerSteamAPIActivated at {Address}", steamServerAPIActivated.Address); + logger.LogInformation("Hooking IServerGameDLL::GameServerSteamAPIActivated at {Address:X}", steamServerAPIActivated.Address); steamServerAPIActivatedGuid = steamServerAPIActivated.AddHook(next => { return ( pServer ) => @@ -430,15 +487,13 @@ private void HookSteamServerAPIActivated() private void HookCPlayerMovementServicesRunCommand() { var offset = core.GameData.GetOffset("CPlayer_MovementServices::RunCommand"); - // CPlayer_MovementServices vtable finding is fucked up on linux - // finding for CPlayer_MovementServices_Humanoid instead to avoid it, which has the same function at same offset - movementServiceRunCommand = core.Memory.GetUnmanagedFunctionByVTable(core.Memory.GetVTableAddress(Library.Server, "CPlayer_MovementServices_Humanoid")!.Value, offset); - logger.LogInformation("Hooking CPlayer_MovementServices::RunCommand at {Address}", movementServiceRunCommand.Address); + movementServiceRunCommand = core.Memory.GetUnmanagedFunctionByVTable(core.Memory.GetVTableAddress(Library.Server, "CPlayer_MovementServices")!.Value, offset); + logger.LogInformation("Hooking CPlayer_MovementServices::RunCommand at {Address:X}", movementServiceRunCommand.Address); movementServiceRunCommandGuid = movementServiceRunCommand.AddHook(( next ) => { return ( pMovementServices, pUserCmd ) => { - var movementService = new CCSPlayer_MovementServicesImpl(pMovementServices); + var movementService = core.Memory.ToSchemaClass(pMovementServices); var userCmdPb = new CSGOUserCmdPBImpl(pUserCmd + 0x10, false); var buttonState = new CInButtonStateImpl(pUserCmd + 0x58); @@ -459,14 +514,14 @@ private void HookCCSPlayerPawnPostThink() { var address = core.GameData.GetSignature("CCSPlayerPawn::PostThink"); - logger.LogInformation("Hooking CCSPlayerPawn::PostThink at {Address}", address); + logger.LogInformation("Hooking CCSPlayerPawn::PostThink at {Address:X}", address); playerPawnPostThink = core.Memory.GetUnmanagedFunctionByAddress(address); playerPawnPostThinkGuid = playerPawnPostThink.AddHook(( next ) => { return ( pPlayerPawn ) => { - var playerPawn = new CCSPlayerPawnImpl(pPlayerPawn); + var playerPawn = core.Memory.ToSchemaClass(pPlayerPawn); var @event = new OnPlayerPawnPostThinkHookEvent { PlayerPawn = playerPawn @@ -520,5 +575,7 @@ public void Dispose() entityIdentityAcceptInput?.RemoveHook(entityIdentityAcceptInputGuid); entityIOOutputFireOutputInternal?.RemoveHook(entityIOOutputFireOutputInternalGuid); dispatchDatamapFunction?.RemoveHook(dispatchDatamapFunctionGuid); + dropWeaponWindows?.RemoveHook(dropWeaponGuid); + dropWeaponLinux?.RemoveHook(dropWeaponGuid); } } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Core/Services/StartupService.cs b/managed/src/SwiftlyS2.Core/Services/StartupService.cs index 4ef7c6592..c4f78e276 100644 --- a/managed/src/SwiftlyS2.Core/Services/StartupService.cs +++ b/managed/src/SwiftlyS2.Core/Services/StartupService.cs @@ -1,6 +1,7 @@ using Microsoft.Extensions.Hosting; using SwiftlyS2.Core.Misc; using SwiftlyS2.Core.Hosting; +using SwiftlyS2.Core.SchemaDefinitions; namespace SwiftlyS2.Core.Services; @@ -10,6 +11,9 @@ internal class StartupService : IHostedService public StartupService( IServiceProvider provider ) { + // JIT warmup + var _ = ClassConvertor.ConvertEntityByDesignerName(0, "abc"); + // this.provider = provider; provider.UseCoreHookService(); provider.UsePermissionManager(); diff --git a/managed/src/SwiftlyS2.Core/Services/TestService.cs b/managed/src/SwiftlyS2.Core/Services/TestService.cs index b85f5bac1..e471ecbc5 100644 --- a/managed/src/SwiftlyS2.Core/Services/TestService.cs +++ b/managed/src/SwiftlyS2.Core/Services/TestService.cs @@ -80,13 +80,7 @@ public void Test() public void Test2() { _ = core.Command.RegisterCommand("abc", (ctx) => { - var coords = ctx.Sender!.Pawn!.AbsOrigin; - var ps = core.PlayerManager.GetAllPlayers().Where(p => p.PlayerID != ctx.Sender!.PlayerID).ToList(); - var randomPlayer = ps.OrderBy(p => Guid.NewGuid()).FirstOrDefault(); - var trace = new CGameTrace(); - core.Trace.SimpleTrace(coords!.Value, randomPlayer!.PlayerPawn.EyePosition!.Value, RayType_t.RAY_TYPE_LINE, RnQueryObjectSet.AllGameEntities, MaskTrace.Player | MaskTrace.Solid, MaskTrace.Empty, MaskTrace.Player, CollisionGroup.Player, ref trace); - Console.WriteLine("Fraction: "+trace.Fraction); - Console.WriteLine("Distance: " + trace.Distance); + ctx.Reply(ctx.Sender!.Name); }); diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCAmbientGenericRampThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCAmbientGenericRampThink.cs index a5eafb697..ee6a0fcae 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCAmbientGenericRampThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCAmbientGenericRampThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCAmbientGenericRampThink : BaseDatamapFunctionHookContext, IDHookCAmbientGenericRampThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBarnLightThink_ApplyLightStylesToTargets.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBarnLightThink_ApplyLightStylesToTargets.cs index aa78d3cfc..1131ff256 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBarnLightThink_ApplyLightStylesToTargets.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBarnLightThink_ApplyLightStylesToTargets.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBarnLightThink_ApplyLightStylesToTargets : BaseDatamapFunctionHookContext, IDHookCBarnLightThink_ApplyLightStylesToTargets { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBarnLightThink_LightStyleEvent.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBarnLightThink_LightStyleEvent.cs index 09df2b9b1..ec78da8ce 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBarnLightThink_LightStyleEvent.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBarnLightThink_LightStyleEvent.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBarnLightThink_LightStyleEvent : BaseDatamapFunctionHookContext, IDHookCBarnLightThink_LightStyleEvent { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBarnLightThink_SetNextQueuedLightStyle.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBarnLightThink_SetNextQueuedLightStyle.cs index b07356cb1..2c780d3ce 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBarnLightThink_SetNextQueuedLightStyle.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBarnLightThink_SetNextQueuedLightStyle.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBarnLightThink_SetNextQueuedLightStyle : BaseDatamapFunctionHookContext, IDHookCBarnLightThink_SetNextQueuedLightStyle { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseAnimGraphChoreoServicesThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseAnimGraphChoreoServicesThink.cs index 7f7feb9ae..3c20b1592 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseAnimGraphChoreoServicesThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseAnimGraphChoreoServicesThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseAnimGraphChoreoServicesThink : BaseDatamapFunctionHookContext, IDHookCBaseAnimGraphChoreoServicesThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseButtonActivateTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseButtonActivateTouch.cs index 5e15adc79..f0efd942f 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseButtonActivateTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseButtonActivateTouch.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseButtonActivateTouch : BaseDatamapFunctionHookContext, IDHookCBaseButtonActivateTouch { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseButtonButtonBackHome.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseButtonButtonBackHome.cs index 60bfa78ff..4b11676df 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseButtonButtonBackHome.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseButtonButtonBackHome.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseButtonButtonBackHome : BaseDatamapFunctionHookContext, IDHookCBaseButtonButtonBackHome { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseButtonButtonReturn.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseButtonButtonReturn.cs index aca698c1f..ff69defa5 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseButtonButtonReturn.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseButtonButtonReturn.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseButtonButtonReturn : BaseDatamapFunctionHookContext, IDHookCBaseButtonButtonReturn { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseButtonButtonSpark.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseButtonButtonSpark.cs index 3b828c69b..ef9861844 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseButtonButtonSpark.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseButtonButtonSpark.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseButtonButtonSpark : BaseDatamapFunctionHookContext, IDHookCBaseButtonButtonSpark { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseButtonButtonTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseButtonButtonTouch.cs index 03701ccf8..7bd713cc0 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseButtonButtonTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseButtonButtonTouch.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseButtonButtonTouch : BaseDatamapFunctionHookContext, IDHookCBaseButtonButtonTouch { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseButtonButtonUse.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseButtonButtonUse.cs index 5d517187e..c1df54ea0 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseButtonButtonUse.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseButtonButtonUse.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseButtonButtonUse : BaseDatamapFunctionHookContext, IDHookCBaseButtonButtonUse { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseButtonTriggerAndWait.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseButtonTriggerAndWait.cs index 5b19a870c..7afccbdc2 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseButtonTriggerAndWait.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseButtonTriggerAndWait.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseButtonTriggerAndWait : BaseDatamapFunctionHookContext, IDHookCBaseButtonTriggerAndWait { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseCSGrenadeProjectileDangerSoundThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseCSGrenadeProjectileDangerSoundThink.cs index b66440be4..19ce0c06a 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseCSGrenadeProjectileDangerSoundThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseCSGrenadeProjectileDangerSoundThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseCSGrenadeProjectileDangerSoundThink : BaseDatamapFunctionHookContext, IDHookCBaseCSGrenadeProjectileDangerSoundThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseDoorCloseAreaPortalsThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseDoorCloseAreaPortalsThink.cs index 6b8ba1c48..9282f8148 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseDoorCloseAreaPortalsThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseDoorCloseAreaPortalsThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseDoorCloseAreaPortalsThink : BaseDatamapFunctionHookContext, IDHookCBaseDoorCloseAreaPortalsThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseDoorDoorGoDown.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseDoorDoorGoDown.cs index 6d860894d..0cd5e0599 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseDoorDoorGoDown.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseDoorDoorGoDown.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseDoorDoorGoDown : BaseDatamapFunctionHookContext, IDHookCBaseDoorDoorGoDown { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseDoorDoorGoUp.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseDoorDoorGoUp.cs index 41fb202bf..e514c727d 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseDoorDoorGoUp.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseDoorDoorGoUp.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseDoorDoorGoUp : BaseDatamapFunctionHookContext, IDHookCBaseDoorDoorGoUp { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseDoorDoorHitBottom.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseDoorDoorHitBottom.cs index c0f9626b3..e149eeda2 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseDoorDoorHitBottom.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseDoorDoorHitBottom.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseDoorDoorHitBottom : BaseDatamapFunctionHookContext, IDHookCBaseDoorDoorHitBottom { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseDoorDoorHitTop.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseDoorDoorHitTop.cs index 1d9fce0de..33dd021d2 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseDoorDoorHitTop.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseDoorDoorHitTop.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseDoorDoorHitTop : BaseDatamapFunctionHookContext, IDHookCBaseDoorDoorHitTop { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseDoorDoorTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseDoorDoorTouch.cs index 24c92336e..c926c29bd 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseDoorDoorTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseDoorDoorTouch.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseDoorDoorTouch : BaseDatamapFunctionHookContext, IDHookCBaseDoorDoorTouch { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseDoorMovingSoundThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseDoorMovingSoundThink.cs index a18845a41..d0ac434df 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseDoorMovingSoundThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseDoorMovingSoundThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseDoorMovingSoundThink : BaseDatamapFunctionHookContext, IDHookCBaseDoorMovingSoundThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntityClearNavIgnoreContentsThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntityClearNavIgnoreContentsThink.cs index 049d3aaa7..3ac190921 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntityClearNavIgnoreContentsThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntityClearNavIgnoreContentsThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseEntityClearNavIgnoreContentsThink : BaseDatamapFunctionHookContext, IDHookCBaseEntityClearNavIgnoreContentsThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntityFakeScriptThinkFunc.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntityFakeScriptThinkFunc.cs index c48b55405..49cabeb53 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntityFakeScriptThinkFunc.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntityFakeScriptThinkFunc.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseEntityFakeScriptThinkFunc : BaseDatamapFunctionHookContext, IDHookCBaseEntityFakeScriptThinkFunc { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntitySUB_CallUseToggle.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntitySUB_CallUseToggle.cs index 98a526f29..19150cca5 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntitySUB_CallUseToggle.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntitySUB_CallUseToggle.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseEntitySUB_CallUseToggle : BaseDatamapFunctionHookContext, IDHookCBaseEntitySUB_CallUseToggle { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntitySUB_DoNothing.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntitySUB_DoNothing.cs index 943696ac1..5daba0630 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntitySUB_DoNothing.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntitySUB_DoNothing.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseEntitySUB_DoNothing : BaseDatamapFunctionHookContext, IDHookCBaseEntitySUB_DoNothing { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntitySUB_KillSelf.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntitySUB_KillSelf.cs index b826d0508..f9cae4490 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntitySUB_KillSelf.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntitySUB_KillSelf.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseEntitySUB_KillSelf : BaseDatamapFunctionHookContext, IDHookCBaseEntitySUB_KillSelf { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntitySUB_KillSelfIfUncarried.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntitySUB_KillSelfIfUncarried.cs index a8464aadc..cabd85a6f 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntitySUB_KillSelfIfUncarried.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntitySUB_KillSelfIfUncarried.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseEntitySUB_KillSelfIfUncarried : BaseDatamapFunctionHookContext, IDHookCBaseEntitySUB_KillSelfIfUncarried { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntitySUB_Remove.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntitySUB_Remove.cs index 7ca25d92a..ae8f6f950 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntitySUB_Remove.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntitySUB_Remove.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseEntitySUB_Remove : BaseDatamapFunctionHookContext, IDHookCBaseEntitySUB_Remove { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntitySUB_RemoveIfUncarried.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntitySUB_RemoveIfUncarried.cs index 0274f596b..632f38e73 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntitySUB_RemoveIfUncarried.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntitySUB_RemoveIfUncarried.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseEntitySUB_RemoveIfUncarried : BaseDatamapFunctionHookContext, IDHookCBaseEntitySUB_RemoveIfUncarried { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntitySUB_Vanish.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntitySUB_Vanish.cs index 37962e87f..40a837661 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntitySUB_Vanish.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseEntitySUB_Vanish.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseEntitySUB_Vanish : BaseDatamapFunctionHookContext, IDHookCBaseEntitySUB_Vanish { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseFlexProcessSceneEventsThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseFlexProcessSceneEventsThink.cs index a9e1fe09c..6a939aa13 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseFlexProcessSceneEventsThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseFlexProcessSceneEventsThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseFlexProcessSceneEventsThink : BaseDatamapFunctionHookContext, IDHookCBaseFlexProcessSceneEventsThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeBounceTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeBounceTouch.cs index d98692d9f..a0d654324 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeBounceTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeBounceTouch.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseGrenadeBounceTouch : BaseDatamapFunctionHookContext, IDHookCBaseGrenadeBounceTouch { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeDangerSoundThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeDangerSoundThink.cs index 286ba094a..91e886dfd 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeDangerSoundThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeDangerSoundThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseGrenadeDangerSoundThink : BaseDatamapFunctionHookContext, IDHookCBaseGrenadeDangerSoundThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeDetonate.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeDetonate.cs index 277bee85f..65d3a7646 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeDetonate.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeDetonate.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseGrenadeDetonate : BaseDatamapFunctionHookContext, IDHookCBaseGrenadeDetonate { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeDetonateUse.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeDetonateUse.cs index 84ea388bc..f67313ced 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeDetonateUse.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeDetonateUse.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseGrenadeDetonateUse : BaseDatamapFunctionHookContext, IDHookCBaseGrenadeDetonateUse { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeExplodeTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeExplodeTouch.cs index cf6a9d09b..8b8831b2e 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeExplodeTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeExplodeTouch.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseGrenadeExplodeTouch : BaseDatamapFunctionHookContext, IDHookCBaseGrenadeExplodeTouch { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadePreDetonate.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadePreDetonate.cs index e8a1df518..cf6b43869 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadePreDetonate.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadePreDetonate.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseGrenadePreDetonate : BaseDatamapFunctionHookContext, IDHookCBaseGrenadePreDetonate { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeSlideTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeSlideTouch.cs index 8b03abbf2..611c8d5ec 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeSlideTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeSlideTouch.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseGrenadeSlideTouch : BaseDatamapFunctionHookContext, IDHookCBaseGrenadeSlideTouch { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeSmoke.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeSmoke.cs index ee914308b..58400802c 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeSmoke.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeSmoke.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseGrenadeSmoke : BaseDatamapFunctionHookContext, IDHookCBaseGrenadeSmoke { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeTumbleThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeTumbleThink.cs index 19b283ac8..66f83700d 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeTumbleThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseGrenadeTumbleThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseGrenadeTumbleThink : BaseDatamapFunctionHookContext, IDHookCBaseGrenadeTumbleThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_DissolveIfUncarried.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_DissolveIfUncarried.cs index b8a6526d2..a03470801 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_DissolveIfUncarried.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_DissolveIfUncarried.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseModelEntitySUB_DissolveIfUncarried : BaseDatamapFunctionHookContext, IDHookCBaseModelEntitySUB_DissolveIfUncarried { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_FadeOut.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_FadeOut.cs index 18ddb5067..20a7768bd 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_FadeOut.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_FadeOut.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseModelEntitySUB_FadeOut : BaseDatamapFunctionHookContext, IDHookCBaseModelEntitySUB_FadeOut { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_PerformShadowFadeIn.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_PerformShadowFadeIn.cs index 50c7a8677..4b6309d84 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_PerformShadowFadeIn.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_PerformShadowFadeIn.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseModelEntitySUB_PerformShadowFadeIn : BaseDatamapFunctionHookContext, IDHookCBaseModelEntitySUB_PerformShadowFadeIn { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_PerformShadowFadeOut.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_PerformShadowFadeOut.cs index 3e8b7fd03..1a8823ea7 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_PerformShadowFadeOut.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_PerformShadowFadeOut.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseModelEntitySUB_PerformShadowFadeOut : BaseDatamapFunctionHookContext, IDHookCBaseModelEntitySUB_PerformShadowFadeOut { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_StartFadeOut.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_StartFadeOut.cs index 343cc3546..8ba5fb1fa 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_StartFadeOut.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_StartFadeOut.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseModelEntitySUB_StartFadeOut : BaseDatamapFunctionHookContext, IDHookCBaseModelEntitySUB_StartFadeOut { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_StartFadeOutInstant.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_StartFadeOutInstant.cs index b7c32c12a..2adf55bb0 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_StartFadeOutInstant.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_StartFadeOutInstant.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseModelEntitySUB_StartFadeOutInstant : BaseDatamapFunctionHookContext, IDHookCBaseModelEntitySUB_StartFadeOutInstant { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_StartShadowFadeIn.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_StartShadowFadeIn.cs index 1515f5ece..88b25117b 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_StartShadowFadeIn.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_StartShadowFadeIn.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseModelEntitySUB_StartShadowFadeIn : BaseDatamapFunctionHookContext, IDHookCBaseModelEntitySUB_StartShadowFadeIn { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_StartShadowFadeOut.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_StartShadowFadeOut.cs index d5e2d88a2..f471f2296 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_StartShadowFadeOut.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_StartShadowFadeOut.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseModelEntitySUB_StartShadowFadeOut : BaseDatamapFunctionHookContext, IDHookCBaseModelEntitySUB_StartShadowFadeOut { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_StopShadowFade.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_StopShadowFade.cs index 971a1c846..51573fbf0 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_StopShadowFade.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBaseModelEntitySUB_StopShadowFade.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBaseModelEntitySUB_StopShadowFade : BaseDatamapFunctionHookContext, IDHookCBaseModelEntitySUB_StopShadowFade { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBasePropDoorDisableAreaPortalThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBasePropDoorDisableAreaPortalThink.cs index 2b74aab22..1f401307f 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBasePropDoorDisableAreaPortalThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBasePropDoorDisableAreaPortalThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBasePropDoorDisableAreaPortalThink : BaseDatamapFunctionHookContext, IDHookCBasePropDoorDisableAreaPortalThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBasePropDoorDoorAutoCloseThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBasePropDoorDoorAutoCloseThink.cs index 68a0eb609..005f9ec3a 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBasePropDoorDoorAutoCloseThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBasePropDoorDoorAutoCloseThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBasePropDoorDoorAutoCloseThink : BaseDatamapFunctionHookContext, IDHookCBasePropDoorDoorAutoCloseThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBasePropDoorDoorCloseMoveDone.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBasePropDoorDoorCloseMoveDone.cs index 16c87740b..911b7d0e7 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBasePropDoorDoorCloseMoveDone.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBasePropDoorDoorCloseMoveDone.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBasePropDoorDoorCloseMoveDone : BaseDatamapFunctionHookContext, IDHookCBasePropDoorDoorCloseMoveDone { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBasePropDoorDoorOpenMoveDone.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBasePropDoorDoorOpenMoveDone.cs index 9d82b5ce3..bdba90850 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBasePropDoorDoorOpenMoveDone.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBasePropDoorDoorOpenMoveDone.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBasePropDoorDoorOpenMoveDone : BaseDatamapFunctionHookContext, IDHookCBasePropDoorDoorOpenMoveDone { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBombTargetCBombTargetShim_BombTargetUse.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBombTargetCBombTargetShim_BombTargetUse.cs index 675857410..9296ba5d8 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBombTargetCBombTargetShim_BombTargetUse.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBombTargetCBombTargetShim_BombTargetUse.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBombTargetCBombTargetShim_BombTargetUse : BaseDatamapFunctionHookContext, IDHookCBombTargetCBombTargetShim_BombTargetUse { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBombTargetCBombTargetShim_Touch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBombTargetCBombTargetShim_Touch.cs index e19d0fff9..50d928e3a 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBombTargetCBombTargetShim_Touch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBombTargetCBombTargetShim_Touch.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBombTargetCBombTargetShim_Touch : BaseDatamapFunctionHookContext, IDHookCBombTargetCBombTargetShim_Touch { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBreakableDie.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBreakableDie.cs index dc96248a4..ce53a2a65 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBreakableDie.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBreakableDie.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBreakableDie : BaseDatamapFunctionHookContext, IDHookCBreakableDie { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBreakablePropBreakThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBreakablePropBreakThink.cs index d7b9e8fad..d502e38f4 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBreakablePropBreakThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBreakablePropBreakThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBreakablePropBreakThink : BaseDatamapFunctionHookContext, IDHookCBreakablePropBreakThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBreakablePropRampToDefaultFadeScale.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBreakablePropRampToDefaultFadeScale.cs index 057b7faeb..9a26fd069 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBreakablePropRampToDefaultFadeScale.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCBreakablePropRampToDefaultFadeScale.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCBreakablePropRampToDefaultFadeScale : BaseDatamapFunctionHookContext, IDHookCBreakablePropRampToDefaultFadeScale { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSPlayerControllerInventoryUpdateThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSPlayerControllerInventoryUpdateThink.cs index 516bd1a00..220475d29 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSPlayerControllerInventoryUpdateThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSPlayerControllerInventoryUpdateThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCCSPlayerControllerInventoryUpdateThink : BaseDatamapFunctionHookContext, IDHookCCSPlayerControllerInventoryUpdateThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSPlayerControllerPlayerForceTeamThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSPlayerControllerPlayerForceTeamThink.cs index a01900066..614882a6d 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSPlayerControllerPlayerForceTeamThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSPlayerControllerPlayerForceTeamThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCCSPlayerControllerPlayerForceTeamThink : BaseDatamapFunctionHookContext, IDHookCCSPlayerControllerPlayerForceTeamThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSPlayerControllerResetForceTeamThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSPlayerControllerResetForceTeamThink.cs index e6683f9d2..9214e40f3 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSPlayerControllerResetForceTeamThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSPlayerControllerResetForceTeamThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCCSPlayerControllerResetForceTeamThink : BaseDatamapFunctionHookContext, IDHookCCSPlayerControllerResetForceTeamThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSPlayerControllerResourceDataThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSPlayerControllerResourceDataThink.cs index 7010e3a93..f8a78b631 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSPlayerControllerResourceDataThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSPlayerControllerResourceDataThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCCSPlayerControllerResourceDataThink : BaseDatamapFunctionHookContext, IDHookCCSPlayerControllerResourceDataThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSPlayerPawnCheckStuffThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSPlayerPawnCheckStuffThink.cs index b64234c06..4952ad54d 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSPlayerPawnCheckStuffThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSPlayerPawnCheckStuffThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCCSPlayerPawnCheckStuffThink : BaseDatamapFunctionHookContext, IDHookCCSPlayerPawnCheckStuffThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSPlayerPawnPushawayThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSPlayerPawnPushawayThink.cs index 011adfe15..86ea29ebe 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSPlayerPawnPushawayThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSPlayerPawnPushawayThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCCSPlayerPawnPushawayThink : BaseDatamapFunctionHookContext, IDHookCCSPlayerPawnPushawayThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSPlayerResourceResourceThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSPlayerResourceResourceThink.cs index 2712ff831..0d709fbd5 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSPlayerResourceResourceThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSPlayerResourceResourceThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCCSPlayerResourceResourceThink : BaseDatamapFunctionHookContext, IDHookCCSPlayerResourceResourceThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSWeaponBaseDefaultTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSWeaponBaseDefaultTouch.cs index 74bc9f2fa..6735f56af 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSWeaponBaseDefaultTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSWeaponBaseDefaultTouch.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCCSWeaponBaseDefaultTouch : BaseDatamapFunctionHookContext, IDHookCCSWeaponBaseDefaultTouch { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSWeaponBaseRemoveUnownedWeaponThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSWeaponBaseRemoveUnownedWeaponThink.cs index a56681db5..93e4e3d45 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSWeaponBaseRemoveUnownedWeaponThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCCSWeaponBaseRemoveUnownedWeaponThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCCSWeaponBaseRemoveUnownedWeaponThink : BaseDatamapFunctionHookContext, IDHookCCSWeaponBaseRemoveUnownedWeaponThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCChickenChickenThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCChickenChickenThink.cs index c4285009a..15b9b4ae3 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCChickenChickenThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCChickenChickenThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCChickenChickenThink : BaseDatamapFunctionHookContext, IDHookCChickenChickenThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCChickenChickenTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCChickenChickenTouch.cs index 6b11afde7..3d45ae302 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCChickenChickenTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCChickenChickenTouch.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCChickenChickenTouch : BaseDatamapFunctionHookContext, IDHookCChickenChickenTouch { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCChickenChickenUse.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCChickenChickenUse.cs index c338b0e71..b8d2e77c2 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCChickenChickenUse.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCChickenChickenUse.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCChickenChickenUse : BaseDatamapFunctionHookContext, IDHookCChickenChickenUse { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCColorCorrectionFadeInThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCColorCorrectionFadeInThink.cs index a1f7a7703..da9c8f47b 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCColorCorrectionFadeInThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCColorCorrectionFadeInThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCColorCorrectionFadeInThink : BaseDatamapFunctionHookContext, IDHookCColorCorrectionFadeInThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCColorCorrectionFadeOutThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCColorCorrectionFadeOutThink.cs index 2020a18f7..b63a6412f 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCColorCorrectionFadeOutThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCColorCorrectionFadeOutThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCColorCorrectionFadeOutThink : BaseDatamapFunctionHookContext, IDHookCColorCorrectionFadeOutThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCColorCorrectionVolumeThinkFunc.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCColorCorrectionVolumeThinkFunc.cs index 6453fdf82..d20fd92a0 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCColorCorrectionVolumeThinkFunc.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCColorCorrectionVolumeThinkFunc.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCColorCorrectionVolumeThinkFunc : BaseDatamapFunctionHookContext, IDHookCColorCorrectionVolumeThinkFunc { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCDecoyProjectileGunfireThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCDecoyProjectileGunfireThink.cs index 59a51a0df..e29f56b36 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCDecoyProjectileGunfireThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCDecoyProjectileGunfireThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCDecoyProjectileGunfireThink : BaseDatamapFunctionHookContext, IDHookCDecoyProjectileGunfireThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCDecoyProjectileThink_Detonate.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCDecoyProjectileThink_Detonate.cs index 75fe87d90..f952b1a0e 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCDecoyProjectileThink_Detonate.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCDecoyProjectileThink_Detonate.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCDecoyProjectileThink_Detonate : BaseDatamapFunctionHookContext, IDHookCDecoyProjectileThink_Detonate { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCDynamicLightDynamicLightThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCDynamicLightDynamicLightThink.cs index cf258b105..1662733d9 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCDynamicLightDynamicLightThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCDynamicLightDynamicLightThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCDynamicLightDynamicLightThink : BaseDatamapFunctionHookContext, IDHookCDynamicLightDynamicLightThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCDynamicPropAnimThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCDynamicPropAnimThink.cs index eb94e08fc..0c4c0feb4 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCDynamicPropAnimThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCDynamicPropAnimThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCDynamicPropAnimThink : BaseDatamapFunctionHookContext, IDHookCDynamicPropAnimThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEntityDissolveDissolveThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEntityDissolveDissolveThink.cs index 9cfd9586d..0741ee738 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEntityDissolveDissolveThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEntityDissolveDissolveThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCEntityDissolveDissolveThink : BaseDatamapFunctionHookContext, IDHookCEntityDissolveDissolveThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEntityDissolveElectrocuteThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEntityDissolveElectrocuteThink.cs index 17e1d5e72..db08b94bc 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEntityDissolveElectrocuteThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEntityDissolveElectrocuteThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCEntityDissolveElectrocuteThink : BaseDatamapFunctionHookContext, IDHookCEntityDissolveElectrocuteThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEntityFlameFlameThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEntityFlameFlameThink.cs index fcdbdf40e..7dc578a1c 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEntityFlameFlameThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEntityFlameFlameThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCEntityFlameFlameThink : BaseDatamapFunctionHookContext, IDHookCEntityFlameFlameThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEnvBeamStrikeThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEnvBeamStrikeThink.cs index 4274df669..26a253992 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEnvBeamStrikeThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEnvBeamStrikeThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCEnvBeamStrikeThink : BaseDatamapFunctionHookContext, IDHookCEnvBeamStrikeThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEnvBeamUpdateThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEnvBeamUpdateThink.cs index 029798e29..fb77036ff 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEnvBeamUpdateThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEnvBeamUpdateThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCEnvBeamUpdateThink : BaseDatamapFunctionHookContext, IDHookCEnvBeamUpdateThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEnvEntityMakerCheckSpawnThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEnvEntityMakerCheckSpawnThink.cs index d9f701aa1..00fcfecb0 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEnvEntityMakerCheckSpawnThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEnvEntityMakerCheckSpawnThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCEnvEntityMakerCheckSpawnThink : BaseDatamapFunctionHookContext, IDHookCEnvEntityMakerCheckSpawnThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEnvLaserStrikeThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEnvLaserStrikeThink.cs index ee127d7e5..bf7b25d4e 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEnvLaserStrikeThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEnvLaserStrikeThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCEnvLaserStrikeThink : BaseDatamapFunctionHookContext, IDHookCEnvLaserStrikeThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEnvSparkSparkThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEnvSparkSparkThink.cs index 8eae6bddc..ed0aa721f 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEnvSparkSparkThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEnvSparkSparkThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCEnvSparkSparkThink : BaseDatamapFunctionHookContext, IDHookCEnvSparkSparkThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEnvWindControllerWindThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEnvWindControllerWindThink.cs index aa401a379..2ac8705cb 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEnvWindControllerWindThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEnvWindControllerWindThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCEnvWindControllerWindThink : BaseDatamapFunctionHookContext, IDHookCEnvWindControllerWindThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEnvWindWindThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEnvWindWindThink.cs index 1016d31ba..6c5b33d03 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEnvWindWindThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCEnvWindWindThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCEnvWindWindThink : BaseDatamapFunctionHookContext, IDHookCEnvWindWindThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFishPoolUpdate.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFishPoolUpdate.cs index 968043ffb..aff1de3e3 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFishPoolUpdate.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFishPoolUpdate.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCFishPoolUpdate : BaseDatamapFunctionHookContext, IDHookCFishPoolUpdate { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFogControllerSetLerpValues.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFogControllerSetLerpValues.cs index 1b4da37ec..ce6879b8e 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFogControllerSetLerpValues.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFogControllerSetLerpValues.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCFogControllerSetLerpValues : BaseDatamapFunctionHookContext, IDHookCFogControllerSetLerpValues { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncMoveLinearNavMovableThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncMoveLinearNavMovableThink.cs index 998fc0955..7a3b08956 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncMoveLinearNavMovableThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncMoveLinearNavMovableThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCFuncMoveLinearNavMovableThink : BaseDatamapFunctionHookContext, IDHookCFuncMoveLinearNavMovableThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncMoveLinearNavObstacleThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncMoveLinearNavObstacleThink.cs index 2d2c1207d..19bc7666b 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncMoveLinearNavObstacleThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncMoveLinearNavObstacleThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCFuncMoveLinearNavObstacleThink : BaseDatamapFunctionHookContext, IDHookCFuncMoveLinearNavObstacleThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncMoveLinearStopMoveSound.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncMoveLinearStopMoveSound.cs index 8c2fc4338..a166d4647 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncMoveLinearStopMoveSound.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncMoveLinearStopMoveSound.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCFuncMoveLinearStopMoveSound : BaseDatamapFunctionHookContext, IDHookCFuncMoveLinearStopMoveSound { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncMoverLerpToNewPosition.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncMoverLerpToNewPosition.cs index 33958dcb4..681e86bd8 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncMoverLerpToNewPosition.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncMoverLerpToNewPosition.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCFuncMoverLerpToNewPosition : BaseDatamapFunctionHookContext, IDHookCFuncMoverLerpToNewPosition { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncPlatCallGoDown.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncPlatCallGoDown.cs index db02a600b..caafefd9a 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncPlatCallGoDown.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncPlatCallGoDown.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCFuncPlatCallGoDown : BaseDatamapFunctionHookContext, IDHookCFuncPlatCallGoDown { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncPlatCallHitBottom.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncPlatCallHitBottom.cs index 39fc0db43..e7a0e0691 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncPlatCallHitBottom.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncPlatCallHitBottom.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCFuncPlatCallHitBottom : BaseDatamapFunctionHookContext, IDHookCFuncPlatCallHitBottom { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncPlatCallHitTop.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncPlatCallHitTop.cs index 1d7ab6f3f..1bca57d5d 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncPlatCallHitTop.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncPlatCallHitTop.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCFuncPlatCallHitTop : BaseDatamapFunctionHookContext, IDHookCFuncPlatCallHitTop { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncPlatPlatUse.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncPlatPlatUse.cs index 58cbd234e..5d746950e 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncPlatPlatUse.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncPlatPlatUse.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCFuncPlatPlatUse : BaseDatamapFunctionHookContext, IDHookCFuncPlatPlatUse { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncRotatingHurtTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncRotatingHurtTouch.cs index c92dba21b..dbfcce0b4 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncRotatingHurtTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncRotatingHurtTouch.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCFuncRotatingHurtTouch : BaseDatamapFunctionHookContext, IDHookCFuncRotatingHurtTouch { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncRotatingReverseMove.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncRotatingReverseMove.cs index dcea06eb9..ce62946c2 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncRotatingReverseMove.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncRotatingReverseMove.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCFuncRotatingReverseMove : BaseDatamapFunctionHookContext, IDHookCFuncRotatingReverseMove { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncRotatingRotateMove.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncRotatingRotateMove.cs index c734cff04..56471b69e 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncRotatingRotateMove.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncRotatingRotateMove.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCFuncRotatingRotateMove : BaseDatamapFunctionHookContext, IDHookCFuncRotatingRotateMove { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncRotatingRotatingUse.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncRotatingRotatingUse.cs index a581374d4..f7b68a03b 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncRotatingRotatingUse.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncRotatingRotatingUse.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCFuncRotatingRotatingUse : BaseDatamapFunctionHookContext, IDHookCFuncRotatingRotatingUse { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncRotatingSpinDownMove.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncRotatingSpinDownMove.cs index 1cf1fa5d2..6038697b1 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncRotatingSpinDownMove.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncRotatingSpinDownMove.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCFuncRotatingSpinDownMove : BaseDatamapFunctionHookContext, IDHookCFuncRotatingSpinDownMove { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncRotatingSpinUpMove.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncRotatingSpinUpMove.cs index 4f27d9bbc..9cdf52a6c 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncRotatingSpinUpMove.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncRotatingSpinUpMove.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCFuncRotatingSpinUpMove : BaseDatamapFunctionHookContext, IDHookCFuncRotatingSpinUpMove { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncRotatorRotateThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncRotatorRotateThink.cs index ed84ff0b6..b6389b1bf 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncRotatorRotateThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncRotatorRotateThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCFuncRotatorRotateThink : BaseDatamapFunctionHookContext, IDHookCFuncRotatorRotateThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncShatterglassGlassThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncShatterglassGlassThink.cs index d69b1e413..5396f07df 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncShatterglassGlassThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncShatterglassGlassThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCFuncShatterglassGlassThink : BaseDatamapFunctionHookContext, IDHookCFuncShatterglassGlassThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrackChangeFind.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrackChangeFind.cs index ac4187d6c..167fd2031 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrackChangeFind.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrackChangeFind.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCFuncTrackChangeFind : BaseDatamapFunctionHookContext, IDHookCFuncTrackChangeFind { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrackTrainDeadEnd.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrackTrainDeadEnd.cs index ddbd86144..1c8fd340b 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrackTrainDeadEnd.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrackTrainDeadEnd.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCFuncTrackTrainDeadEnd : BaseDatamapFunctionHookContext, IDHookCFuncTrackTrainDeadEnd { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrackTrainFind.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrackTrainFind.cs index 392d817ca..10c933efc 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrackTrainFind.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrackTrainFind.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCFuncTrackTrainFind : BaseDatamapFunctionHookContext, IDHookCFuncTrackTrainFind { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrackTrainNearestPath.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrackTrainNearestPath.cs index e47cd5594..f321e0a0e 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrackTrainNearestPath.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrackTrainNearestPath.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCFuncTrackTrainNearestPath : BaseDatamapFunctionHookContext, IDHookCFuncTrackTrainNearestPath { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrackTrainNext.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrackTrainNext.cs index 204cf4bdf..2b9a6c378 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrackTrainNext.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrackTrainNext.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCFuncTrackTrainNext : BaseDatamapFunctionHookContext, IDHookCFuncTrackTrainNext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrainControlsFind.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrainControlsFind.cs index da8c63877..adcc5ac5b 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrainControlsFind.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrainControlsFind.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCFuncTrainControlsFind : BaseDatamapFunctionHookContext, IDHookCFuncTrainControlsFind { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrainNext.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrainNext.cs index d9cf1df74..3bf20a7ba 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrainNext.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrainNext.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCFuncTrainNext : BaseDatamapFunctionHookContext, IDHookCFuncTrainNext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrainWait.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrainWait.cs index fbf82003f..dbcc3ba76 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrainWait.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCFuncTrainWait.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCFuncTrainWait : BaseDatamapFunctionHookContext, IDHookCFuncTrainWait { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCGenericConstraintUpdateThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCGenericConstraintUpdateThink.cs index 7724fbee4..0d7cee01e 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCGenericConstraintUpdateThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCGenericConstraintUpdateThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCGenericConstraintUpdateThink : BaseDatamapFunctionHookContext, IDHookCGenericConstraintUpdateThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCGunTargetNext.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCGunTargetNext.cs index 950b02070..b2b97f6dc 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCGunTargetNext.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCGunTargetNext.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCGunTargetNext : BaseDatamapFunctionHookContext, IDHookCGunTargetNext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCGunTargetStart.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCGunTargetStart.cs index e70b14128..367720743 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCGunTargetStart.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCGunTargetStart.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCGunTargetStart : BaseDatamapFunctionHookContext, IDHookCGunTargetStart { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCGunTargetWait.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCGunTargetWait.cs index 589c3116a..d13539d2b 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCGunTargetWait.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCGunTargetWait.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCGunTargetWait : BaseDatamapFunctionHookContext, IDHookCGunTargetWait { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCHostageHostageThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCHostageHostageThink.cs index 3525c0ed4..11c6ef5ec 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCHostageHostageThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCHostageHostageThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCHostageHostageThink : BaseDatamapFunctionHookContext, IDHookCHostageHostageThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCHostageHostageUse.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCHostageHostageUse.cs index a51138554..a8b600c4c 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCHostageHostageUse.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCHostageHostageUse.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCHostageHostageUse : BaseDatamapFunctionHookContext, IDHookCHostageHostageUse { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCHostageRescueZoneCHostageRescueZoneShim_Touch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCHostageRescueZoneCHostageRescueZoneShim_Touch.cs index 28a646c37..48b6ba27b 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCHostageRescueZoneCHostageRescueZoneShim_Touch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCHostageRescueZoneCHostageRescueZoneShim_Touch.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCHostageRescueZoneCHostageRescueZoneShim_Touch : BaseDatamapFunctionHookContext, IDHookCHostageRescueZoneCHostageRescueZoneShim_Touch { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCInfernoInfernoThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCInfernoInfernoThink.cs index e1cd207b7..f74949b54 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCInfernoInfernoThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCInfernoInfernoThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCInfernoInfernoThink : BaseDatamapFunctionHookContext, IDHookCInfernoInfernoThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCInfoSpawnGroupLoadUnloadSpawnGroupLoadingThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCInfoSpawnGroupLoadUnloadSpawnGroupLoadingThink.cs index f41153652..d15fbac38 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCInfoSpawnGroupLoadUnloadSpawnGroupLoadingThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCInfoSpawnGroupLoadUnloadSpawnGroupLoadingThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCInfoSpawnGroupLoadUnloadSpawnGroupLoadingThink : BaseDatamapFunctionHookContext, IDHookCInfoSpawnGroupLoadUnloadSpawnGroupLoadingThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCInfoSpawnGroupLoadUnloadSpawnGroupUnloadingThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCInfoSpawnGroupLoadUnloadSpawnGroupUnloadingThink.cs index dbb5d9082..fd2ee9348 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCInfoSpawnGroupLoadUnloadSpawnGroupUnloadingThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCInfoSpawnGroupLoadUnloadSpawnGroupUnloadingThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCInfoSpawnGroupLoadUnloadSpawnGroupUnloadingThink : BaseDatamapFunctionHookContext, IDHookCInfoSpawnGroupLoadUnloadSpawnGroupUnloadingThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemComeToRest.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemComeToRest.cs index 3e3de8600..07271e086 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemComeToRest.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemComeToRest.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCItemComeToRest : BaseDatamapFunctionHookContext, IDHookCItemComeToRest { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemDefuserActivateThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemDefuserActivateThink.cs index 58be6adc8..14f25e4d4 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemDefuserActivateThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemDefuserActivateThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCItemDefuserActivateThink : BaseDatamapFunctionHookContext, IDHookCItemDefuserActivateThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemDefuserDefuserTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemDefuserDefuserTouch.cs index 60036c27d..e5e763a83 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemDefuserDefuserTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemDefuserDefuserTouch.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCItemDefuserDefuserTouch : BaseDatamapFunctionHookContext, IDHookCItemDefuserDefuserTouch { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemGenericItemGenericTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemGenericItemGenericTouch.cs index 5136b19a2..bc2fe5696 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemGenericItemGenericTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemGenericItemGenericTouch.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCItemGenericItemGenericTouch : BaseDatamapFunctionHookContext, IDHookCItemGenericItemGenericTouch { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemGenericTriggerHelperItemGenericTriggerHelperTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemGenericTriggerHelperItemGenericTriggerHelperTouch.cs index cfbd49d89..d9c4de80f 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemGenericTriggerHelperItemGenericTriggerHelperTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemGenericTriggerHelperItemGenericTriggerHelperTouch.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCItemGenericTriggerHelperItemGenericTriggerHelperTouch : BaseDatamapFunctionHookContext, IDHookCItemGenericTriggerHelperItemGenericTriggerHelperTouch { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemItemTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemItemTouch.cs index 6e021b8e1..7f246ef85 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemItemTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemItemTouch.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCItemItemTouch : BaseDatamapFunctionHookContext, IDHookCItemItemTouch { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemMaterialize.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemMaterialize.cs index 517141677..a53d3144d 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemMaterialize.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemMaterialize.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCItemMaterialize : BaseDatamapFunctionHookContext, IDHookCItemMaterialize { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemSodaCanThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemSodaCanThink.cs index 9c01ea905..b8e3fe820 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemSodaCanThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCItemSodaCanThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCItemSodaCanThink : BaseDatamapFunctionHookContext, IDHookCItemSodaCanThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCLogicActiveAutosaveSaveThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCLogicActiveAutosaveSaveThink.cs index fa29397eb..dbb89a3a6 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCLogicActiveAutosaveSaveThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCLogicActiveAutosaveSaveThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCLogicActiveAutosaveSaveThink : BaseDatamapFunctionHookContext, IDHookCLogicActiveAutosaveSaveThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCLogicDistanceAutosaveSaveThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCLogicDistanceAutosaveSaveThink.cs index fba01eb90..657a8853b 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCLogicDistanceAutosaveSaveThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCLogicDistanceAutosaveSaveThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCLogicDistanceAutosaveSaveThink : BaseDatamapFunctionHookContext, IDHookCLogicDistanceAutosaveSaveThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCLogicMeasureMovementMeasureThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCLogicMeasureMovementMeasureThink.cs index 4f22967e4..87b07abc8 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCLogicMeasureMovementMeasureThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCLogicMeasureMovementMeasureThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCLogicMeasureMovementMeasureThink : BaseDatamapFunctionHookContext, IDHookCLogicMeasureMovementMeasureThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCLogicNPCCounterSetNPCCounterThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCLogicNPCCounterSetNPCCounterThink.cs index 4ab030a18..a348e442a 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCLogicNPCCounterSetNPCCounterThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCLogicNPCCounterSetNPCCounterThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCLogicNPCCounterSetNPCCounterThink : BaseDatamapFunctionHookContext, IDHookCLogicNPCCounterSetNPCCounterThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMapVetoPickControllerVoteControllerThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMapVetoPickControllerVoteControllerThink.cs index 9438e902b..872793ffc 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMapVetoPickControllerVoteControllerThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMapVetoPickControllerVoteControllerThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCMapVetoPickControllerVoteControllerThink : BaseDatamapFunctionHookContext, IDHookCMapVetoPickControllerVoteControllerThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMomentaryRotButtonReturnMoveDone.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMomentaryRotButtonReturnMoveDone.cs index 6175d3eaf..094a572e9 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMomentaryRotButtonReturnMoveDone.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMomentaryRotButtonReturnMoveDone.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCMomentaryRotButtonReturnMoveDone : BaseDatamapFunctionHookContext, IDHookCMomentaryRotButtonReturnMoveDone { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMomentaryRotButtonSetPositionMoveDone.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMomentaryRotButtonSetPositionMoveDone.cs index b2d9cba24..4ae8801cf 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMomentaryRotButtonSetPositionMoveDone.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMomentaryRotButtonSetPositionMoveDone.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCMomentaryRotButtonSetPositionMoveDone : BaseDatamapFunctionHookContext, IDHookCMomentaryRotButtonSetPositionMoveDone { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMomentaryRotButtonUpdateThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMomentaryRotButtonUpdateThink.cs index 0a21212f3..9423a0964 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMomentaryRotButtonUpdateThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMomentaryRotButtonUpdateThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCMomentaryRotButtonUpdateThink : BaseDatamapFunctionHookContext, IDHookCMomentaryRotButtonUpdateThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMomentaryRotButtonUseMoveDone.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMomentaryRotButtonUseMoveDone.cs index 1a9af511a..4e8740d11 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMomentaryRotButtonUseMoveDone.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMomentaryRotButtonUseMoveDone.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCMomentaryRotButtonUseMoveDone : BaseDatamapFunctionHookContext, IDHookCMomentaryRotButtonUseMoveDone { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMultiLightProxyApproachBrightnessThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMultiLightProxyApproachBrightnessThink.cs index a0a4c21ae..45ea89874 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMultiLightProxyApproachBrightnessThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMultiLightProxyApproachBrightnessThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCMultiLightProxyApproachBrightnessThink : BaseDatamapFunctionHookContext, IDHookCMultiLightProxyApproachBrightnessThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMultiLightProxyRestoreFlashlightThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMultiLightProxyRestoreFlashlightThink.cs index 5bc5889b7..af6122af5 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMultiLightProxyRestoreFlashlightThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMultiLightProxyRestoreFlashlightThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCMultiLightProxyRestoreFlashlightThink : BaseDatamapFunctionHookContext, IDHookCMultiLightProxyRestoreFlashlightThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMultiSourceRegister.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMultiSourceRegister.cs index a007b2ae9..e47646a02 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMultiSourceRegister.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCMultiSourceRegister.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCMultiSourceRegister : BaseDatamapFunctionHookContext, IDHookCMultiSourceRegister { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCParticleSystemStartParticleSystemThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCParticleSystemStartParticleSystemThink.cs index 42e84f113..dcb47212a 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCParticleSystemStartParticleSystemThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCParticleSystemStartParticleSystemThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCParticleSystemStartParticleSystemThink : BaseDatamapFunctionHookContext, IDHookCParticleSystemStartParticleSystemThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPathMoverEntitySpawnerSpawnThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPathMoverEntitySpawnerSpawnThink.cs index ae2d5dd36..8ece39b3c 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPathMoverEntitySpawnerSpawnThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPathMoverEntitySpawnerSpawnThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCPathMoverEntitySpawnerSpawnThink : BaseDatamapFunctionHookContext, IDHookCPathMoverEntitySpawnerSpawnThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPathNodeParentedMoveThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPathNodeParentedMoveThink.cs index d88f5c2bc..3edb27415 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPathNodeParentedMoveThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPathNodeParentedMoveThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCPathNodeParentedMoveThink : BaseDatamapFunctionHookContext, IDHookCPathNodeParentedMoveThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysForceForceOff.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysForceForceOff.cs index 19d78a86e..2bc30ed57 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysForceForceOff.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysForceForceOff.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCPhysForceForceOff : BaseDatamapFunctionHookContext, IDHookCPhysForceForceOff { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysForceInitialThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysForceInitialThink.cs index a4dbcc632..6d2f82993 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysForceInitialThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysForceInitialThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCPhysForceInitialThink : BaseDatamapFunctionHookContext, IDHookCPhysForceInitialThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysHingeLimitThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysHingeLimitThink.cs index 3f100f4d3..6cc1b10bb 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysHingeLimitThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysHingeLimitThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCPhysHingeLimitThink : BaseDatamapFunctionHookContext, IDHookCPhysHingeLimitThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysHingeMoveThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysHingeMoveThink.cs index 610eba5bb..b67386d6f 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysHingeMoveThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysHingeMoveThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCPhysHingeMoveThink : BaseDatamapFunctionHookContext, IDHookCPhysHingeMoveThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysHingeSoundThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysHingeSoundThink.cs index f675b9df3..b73972e96 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysHingeSoundThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysHingeSoundThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCPhysHingeSoundThink : BaseDatamapFunctionHookContext, IDHookCPhysHingeSoundThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysImpactPointAtEntity.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysImpactPointAtEntity.cs index 75f14087b..5b57d09cd 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysImpactPointAtEntity.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysImpactPointAtEntity.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCPhysImpactPointAtEntity : BaseDatamapFunctionHookContext, IDHookCPhysImpactPointAtEntity { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysSlideConstraintSoundThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysSlideConstraintSoundThink.cs index 66ec19571..51989cc8b 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysSlideConstraintSoundThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysSlideConstraintSoundThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCPhysSlideConstraintSoundThink : BaseDatamapFunctionHookContext, IDHookCPhysSlideConstraintSoundThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysicalButtonButtonBackHome.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysicalButtonButtonBackHome.cs index b49cd1dcc..212543396 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysicalButtonButtonBackHome.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysicalButtonButtonBackHome.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCPhysicalButtonButtonBackHome : BaseDatamapFunctionHookContext, IDHookCPhysicalButtonButtonBackHome { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysicalButtonButtonTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysicalButtonButtonTouch.cs index e9237409a..1d1c0d5bf 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysicalButtonButtonTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysicalButtonButtonTouch.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCPhysicalButtonButtonTouch : BaseDatamapFunctionHookContext, IDHookCPhysicalButtonButtonTouch { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysicalButtonPhysicsThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysicalButtonPhysicsThink.cs index e2ac55b9c..664bc6a80 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysicalButtonPhysicsThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysicalButtonPhysicsThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCPhysicalButtonPhysicsThink : BaseDatamapFunctionHookContext, IDHookCPhysicalButtonPhysicsThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysicalButtonTriggerAndWait.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysicalButtonTriggerAndWait.cs index 9125116f9..e8c178e05 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysicalButtonTriggerAndWait.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysicalButtonTriggerAndWait.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCPhysicalButtonTriggerAndWait : BaseDatamapFunctionHookContext, IDHookCPhysicalButtonTriggerAndWait { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysicsPropClearFlagsThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysicsPropClearFlagsThink.cs index 40716cf96..3217f7e80 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysicsPropClearFlagsThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysicsPropClearFlagsThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCPhysicsPropClearFlagsThink : BaseDatamapFunctionHookContext, IDHookCPhysicsPropClearFlagsThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysicsPropRespawnableMaterialize.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysicsPropRespawnableMaterialize.cs index 0d61174d7..4d2bc7ab0 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysicsPropRespawnableMaterialize.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPhysicsPropRespawnableMaterialize.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCPhysicsPropRespawnableMaterialize : BaseDatamapFunctionHookContext, IDHookCPhysicsPropRespawnableMaterialize { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPlantedC4C4Think.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPlantedC4C4Think.cs index 70683cfc9..38a6318d1 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPlantedC4C4Think.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPlantedC4C4Think.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCPlantedC4C4Think : BaseDatamapFunctionHookContext, IDHookCPlantedC4C4Think { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointCommentaryNodeAcculumatePlayTimeThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointCommentaryNodeAcculumatePlayTimeThink.cs index eeb302eac..a7da5eae8 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointCommentaryNodeAcculumatePlayTimeThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointCommentaryNodeAcculumatePlayTimeThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCPointCommentaryNodeAcculumatePlayTimeThink : BaseDatamapFunctionHookContext, IDHookCPointCommentaryNodeAcculumatePlayTimeThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointCommentaryNodeSpinThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointCommentaryNodeSpinThink.cs index dab432f81..c2dffd7cc 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointCommentaryNodeSpinThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointCommentaryNodeSpinThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCPointCommentaryNodeSpinThink : BaseDatamapFunctionHookContext, IDHookCPointCommentaryNodeSpinThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointCommentaryNodeUpdateViewPostThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointCommentaryNodeUpdateViewPostThink.cs index afd5016d1..98fcd02b1 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointCommentaryNodeUpdateViewPostThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointCommentaryNodeUpdateViewPostThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCPointCommentaryNodeUpdateViewPostThink : BaseDatamapFunctionHookContext, IDHookCPointCommentaryNodeUpdateViewPostThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointCommentaryNodeUpdateViewThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointCommentaryNodeUpdateViewThink.cs index 2ab5e8157..fd54a2b1d 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointCommentaryNodeUpdateViewThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointCommentaryNodeUpdateViewThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCPointCommentaryNodeUpdateViewThink : BaseDatamapFunctionHookContext, IDHookCPointCommentaryNodeUpdateViewThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointHurtHurtThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointHurtHurtThink.cs index 1b7d05112..c88600418 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointHurtHurtThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointHurtHurtThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCPointHurtHurtThink : BaseDatamapFunctionHookContext, IDHookCPointHurtHurtThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointOrientReorientThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointOrientReorientThink.cs index 9be064074..130ce0592 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointOrientReorientThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointOrientReorientThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCPointOrientReorientThink : BaseDatamapFunctionHookContext, IDHookCPointOrientReorientThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointPushPushThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointPushPushThink.cs index bdc462ecb..7ac3b0b61 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointPushPushThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointPushPushThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCPointPushPushThink : BaseDatamapFunctionHookContext, IDHookCPointPushPushThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointValueRemapperUpdateThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointValueRemapperUpdateThink.cs index 199346ce2..d606593cf 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointValueRemapperUpdateThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCPointValueRemapperUpdateThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCPointValueRemapperUpdateThink : BaseDatamapFunctionHookContext, IDHookCPointValueRemapperUpdateThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCRagdollPropAttachedItemsThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCRagdollPropAttachedItemsThink.cs index 7bda3b6a0..98b36ab17 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCRagdollPropAttachedItemsThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCRagdollPropAttachedItemsThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCRagdollPropAttachedItemsThink : BaseDatamapFunctionHookContext, IDHookCRagdollPropAttachedItemsThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCRagdollPropClearFlagsThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCRagdollPropClearFlagsThink.cs index 6ceaf1307..577c283ba 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCRagdollPropClearFlagsThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCRagdollPropClearFlagsThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCRagdollPropClearFlagsThink : BaseDatamapFunctionHookContext, IDHookCRagdollPropClearFlagsThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCRagdollPropFadeOutThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCRagdollPropFadeOutThink.cs index bf97c7426..6b7c4683c 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCRagdollPropFadeOutThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCRagdollPropFadeOutThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCRagdollPropFadeOutThink : BaseDatamapFunctionHookContext, IDHookCRagdollPropFadeOutThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCRagdollPropSetDebrisThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCRagdollPropSetDebrisThink.cs index 216ad55ff..f6bad4666 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCRagdollPropSetDebrisThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCRagdollPropSetDebrisThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCRagdollPropSetDebrisThink : BaseDatamapFunctionHookContext, IDHookCRagdollPropSetDebrisThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCRagdollPropSettleThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCRagdollPropSettleThink.cs index 004cf2b57..809a39e82 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCRagdollPropSettleThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCRagdollPropSettleThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCRagdollPropSettleThink : BaseDatamapFunctionHookContext, IDHookCRagdollPropSettleThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCRevertSavedLoadThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCRevertSavedLoadThink.cs index 975cd0b6d..e57c92913 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCRevertSavedLoadThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCRevertSavedLoadThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCRevertSavedLoadThink : BaseDatamapFunctionHookContext, IDHookCRevertSavedLoadThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCScriptedSequenceScriptThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCScriptedSequenceScriptThink.cs index 3d70c1630..a49191bd5 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCScriptedSequenceScriptThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCScriptedSequenceScriptThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCScriptedSequenceScriptThink : BaseDatamapFunctionHookContext, IDHookCScriptedSequenceScriptThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSmokeGrenadeProjectileThink_BuildingSmokeVolume.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSmokeGrenadeProjectileThink_BuildingSmokeVolume.cs index e4c906cc1..a4ad20454 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSmokeGrenadeProjectileThink_BuildingSmokeVolume.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSmokeGrenadeProjectileThink_BuildingSmokeVolume.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCSmokeGrenadeProjectileThink_BuildingSmokeVolume : BaseDatamapFunctionHookContext, IDHookCSmokeGrenadeProjectileThink_BuildingSmokeVolume { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSmokeGrenadeProjectileThink_Detonate.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSmokeGrenadeProjectileThink_Detonate.cs index e04067920..fdce9d1dd 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSmokeGrenadeProjectileThink_Detonate.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSmokeGrenadeProjectileThink_Detonate.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCSmokeGrenadeProjectileThink_Detonate : BaseDatamapFunctionHookContext, IDHookCSmokeGrenadeProjectileThink_Detonate { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSmokeGrenadeProjectileThink_Remove.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSmokeGrenadeProjectileThink_Remove.cs index 507a6c29c..1a2eee96f 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSmokeGrenadeProjectileThink_Remove.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSmokeGrenadeProjectileThink_Remove.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCSmokeGrenadeProjectileThink_Remove : BaseDatamapFunctionHookContext, IDHookCSmokeGrenadeProjectileThink_Remove { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSmokeGrenadeProjectileThink_Update.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSmokeGrenadeProjectileThink_Update.cs index 520df6763..22515d1b5 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSmokeGrenadeProjectileThink_Update.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSmokeGrenadeProjectileThink_Update.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCSmokeGrenadeProjectileThink_Update : BaseDatamapFunctionHookContext, IDHookCSmokeGrenadeProjectileThink_Update { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundEventConeEntitySoundEventConeThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundEventConeEntitySoundEventConeThink.cs index 6a90a65fc..2ee3b23b3 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundEventConeEntitySoundEventConeThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundEventConeEntitySoundEventConeThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCSoundEventConeEntitySoundEventConeThink : BaseDatamapFunctionHookContext, IDHookCSoundEventConeEntitySoundEventConeThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundEventEntitySoundFinishedThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundEventEntitySoundFinishedThink.cs index 37d4b4a59..a2337ad51 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundEventEntitySoundFinishedThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundEventEntitySoundFinishedThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCSoundEventEntitySoundFinishedThink : BaseDatamapFunctionHookContext, IDHookCSoundEventEntitySoundFinishedThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundEventOBBEntitySoundEventOBBThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundEventOBBEntitySoundEventOBBThink.cs index 2e2840d37..8ff54363d 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundEventOBBEntitySoundEventOBBThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundEventOBBEntitySoundEventOBBThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCSoundEventOBBEntitySoundEventOBBThink : BaseDatamapFunctionHookContext, IDHookCSoundEventOBBEntitySoundEventOBBThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundEventPathCornerEntitySoundEventPathCornerThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundEventPathCornerEntitySoundEventPathCornerThink.cs index c22e030f3..3047d64e4 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundEventPathCornerEntitySoundEventPathCornerThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundEventPathCornerEntitySoundEventPathCornerThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCSoundEventPathCornerEntitySoundEventPathCornerThink : BaseDatamapFunctionHookContext, IDHookCSoundEventPathCornerEntitySoundEventPathCornerThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundEventSphereEntitySoundEventSphereThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundEventSphereEntitySoundEventSphereThink.cs index c3bc94335..475424422 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundEventSphereEntitySoundEventSphereThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundEventSphereEntitySoundEventSphereThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCSoundEventSphereEntitySoundEventSphereThink : BaseDatamapFunctionHookContext, IDHookCSoundEventSphereEntitySoundEventSphereThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundOpvarSetAABBEntitySetOpvarThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundOpvarSetAABBEntitySetOpvarThink.cs index e3c73c6ad..dec2437c8 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundOpvarSetAABBEntitySetOpvarThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundOpvarSetAABBEntitySetOpvarThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCSoundOpvarSetAABBEntitySetOpvarThink : BaseDatamapFunctionHookContext, IDHookCSoundOpvarSetAABBEntitySetOpvarThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundOpvarSetAutoRoomEntitySetOpvarThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundOpvarSetAutoRoomEntitySetOpvarThink.cs index 5dc7201d2..5b0ec000e 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundOpvarSetAutoRoomEntitySetOpvarThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundOpvarSetAutoRoomEntitySetOpvarThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCSoundOpvarSetAutoRoomEntitySetOpvarThink : BaseDatamapFunctionHookContext, IDHookCSoundOpvarSetAutoRoomEntitySetOpvarThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundOpvarSetOBBEntitySetOpvarThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundOpvarSetOBBEntitySetOpvarThink.cs index 123e3e9bb..06789412d 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundOpvarSetOBBEntitySetOpvarThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundOpvarSetOBBEntitySetOpvarThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCSoundOpvarSetOBBEntitySetOpvarThink : BaseDatamapFunctionHookContext, IDHookCSoundOpvarSetOBBEntitySetOpvarThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundOpvarSetOBBWindEntitySetOpvarThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundOpvarSetOBBWindEntitySetOpvarThink.cs index 0e7f157ad..623154820 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundOpvarSetOBBWindEntitySetOpvarThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundOpvarSetOBBWindEntitySetOpvarThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCSoundOpvarSetOBBWindEntitySetOpvarThink : BaseDatamapFunctionHookContext, IDHookCSoundOpvarSetOBBWindEntitySetOpvarThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundOpvarSetPathCornerEntitySetOpvarThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundOpvarSetPathCornerEntitySetOpvarThink.cs index d390dbae0..c976ada88 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundOpvarSetPathCornerEntitySetOpvarThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundOpvarSetPathCornerEntitySetOpvarThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCSoundOpvarSetPathCornerEntitySetOpvarThink : BaseDatamapFunctionHookContext, IDHookCSoundOpvarSetPathCornerEntitySetOpvarThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundOpvarSetPointBaseSetOpvarThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundOpvarSetPointBaseSetOpvarThink.cs index caef2b10e..fb73d6e3b 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundOpvarSetPointBaseSetOpvarThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundOpvarSetPointBaseSetOpvarThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCSoundOpvarSetPointBaseSetOpvarThink : BaseDatamapFunctionHookContext, IDHookCSoundOpvarSetPointBaseSetOpvarThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundOpvarSetPointEntitySetOpvarThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundOpvarSetPointEntitySetOpvarThink.cs index 1bb0501c5..bdbabf2af 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundOpvarSetPointEntitySetOpvarThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSoundOpvarSetPointEntitySetOpvarThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCSoundOpvarSetPointEntitySetOpvarThink : BaseDatamapFunctionHookContext, IDHookCSoundOpvarSetPointEntitySetOpvarThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSplineConstraintTransitionThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSplineConstraintTransitionThink.cs index 85a873054..16312b5d0 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSplineConstraintTransitionThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSplineConstraintTransitionThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCSplineConstraintTransitionThink : BaseDatamapFunctionHookContext, IDHookCSplineConstraintTransitionThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSpriteAnimateThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSpriteAnimateThink.cs index ea956483f..f7cdb8354 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSpriteAnimateThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSpriteAnimateThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCSpriteAnimateThink : BaseDatamapFunctionHookContext, IDHookCSpriteAnimateThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSpriteAnimateUntilDead.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSpriteAnimateUntilDead.cs index de1f3c0d0..a50af9bce 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSpriteAnimateUntilDead.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSpriteAnimateUntilDead.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCSpriteAnimateUntilDead : BaseDatamapFunctionHookContext, IDHookCSpriteAnimateUntilDead { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSpriteBeginFadeOutThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSpriteBeginFadeOutThink.cs index 5f8f328eb..b8f594e16 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSpriteBeginFadeOutThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSpriteBeginFadeOutThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCSpriteBeginFadeOutThink : BaseDatamapFunctionHookContext, IDHookCSpriteBeginFadeOutThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSpriteExpandThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSpriteExpandThink.cs index 82d4f1cfd..15face1b0 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSpriteExpandThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCSpriteExpandThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCSpriteExpandThink : BaseDatamapFunctionHookContext, IDHookCSpriteExpandThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerActiveWeaponDetectActiveWeaponThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerActiveWeaponDetectActiveWeaponThink.cs index a922af224..193398b14 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerActiveWeaponDetectActiveWeaponThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerActiveWeaponDetectActiveWeaponThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCTriggerActiveWeaponDetectActiveWeaponThink : BaseDatamapFunctionHookContext, IDHookCTriggerActiveWeaponDetectActiveWeaponThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerFanPushThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerFanPushThink.cs index d17c8a986..6bdb84063 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerFanPushThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerFanPushThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCTriggerFanPushThink : BaseDatamapFunctionHookContext, IDHookCTriggerFanPushThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerGravityGravityTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerGravityGravityTouch.cs index b461a02ac..5a49341f4 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerGravityGravityTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerGravityGravityTouch.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCTriggerGravityGravityTouch : BaseDatamapFunctionHookContext, IDHookCTriggerGravityGravityTouch { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerHurtHurtThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerHurtHurtThink.cs index 72712d3a3..16eba4bda 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerHurtHurtThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerHurtHurtThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCTriggerHurtHurtThink : BaseDatamapFunctionHookContext, IDHookCTriggerHurtHurtThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerHurtNavThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerHurtNavThink.cs index c0624a67b..f2beb31aa 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerHurtNavThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerHurtNavThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCTriggerHurtNavThink : BaseDatamapFunctionHookContext, IDHookCTriggerHurtNavThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerHurtRadiationThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerHurtRadiationThink.cs index 610c0f346..e6de66d82 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerHurtRadiationThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerHurtRadiationThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCTriggerHurtRadiationThink : BaseDatamapFunctionHookContext, IDHookCTriggerHurtRadiationThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerImpactDisable.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerImpactDisable.cs index 1c267d4e9..1ca5f6dde 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerImpactDisable.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerImpactDisable.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCTriggerImpactDisable : BaseDatamapFunctionHookContext, IDHookCTriggerImpactDisable { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerLerpObjectAttachedEntityThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerLerpObjectAttachedEntityThink.cs index 14d4a88be..edcba9018 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerLerpObjectAttachedEntityThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerLerpObjectAttachedEntityThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCTriggerLerpObjectAttachedEntityThink : BaseDatamapFunctionHookContext, IDHookCTriggerLerpObjectAttachedEntityThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerLerpObjectLerpThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerLerpObjectLerpThink.cs index 7228f6d9c..17ec5617e 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerLerpObjectLerpThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerLerpObjectLerpThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCTriggerLerpObjectLerpThink : BaseDatamapFunctionHookContext, IDHookCTriggerLerpObjectLerpThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerLerpObjectUnsetWaitForEntity.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerLerpObjectUnsetWaitForEntity.cs index 69c3f50fb..227b80dd5 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerLerpObjectUnsetWaitForEntity.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerLerpObjectUnsetWaitForEntity.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCTriggerLerpObjectUnsetWaitForEntity : BaseDatamapFunctionHookContext, IDHookCTriggerLerpObjectUnsetWaitForEntity { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerLookTimeoutThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerLookTimeoutThink.cs index 0a389c852..bef3d965a 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerLookTimeoutThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerLookTimeoutThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCTriggerLookTimeoutThink : BaseDatamapFunctionHookContext, IDHookCTriggerLookTimeoutThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerMultipleMultiTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerMultipleMultiTouch.cs index 7598a2519..b25754ba0 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerMultipleMultiTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerMultipleMultiTouch.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCTriggerMultipleMultiTouch : BaseDatamapFunctionHookContext, IDHookCTriggerMultipleMultiTouch { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerMultipleMultiWaitOver.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerMultipleMultiWaitOver.cs index bd9b43735..bd9e951c7 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerMultipleMultiWaitOver.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerMultipleMultiWaitOver.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCTriggerMultipleMultiWaitOver : BaseDatamapFunctionHookContext, IDHookCTriggerMultipleMultiWaitOver { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerProximityMeasureThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerProximityMeasureThink.cs index b22f10317..b7d207a8a 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerProximityMeasureThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerProximityMeasureThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCTriggerProximityMeasureThink : BaseDatamapFunctionHookContext, IDHookCTriggerProximityMeasureThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerSndSosOpvarSndSosTriggerOpvarWaitOver.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerSndSosOpvarSndSosTriggerOpvarWaitOver.cs index 17a307d38..783ee32f4 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerSndSosOpvarSndSosTriggerOpvarWaitOver.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerSndSosOpvarSndSosTriggerOpvarWaitOver.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCTriggerSndSosOpvarSndSosTriggerOpvarWaitOver : BaseDatamapFunctionHookContext, IDHookCTriggerSndSosOpvarSndSosTriggerOpvarWaitOver { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerSoundscapePlayerUpdateThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerSoundscapePlayerUpdateThink.cs index e0471f311..14a27ea04 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerSoundscapePlayerUpdateThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCTriggerSoundscapePlayerUpdateThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCTriggerSoundscapePlayerUpdateThink : BaseDatamapFunctionHookContext, IDHookCTriggerSoundscapePlayerUpdateThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCVoteControllerVoteControllerThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCVoteControllerVoteControllerThink.cs index 088d289c2..d181bb9f3 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCVoteControllerVoteControllerThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCVoteControllerVoteControllerThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCVoteControllerVoteControllerThink : BaseDatamapFunctionHookContext, IDHookCVoteControllerVoteControllerThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCWaterBulletBulletThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCWaterBulletBulletThink.cs index 1c12801ad..d2894babc 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCWaterBulletBulletThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DHookCWaterBulletBulletThink.cs @@ -5,4 +5,4 @@ namespace SwiftlyS2.Core.Datamaps; internal class DHookCWaterBulletBulletThink : BaseDatamapFunctionHookContext, IDHookCWaterBulletBulletThink { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DatamapFunctionManager.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DatamapFunctionManager.cs index b19525f2e..4b582f315 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DatamapFunctionManager.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DatamapFunctionManager.cs @@ -8,432 +8,219 @@ internal partial class DatamapFunctionManager public HookManager HookManager { get; } public BaseDatamapFunction CBaseDoorDoorTouch { get; init; } - public BaseDatamapFunction CBaseDoorDoorGoUp { get; init; } - public BaseDatamapFunction CBaseDoorDoorGoDown { get; init; } - public BaseDatamapFunction CBaseDoorDoorHitTop { get; init; } - public BaseDatamapFunction CBaseDoorDoorHitBottom { get; init; } - public BaseDatamapFunction CBaseDoorMovingSoundThink { get; init; } - public BaseDatamapFunction CBaseDoorCloseAreaPortalsThink { get; init; } - public BaseDatamapFunction CGunTargetNext { get; init; } - public BaseDatamapFunction CGunTargetStart { get; init; } - public BaseDatamapFunction CGunTargetWait { get; init; } - public BaseDatamapFunction CDynamicLightDynamicLightThink { get; init; } - public BaseDatamapFunction CBarnLightThink_SetNextQueuedLightStyle { get; init; } - public BaseDatamapFunction CBarnLightThink_ApplyLightStylesToTargets { get; init; } - public BaseDatamapFunction CBarnLightThink_LightStyleEvent { get; init; } - public BaseDatamapFunction CEnvLaserStrikeThink { get; init; } - public BaseDatamapFunction CMultiSourceRegister { get; init; } - public BaseDatamapFunction CPhysHingeSoundThink { get; init; } - public BaseDatamapFunction CPhysHingeLimitThink { get; init; } - public BaseDatamapFunction CPhysHingeMoveThink { get; init; } - public BaseDatamapFunction CSoundOpvarSetPointBaseSetOpvarThink { get; init; } - public BaseDatamapFunction CEnvEntityMakerCheckSpawnThink { get; init; } - public BaseDatamapFunction CPointHurtHurtThink { get; init; } - public BaseDatamapFunction CColorCorrectionFadeInThink { get; init; } - public BaseDatamapFunction CColorCorrectionFadeOutThink { get; init; } - public BaseDatamapFunction CPhysicsPropClearFlagsThink { get; init; } - public BaseDatamapFunction CInfernoInfernoThink { get; init; } - public BaseDatamapFunction CFuncTrainWait { get; init; } - public BaseDatamapFunction CFuncTrainNext { get; init; } - public BaseDatamapFunction CBasePropDoorDoorOpenMoveDone { get; init; } - public BaseDatamapFunction CBasePropDoorDoorCloseMoveDone { get; init; } - public BaseDatamapFunction CBasePropDoorDoorAutoCloseThink { get; init; } - public BaseDatamapFunction CBasePropDoorDisableAreaPortalThink { get; init; } - public BaseDatamapFunction CInfoSpawnGroupLoadUnloadSpawnGroupLoadingThink { get; init; } - public BaseDatamapFunction CInfoSpawnGroupLoadUnloadSpawnGroupUnloadingThink { get; init; } - public BaseDatamapFunction CItemDefuserActivateThink { get; init; } - public BaseDatamapFunction CItemDefuserDefuserTouch { get; init; } - public BaseDatamapFunction CEnvSparkSparkThink { get; init; } - public BaseDatamapFunction CBaseGrenadeSmoke { get; init; } - public BaseDatamapFunction CBaseGrenadeBounceTouch { get; init; } - public BaseDatamapFunction CBaseGrenadeSlideTouch { get; init; } - public BaseDatamapFunction CBaseGrenadeExplodeTouch { get; init; } - public BaseDatamapFunction CBaseGrenadeDetonateUse { get; init; } - public BaseDatamapFunction CBaseGrenadeDangerSoundThink { get; init; } - public BaseDatamapFunction CBaseGrenadePreDetonate { get; init; } - public BaseDatamapFunction CBaseGrenadeDetonate { get; init; } - public BaseDatamapFunction CBaseGrenadeTumbleThink { get; init; } - public BaseDatamapFunction CSpriteAnimateThink { get; init; } - public BaseDatamapFunction CSpriteExpandThink { get; init; } - public BaseDatamapFunction CSpriteAnimateUntilDead { get; init; } - public BaseDatamapFunction CSpriteBeginFadeOutThink { get; init; } - public BaseDatamapFunction CPhysSlideConstraintSoundThink { get; init; } - public BaseDatamapFunction CEntityFlameFlameThink { get; init; } - public BaseDatamapFunction CSoundEventConeEntitySoundEventConeThink { get; init; } - public BaseDatamapFunction CFuncMoveLinearNavObstacleThink { get; init; } - public BaseDatamapFunction CFuncMoveLinearNavMovableThink { get; init; } - public BaseDatamapFunction CFuncMoveLinearStopMoveSound { get; init; } - public BaseDatamapFunction CHostageHostageUse { get; init; } - public BaseDatamapFunction CHostageHostageThink { get; init; } - public BaseDatamapFunction CLogicDistanceAutosaveSaveThink { get; init; } - public BaseDatamapFunction CSoundOpvarSetOBBWindEntitySetOpvarThink { get; init; } - public BaseDatamapFunction CSmokeGrenadeProjectileThink_Detonate { get; init; } - public BaseDatamapFunction CSmokeGrenadeProjectileThink_Update { get; init; } - public BaseDatamapFunction CSmokeGrenadeProjectileThink_Remove { get; init; } - public BaseDatamapFunction CSmokeGrenadeProjectileThink_BuildingSmokeVolume { get; init; } - public BaseDatamapFunction CLogicNPCCounterSetNPCCounterThink { get; init; } - public BaseDatamapFunction CFuncShatterglassGlassThink { get; init; } - public BaseDatamapFunction CSoundOpvarSetAutoRoomEntitySetOpvarThink { get; init; } - public BaseDatamapFunction CTriggerGravityGravityTouch { get; init; } - public BaseDatamapFunction CSoundEventPathCornerEntitySoundEventPathCornerThink { get; init; } - public BaseDatamapFunction CItemItemTouch { get; init; } - public BaseDatamapFunction CItemMaterialize { get; init; } - public BaseDatamapFunction CItemComeToRest { get; init; } - public BaseDatamapFunction CBaseCSGrenadeProjectileDangerSoundThink { get; init; } - public BaseDatamapFunction CSoundOpvarSetPathCornerEntitySetOpvarThink { get; init; } - public BaseDatamapFunction CBaseButtonButtonTouch { get; init; } - public BaseDatamapFunction CBaseButtonButtonSpark { get; init; } - public BaseDatamapFunction CBaseButtonTriggerAndWait { get; init; } - public BaseDatamapFunction CBaseButtonButtonReturn { get; init; } - public BaseDatamapFunction CBaseButtonButtonBackHome { get; init; } - public BaseDatamapFunction CBaseButtonButtonUse { get; init; } - public BaseDatamapFunction CBaseButtonActivateTouch { get; init; } - public BaseDatamapFunction CRevertSavedLoadThink { get; init; } - public BaseDatamapFunction CSoundEventOBBEntitySoundEventOBBThink { get; init; } - public BaseDatamapFunction CSplineConstraintTransitionThink { get; init; } - public BaseDatamapFunction CCSWeaponBaseDefaultTouch { get; init; } - public BaseDatamapFunction CCSWeaponBaseRemoveUnownedWeaponThink { get; init; } - public BaseDatamapFunction CChickenChickenTouch { get; init; } - public BaseDatamapFunction CChickenChickenThink { get; init; } - public BaseDatamapFunction CChickenChickenUse { get; init; } - public BaseDatamapFunction CBaseAnimGraphChoreoServicesThink { get; init; } - public BaseDatamapFunction CParticleSystemStartParticleSystemThink { get; init; } - public BaseDatamapFunction CBaseFlexProcessSceneEventsThink { get; init; } - public BaseDatamapFunction CTriggerProximityMeasureThink { get; init; } - public BaseDatamapFunction CRagdollPropSetDebrisThink { get; init; } - public BaseDatamapFunction CRagdollPropClearFlagsThink { get; init; } - public BaseDatamapFunction CRagdollPropFadeOutThink { get; init; } - public BaseDatamapFunction CRagdollPropSettleThink { get; init; } - public BaseDatamapFunction CRagdollPropAttachedItemsThink { get; init; } - public BaseDatamapFunction CPointValueRemapperUpdateThink { get; init; } - public BaseDatamapFunction CBreakablePropBreakThink { get; init; } - public BaseDatamapFunction CBreakablePropRampToDefaultFadeScale { get; init; } - public BaseDatamapFunction CGenericConstraintUpdateThink { get; init; } - public BaseDatamapFunction CItemSodaCanThink { get; init; } - public BaseDatamapFunction CFuncMoverLerpToNewPosition { get; init; } - public BaseDatamapFunction CEnvWindWindThink { get; init; } - public BaseDatamapFunction CCSPlayerControllerPlayerForceTeamThink { get; init; } - public BaseDatamapFunction CCSPlayerControllerResetForceTeamThink { get; init; } - public BaseDatamapFunction CCSPlayerControllerResourceDataThink { get; init; } - public BaseDatamapFunction CCSPlayerControllerInventoryUpdateThink { get; init; } - public BaseDatamapFunction CLogicActiveAutosaveSaveThink { get; init; } - public BaseDatamapFunction CBaseEntitySUB_Remove { get; init; } - public BaseDatamapFunction CBaseEntitySUB_RemoveIfUncarried { get; init; } - public BaseDatamapFunction CBaseEntitySUB_DoNothing { get; init; } - public BaseDatamapFunction CBaseEntitySUB_Vanish { get; init; } - public BaseDatamapFunction CBaseEntitySUB_CallUseToggle { get; init; } - public BaseDatamapFunction CBaseEntitySUB_KillSelf { get; init; } - public BaseDatamapFunction CBaseEntitySUB_KillSelfIfUncarried { get; init; } - public BaseDatamapFunction CBaseEntityFakeScriptThinkFunc { get; init; } - public BaseDatamapFunction CBaseEntityClearNavIgnoreContentsThink { get; init; } - public BaseDatamapFunction CFuncRotatorRotateThink { get; init; } - public BaseDatamapFunction CPointPushPushThink { get; init; } - public BaseDatamapFunction CTriggerFanPushThink { get; init; } - public BaseDatamapFunction CDynamicPropAnimThink { get; init; } - public BaseDatamapFunction CHostageRescueZoneCHostageRescueZoneShim_Touch { get; init; } - public BaseDatamapFunction CBombTargetCBombTargetShim_Touch { get; init; } - public BaseDatamapFunction CBombTargetCBombTargetShim_BombTargetUse { get; init; } - public BaseDatamapFunction CSoundEventEntitySoundFinishedThink { get; init; } - public BaseDatamapFunction CFuncTrackTrainNext { get; init; } - public BaseDatamapFunction CFuncTrackTrainFind { get; init; } - public BaseDatamapFunction CFuncTrackTrainNearestPath { get; init; } - public BaseDatamapFunction CFuncTrackTrainDeadEnd { get; init; } - public BaseDatamapFunction CMomentaryRotButtonUseMoveDone { get; init; } - public BaseDatamapFunction CMomentaryRotButtonReturnMoveDone { get; init; } - public BaseDatamapFunction CMomentaryRotButtonSetPositionMoveDone { get; init; } - public BaseDatamapFunction CMomentaryRotButtonUpdateThink { get; init; } - public BaseDatamapFunction CTriggerSndSosOpvarSndSosTriggerOpvarWaitOver { get; init; } - public BaseDatamapFunction CVoteControllerVoteControllerThink { get; init; } - public BaseDatamapFunction CPhysForceForceOff { get; init; } - public BaseDatamapFunction CPhysForceInitialThink { get; init; } - public BaseDatamapFunction CSoundOpvarSetPointEntitySetOpvarThink { get; init; } - public BaseDatamapFunction CDecoyProjectileThink_Detonate { get; init; } - public BaseDatamapFunction CDecoyProjectileGunfireThink { get; init; } - public BaseDatamapFunction CPlantedC4C4Think { get; init; } - public BaseDatamapFunction CItemGenericTriggerHelperItemGenericTriggerHelperTouch { get; init; } - public BaseDatamapFunction CPointOrientReorientThink { get; init; } - public BaseDatamapFunction CMultiLightProxyRestoreFlashlightThink { get; init; } - public BaseDatamapFunction CMultiLightProxyApproachBrightnessThink { get; init; } - public BaseDatamapFunction CAmbientGenericRampThink { get; init; } - public BaseDatamapFunction CSoundEventSphereEntitySoundEventSphereThink { get; init; } - public BaseDatamapFunction CBreakableDie { get; init; } - public BaseDatamapFunction CTriggerHurtRadiationThink { get; init; } - public BaseDatamapFunction CTriggerHurtHurtThink { get; init; } - public BaseDatamapFunction CTriggerHurtNavThink { get; init; } - public BaseDatamapFunction CScriptedSequenceScriptThink { get; init; } - public BaseDatamapFunction CEnvWindControllerWindThink { get; init; } - public BaseDatamapFunction CTriggerMultipleMultiTouch { get; init; } - public BaseDatamapFunction CTriggerMultipleMultiWaitOver { get; init; } - public BaseDatamapFunction CFuncRotatingSpinUpMove { get; init; } - public BaseDatamapFunction CFuncRotatingSpinDownMove { get; init; } - public BaseDatamapFunction CFuncRotatingHurtTouch { get; init; } - public BaseDatamapFunction CFuncRotatingRotatingUse { get; init; } - public BaseDatamapFunction CFuncRotatingRotateMove { get; init; } - public BaseDatamapFunction CFuncRotatingReverseMove { get; init; } - public BaseDatamapFunction CCSPlayerPawnCheckStuffThink { get; init; } - public BaseDatamapFunction CCSPlayerPawnPushawayThink { get; init; } - public BaseDatamapFunction CMapVetoPickControllerVoteControllerThink { get; init; } - public BaseDatamapFunction CEntityDissolveDissolveThink { get; init; } - public BaseDatamapFunction CEntityDissolveElectrocuteThink { get; init; } - public BaseDatamapFunction CLogicMeasureMovementMeasureThink { get; init; } - public BaseDatamapFunction CTriggerImpactDisable { get; init; } - public BaseDatamapFunction CEnvBeamStrikeThink { get; init; } - public BaseDatamapFunction CEnvBeamUpdateThink { get; init; } - public BaseDatamapFunction CCSPlayerResourceResourceThink { get; init; } - public BaseDatamapFunction CBaseModelEntitySUB_DissolveIfUncarried { get; init; } - public BaseDatamapFunction CBaseModelEntitySUB_StartFadeOut { get; init; } - public BaseDatamapFunction CBaseModelEntitySUB_StartFadeOutInstant { get; init; } - public BaseDatamapFunction CBaseModelEntitySUB_FadeOut { get; init; } - public BaseDatamapFunction CBaseModelEntitySUB_StartShadowFadeOut { get; init; } - public BaseDatamapFunction CBaseModelEntitySUB_PerformShadowFadeOut { get; init; } - public BaseDatamapFunction CBaseModelEntitySUB_StartShadowFadeIn { get; init; } - public BaseDatamapFunction CBaseModelEntitySUB_PerformShadowFadeIn { get; init; } - public BaseDatamapFunction CBaseModelEntitySUB_StopShadowFade { get; init; } - public BaseDatamapFunction CSoundOpvarSetAABBEntitySetOpvarThink { get; init; } - public BaseDatamapFunction CFuncTrainControlsFind { get; init; } - public BaseDatamapFunction CPhysicsPropRespawnableMaterialize { get; init; } - public BaseDatamapFunction CFishPoolUpdate { get; init; } - public BaseDatamapFunction CTriggerSoundscapePlayerUpdateThink { get; init; } - public BaseDatamapFunction CItemGenericItemGenericTouch { get; init; } - public BaseDatamapFunction CTriggerActiveWeaponDetectActiveWeaponThink { get; init; } - public BaseDatamapFunction CFogControllerSetLerpValues { get; init; } - public BaseDatamapFunction CFuncTrackChangeFind { get; init; } - public BaseDatamapFunction CTriggerLookTimeoutThink { get; init; } - public BaseDatamapFunction CSoundOpvarSetOBBEntitySetOpvarThink { get; init; } - public BaseDatamapFunction CColorCorrectionVolumeThinkFunc { get; init; } - public BaseDatamapFunction CWaterBulletBulletThink { get; init; } - public BaseDatamapFunction CFuncPlatPlatUse { get; init; } - public BaseDatamapFunction CFuncPlatCallGoDown { get; init; } - public BaseDatamapFunction CFuncPlatCallHitTop { get; init; } - public BaseDatamapFunction CFuncPlatCallHitBottom { get; init; } - public BaseDatamapFunction CPhysImpactPointAtEntity { get; init; } - public BaseDatamapFunction CTriggerLerpObjectLerpThink { get; init; } - public BaseDatamapFunction CTriggerLerpObjectUnsetWaitForEntity { get; init; } - public BaseDatamapFunction CTriggerLerpObjectAttachedEntityThink { get; init; } - public BaseDatamapFunction CPathMoverEntitySpawnerSpawnThink { get; init; } - public BaseDatamapFunction CPointCommentaryNodeSpinThink { get; init; } - public BaseDatamapFunction CPointCommentaryNodeUpdateViewThink { get; init; } - public BaseDatamapFunction CPointCommentaryNodeUpdateViewPostThink { get; init; } - public BaseDatamapFunction CPointCommentaryNodeAcculumatePlayTimeThink { get; init; } - public BaseDatamapFunction CPathNodeParentedMoveThink { get; init; } - public BaseDatamapFunction CPhysicalButtonPhysicsThink { get; init; } - public BaseDatamapFunction CPhysicalButtonButtonTouch { get; init; } - public BaseDatamapFunction CPhysicalButtonTriggerAndWait { get; init; } - public BaseDatamapFunction CPhysicalButtonButtonBackHome { get; init; } - public DatamapFunctionManager(HookManager hookManager) { HookManager = hookManager; @@ -652,4 +439,4 @@ public DatamapFunctionManager(HookManager hookManager) CPhysicalButtonButtonBackHome = new(this, 1032498399); } -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DatamapFunctionService.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DatamapFunctionService.cs index 7cfa337d5..b91e1c55e 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DatamapFunctionService.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Classes/DatamapFunctionService.cs @@ -10,1064 +10,851 @@ internal partial class DatamapFunctionService : IDatamapFunctionService IDatamapFunctionOperator IDatamapFunctionService.CBaseDoorDoorTouch => CBaseDoorDoorTouch; - public IDatamapFunctionOperator CBaseDoorDoorGoUp { get; } = manager.CBaseDoorDoorGoUp.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseDoorDoorGoUp => CBaseDoorDoorGoUp; - public IDatamapFunctionOperator CBaseDoorDoorGoDown { get; } = manager.CBaseDoorDoorGoDown.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseDoorDoorGoDown => CBaseDoorDoorGoDown; - public IDatamapFunctionOperator CBaseDoorDoorHitTop { get; } = manager.CBaseDoorDoorHitTop.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseDoorDoorHitTop => CBaseDoorDoorHitTop; - public IDatamapFunctionOperator CBaseDoorDoorHitBottom { get; } = manager.CBaseDoorDoorHitBottom.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseDoorDoorHitBottom => CBaseDoorDoorHitBottom; - public IDatamapFunctionOperator CBaseDoorMovingSoundThink { get; } = manager.CBaseDoorMovingSoundThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseDoorMovingSoundThink => CBaseDoorMovingSoundThink; - public IDatamapFunctionOperator CBaseDoorCloseAreaPortalsThink { get; } = manager.CBaseDoorCloseAreaPortalsThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseDoorCloseAreaPortalsThink => CBaseDoorCloseAreaPortalsThink; - public IDatamapFunctionOperator CGunTargetNext { get; } = manager.CGunTargetNext.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CGunTargetNext => CGunTargetNext; - public IDatamapFunctionOperator CGunTargetStart { get; } = manager.CGunTargetStart.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CGunTargetStart => CGunTargetStart; - public IDatamapFunctionOperator CGunTargetWait { get; } = manager.CGunTargetWait.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CGunTargetWait => CGunTargetWait; - public IDatamapFunctionOperator CDynamicLightDynamicLightThink { get; } = manager.CDynamicLightDynamicLightThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CDynamicLightDynamicLightThink => CDynamicLightDynamicLightThink; - public IDatamapFunctionOperator CBarnLightThink_SetNextQueuedLightStyle { get; } = manager.CBarnLightThink_SetNextQueuedLightStyle.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBarnLightThink_SetNextQueuedLightStyle => CBarnLightThink_SetNextQueuedLightStyle; - public IDatamapFunctionOperator CBarnLightThink_ApplyLightStylesToTargets { get; } = manager.CBarnLightThink_ApplyLightStylesToTargets.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBarnLightThink_ApplyLightStylesToTargets => CBarnLightThink_ApplyLightStylesToTargets; - public IDatamapFunctionOperator CBarnLightThink_LightStyleEvent { get; } = manager.CBarnLightThink_LightStyleEvent.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBarnLightThink_LightStyleEvent => CBarnLightThink_LightStyleEvent; - public IDatamapFunctionOperator CEnvLaserStrikeThink { get; } = manager.CEnvLaserStrikeThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CEnvLaserStrikeThink => CEnvLaserStrikeThink; - public IDatamapFunctionOperator CMultiSourceRegister { get; } = manager.CMultiSourceRegister.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CMultiSourceRegister => CMultiSourceRegister; - public IDatamapFunctionOperator CPhysHingeSoundThink { get; } = manager.CPhysHingeSoundThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CPhysHingeSoundThink => CPhysHingeSoundThink; - public IDatamapFunctionOperator CPhysHingeLimitThink { get; } = manager.CPhysHingeLimitThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CPhysHingeLimitThink => CPhysHingeLimitThink; - public IDatamapFunctionOperator CPhysHingeMoveThink { get; } = manager.CPhysHingeMoveThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CPhysHingeMoveThink => CPhysHingeMoveThink; - public IDatamapFunctionOperator CSoundOpvarSetPointBaseSetOpvarThink { get; } = manager.CSoundOpvarSetPointBaseSetOpvarThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CSoundOpvarSetPointBaseSetOpvarThink => CSoundOpvarSetPointBaseSetOpvarThink; - public IDatamapFunctionOperator CEnvEntityMakerCheckSpawnThink { get; } = manager.CEnvEntityMakerCheckSpawnThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CEnvEntityMakerCheckSpawnThink => CEnvEntityMakerCheckSpawnThink; - public IDatamapFunctionOperator CPointHurtHurtThink { get; } = manager.CPointHurtHurtThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CPointHurtHurtThink => CPointHurtHurtThink; - public IDatamapFunctionOperator CColorCorrectionFadeInThink { get; } = manager.CColorCorrectionFadeInThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CColorCorrectionFadeInThink => CColorCorrectionFadeInThink; - public IDatamapFunctionOperator CColorCorrectionFadeOutThink { get; } = manager.CColorCorrectionFadeOutThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CColorCorrectionFadeOutThink => CColorCorrectionFadeOutThink; - public IDatamapFunctionOperator CPhysicsPropClearFlagsThink { get; } = manager.CPhysicsPropClearFlagsThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CPhysicsPropClearFlagsThink => CPhysicsPropClearFlagsThink; - public IDatamapFunctionOperator CInfernoInfernoThink { get; } = manager.CInfernoInfernoThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CInfernoInfernoThink => CInfernoInfernoThink; - public IDatamapFunctionOperator CFuncTrainWait { get; } = manager.CFuncTrainWait.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CFuncTrainWait => CFuncTrainWait; - public IDatamapFunctionOperator CFuncTrainNext { get; } = manager.CFuncTrainNext.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CFuncTrainNext => CFuncTrainNext; - public IDatamapFunctionOperator CBasePropDoorDoorOpenMoveDone { get; } = manager.CBasePropDoorDoorOpenMoveDone.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBasePropDoorDoorOpenMoveDone => CBasePropDoorDoorOpenMoveDone; - public IDatamapFunctionOperator CBasePropDoorDoorCloseMoveDone { get; } = manager.CBasePropDoorDoorCloseMoveDone.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBasePropDoorDoorCloseMoveDone => CBasePropDoorDoorCloseMoveDone; - public IDatamapFunctionOperator CBasePropDoorDoorAutoCloseThink { get; } = manager.CBasePropDoorDoorAutoCloseThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBasePropDoorDoorAutoCloseThink => CBasePropDoorDoorAutoCloseThink; - public IDatamapFunctionOperator CBasePropDoorDisableAreaPortalThink { get; } = manager.CBasePropDoorDisableAreaPortalThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBasePropDoorDisableAreaPortalThink => CBasePropDoorDisableAreaPortalThink; - public IDatamapFunctionOperator CInfoSpawnGroupLoadUnloadSpawnGroupLoadingThink { get; } = manager.CInfoSpawnGroupLoadUnloadSpawnGroupLoadingThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CInfoSpawnGroupLoadUnloadSpawnGroupLoadingThink => CInfoSpawnGroupLoadUnloadSpawnGroupLoadingThink; - public IDatamapFunctionOperator CInfoSpawnGroupLoadUnloadSpawnGroupUnloadingThink { get; } = manager.CInfoSpawnGroupLoadUnloadSpawnGroupUnloadingThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CInfoSpawnGroupLoadUnloadSpawnGroupUnloadingThink => CInfoSpawnGroupLoadUnloadSpawnGroupUnloadingThink; - public IDatamapFunctionOperator CItemDefuserActivateThink { get; } = manager.CItemDefuserActivateThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CItemDefuserActivateThink => CItemDefuserActivateThink; - public IDatamapFunctionOperator CItemDefuserDefuserTouch { get; } = manager.CItemDefuserDefuserTouch.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CItemDefuserDefuserTouch => CItemDefuserDefuserTouch; - public IDatamapFunctionOperator CEnvSparkSparkThink { get; } = manager.CEnvSparkSparkThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CEnvSparkSparkThink => CEnvSparkSparkThink; - public IDatamapFunctionOperator CBaseGrenadeSmoke { get; } = manager.CBaseGrenadeSmoke.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseGrenadeSmoke => CBaseGrenadeSmoke; - public IDatamapFunctionOperator CBaseGrenadeBounceTouch { get; } = manager.CBaseGrenadeBounceTouch.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseGrenadeBounceTouch => CBaseGrenadeBounceTouch; - public IDatamapFunctionOperator CBaseGrenadeSlideTouch { get; } = manager.CBaseGrenadeSlideTouch.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseGrenadeSlideTouch => CBaseGrenadeSlideTouch; - public IDatamapFunctionOperator CBaseGrenadeExplodeTouch { get; } = manager.CBaseGrenadeExplodeTouch.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseGrenadeExplodeTouch => CBaseGrenadeExplodeTouch; - public IDatamapFunctionOperator CBaseGrenadeDetonateUse { get; } = manager.CBaseGrenadeDetonateUse.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseGrenadeDetonateUse => CBaseGrenadeDetonateUse; - public IDatamapFunctionOperator CBaseGrenadeDangerSoundThink { get; } = manager.CBaseGrenadeDangerSoundThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseGrenadeDangerSoundThink => CBaseGrenadeDangerSoundThink; - public IDatamapFunctionOperator CBaseGrenadePreDetonate { get; } = manager.CBaseGrenadePreDetonate.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseGrenadePreDetonate => CBaseGrenadePreDetonate; - public IDatamapFunctionOperator CBaseGrenadeDetonate { get; } = manager.CBaseGrenadeDetonate.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseGrenadeDetonate => CBaseGrenadeDetonate; - public IDatamapFunctionOperator CBaseGrenadeTumbleThink { get; } = manager.CBaseGrenadeTumbleThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseGrenadeTumbleThink => CBaseGrenadeTumbleThink; - public IDatamapFunctionOperator CSpriteAnimateThink { get; } = manager.CSpriteAnimateThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CSpriteAnimateThink => CSpriteAnimateThink; - public IDatamapFunctionOperator CSpriteExpandThink { get; } = manager.CSpriteExpandThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CSpriteExpandThink => CSpriteExpandThink; - public IDatamapFunctionOperator CSpriteAnimateUntilDead { get; } = manager.CSpriteAnimateUntilDead.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CSpriteAnimateUntilDead => CSpriteAnimateUntilDead; - public IDatamapFunctionOperator CSpriteBeginFadeOutThink { get; } = manager.CSpriteBeginFadeOutThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CSpriteBeginFadeOutThink => CSpriteBeginFadeOutThink; - public IDatamapFunctionOperator CPhysSlideConstraintSoundThink { get; } = manager.CPhysSlideConstraintSoundThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CPhysSlideConstraintSoundThink => CPhysSlideConstraintSoundThink; - public IDatamapFunctionOperator CEntityFlameFlameThink { get; } = manager.CEntityFlameFlameThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CEntityFlameFlameThink => CEntityFlameFlameThink; - public IDatamapFunctionOperator CSoundEventConeEntitySoundEventConeThink { get; } = manager.CSoundEventConeEntitySoundEventConeThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CSoundEventConeEntitySoundEventConeThink => CSoundEventConeEntitySoundEventConeThink; - public IDatamapFunctionOperator CFuncMoveLinearNavObstacleThink { get; } = manager.CFuncMoveLinearNavObstacleThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CFuncMoveLinearNavObstacleThink => CFuncMoveLinearNavObstacleThink; - public IDatamapFunctionOperator CFuncMoveLinearNavMovableThink { get; } = manager.CFuncMoveLinearNavMovableThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CFuncMoveLinearNavMovableThink => CFuncMoveLinearNavMovableThink; - public IDatamapFunctionOperator CFuncMoveLinearStopMoveSound { get; } = manager.CFuncMoveLinearStopMoveSound.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CFuncMoveLinearStopMoveSound => CFuncMoveLinearStopMoveSound; - public IDatamapFunctionOperator CHostageHostageUse { get; } = manager.CHostageHostageUse.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CHostageHostageUse => CHostageHostageUse; - public IDatamapFunctionOperator CHostageHostageThink { get; } = manager.CHostageHostageThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CHostageHostageThink => CHostageHostageThink; - public IDatamapFunctionOperator CLogicDistanceAutosaveSaveThink { get; } = manager.CLogicDistanceAutosaveSaveThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CLogicDistanceAutosaveSaveThink => CLogicDistanceAutosaveSaveThink; - public IDatamapFunctionOperator CSoundOpvarSetOBBWindEntitySetOpvarThink { get; } = manager.CSoundOpvarSetOBBWindEntitySetOpvarThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CSoundOpvarSetOBBWindEntitySetOpvarThink => CSoundOpvarSetOBBWindEntitySetOpvarThink; - public IDatamapFunctionOperator CSmokeGrenadeProjectileThink_Detonate { get; } = manager.CSmokeGrenadeProjectileThink_Detonate.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CSmokeGrenadeProjectileThink_Detonate => CSmokeGrenadeProjectileThink_Detonate; - public IDatamapFunctionOperator CSmokeGrenadeProjectileThink_Update { get; } = manager.CSmokeGrenadeProjectileThink_Update.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CSmokeGrenadeProjectileThink_Update => CSmokeGrenadeProjectileThink_Update; - public IDatamapFunctionOperator CSmokeGrenadeProjectileThink_Remove { get; } = manager.CSmokeGrenadeProjectileThink_Remove.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CSmokeGrenadeProjectileThink_Remove => CSmokeGrenadeProjectileThink_Remove; - public IDatamapFunctionOperator CSmokeGrenadeProjectileThink_BuildingSmokeVolume { get; } = manager.CSmokeGrenadeProjectileThink_BuildingSmokeVolume.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CSmokeGrenadeProjectileThink_BuildingSmokeVolume => CSmokeGrenadeProjectileThink_BuildingSmokeVolume; - public IDatamapFunctionOperator CLogicNPCCounterSetNPCCounterThink { get; } = manager.CLogicNPCCounterSetNPCCounterThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CLogicNPCCounterSetNPCCounterThink => CLogicNPCCounterSetNPCCounterThink; - public IDatamapFunctionOperator CFuncShatterglassGlassThink { get; } = manager.CFuncShatterglassGlassThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CFuncShatterglassGlassThink => CFuncShatterglassGlassThink; - public IDatamapFunctionOperator CSoundOpvarSetAutoRoomEntitySetOpvarThink { get; } = manager.CSoundOpvarSetAutoRoomEntitySetOpvarThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CSoundOpvarSetAutoRoomEntitySetOpvarThink => CSoundOpvarSetAutoRoomEntitySetOpvarThink; - public IDatamapFunctionOperator CTriggerGravityGravityTouch { get; } = manager.CTriggerGravityGravityTouch.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CTriggerGravityGravityTouch => CTriggerGravityGravityTouch; - public IDatamapFunctionOperator CSoundEventPathCornerEntitySoundEventPathCornerThink { get; } = manager.CSoundEventPathCornerEntitySoundEventPathCornerThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CSoundEventPathCornerEntitySoundEventPathCornerThink => CSoundEventPathCornerEntitySoundEventPathCornerThink; - public IDatamapFunctionOperator CItemItemTouch { get; } = manager.CItemItemTouch.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CItemItemTouch => CItemItemTouch; - public IDatamapFunctionOperator CItemMaterialize { get; } = manager.CItemMaterialize.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CItemMaterialize => CItemMaterialize; - public IDatamapFunctionOperator CItemComeToRest { get; } = manager.CItemComeToRest.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CItemComeToRest => CItemComeToRest; - public IDatamapFunctionOperator CBaseCSGrenadeProjectileDangerSoundThink { get; } = manager.CBaseCSGrenadeProjectileDangerSoundThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseCSGrenadeProjectileDangerSoundThink => CBaseCSGrenadeProjectileDangerSoundThink; - public IDatamapFunctionOperator CSoundOpvarSetPathCornerEntitySetOpvarThink { get; } = manager.CSoundOpvarSetPathCornerEntitySetOpvarThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CSoundOpvarSetPathCornerEntitySetOpvarThink => CSoundOpvarSetPathCornerEntitySetOpvarThink; - public IDatamapFunctionOperator CBaseButtonButtonTouch { get; } = manager.CBaseButtonButtonTouch.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseButtonButtonTouch => CBaseButtonButtonTouch; - public IDatamapFunctionOperator CBaseButtonButtonSpark { get; } = manager.CBaseButtonButtonSpark.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseButtonButtonSpark => CBaseButtonButtonSpark; - public IDatamapFunctionOperator CBaseButtonTriggerAndWait { get; } = manager.CBaseButtonTriggerAndWait.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseButtonTriggerAndWait => CBaseButtonTriggerAndWait; - public IDatamapFunctionOperator CBaseButtonButtonReturn { get; } = manager.CBaseButtonButtonReturn.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseButtonButtonReturn => CBaseButtonButtonReturn; - public IDatamapFunctionOperator CBaseButtonButtonBackHome { get; } = manager.CBaseButtonButtonBackHome.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseButtonButtonBackHome => CBaseButtonButtonBackHome; - public IDatamapFunctionOperator CBaseButtonButtonUse { get; } = manager.CBaseButtonButtonUse.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseButtonButtonUse => CBaseButtonButtonUse; - public IDatamapFunctionOperator CBaseButtonActivateTouch { get; } = manager.CBaseButtonActivateTouch.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseButtonActivateTouch => CBaseButtonActivateTouch; - public IDatamapFunctionOperator CRevertSavedLoadThink { get; } = manager.CRevertSavedLoadThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CRevertSavedLoadThink => CRevertSavedLoadThink; - public IDatamapFunctionOperator CSoundEventOBBEntitySoundEventOBBThink { get; } = manager.CSoundEventOBBEntitySoundEventOBBThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CSoundEventOBBEntitySoundEventOBBThink => CSoundEventOBBEntitySoundEventOBBThink; - public IDatamapFunctionOperator CSplineConstraintTransitionThink { get; } = manager.CSplineConstraintTransitionThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CSplineConstraintTransitionThink => CSplineConstraintTransitionThink; - public IDatamapFunctionOperator CCSWeaponBaseDefaultTouch { get; } = manager.CCSWeaponBaseDefaultTouch.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CCSWeaponBaseDefaultTouch => CCSWeaponBaseDefaultTouch; - public IDatamapFunctionOperator CCSWeaponBaseRemoveUnownedWeaponThink { get; } = manager.CCSWeaponBaseRemoveUnownedWeaponThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CCSWeaponBaseRemoveUnownedWeaponThink => CCSWeaponBaseRemoveUnownedWeaponThink; - public IDatamapFunctionOperator CChickenChickenTouch { get; } = manager.CChickenChickenTouch.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CChickenChickenTouch => CChickenChickenTouch; - public IDatamapFunctionOperator CChickenChickenThink { get; } = manager.CChickenChickenThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CChickenChickenThink => CChickenChickenThink; - public IDatamapFunctionOperator CChickenChickenUse { get; } = manager.CChickenChickenUse.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CChickenChickenUse => CChickenChickenUse; - public IDatamapFunctionOperator CBaseAnimGraphChoreoServicesThink { get; } = manager.CBaseAnimGraphChoreoServicesThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseAnimGraphChoreoServicesThink => CBaseAnimGraphChoreoServicesThink; - public IDatamapFunctionOperator CParticleSystemStartParticleSystemThink { get; } = manager.CParticleSystemStartParticleSystemThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CParticleSystemStartParticleSystemThink => CParticleSystemStartParticleSystemThink; - public IDatamapFunctionOperator CBaseFlexProcessSceneEventsThink { get; } = manager.CBaseFlexProcessSceneEventsThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseFlexProcessSceneEventsThink => CBaseFlexProcessSceneEventsThink; - public IDatamapFunctionOperator CTriggerProximityMeasureThink { get; } = manager.CTriggerProximityMeasureThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CTriggerProximityMeasureThink => CTriggerProximityMeasureThink; - public IDatamapFunctionOperator CRagdollPropSetDebrisThink { get; } = manager.CRagdollPropSetDebrisThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CRagdollPropSetDebrisThink => CRagdollPropSetDebrisThink; - public IDatamapFunctionOperator CRagdollPropClearFlagsThink { get; } = manager.CRagdollPropClearFlagsThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CRagdollPropClearFlagsThink => CRagdollPropClearFlagsThink; - public IDatamapFunctionOperator CRagdollPropFadeOutThink { get; } = manager.CRagdollPropFadeOutThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CRagdollPropFadeOutThink => CRagdollPropFadeOutThink; - public IDatamapFunctionOperator CRagdollPropSettleThink { get; } = manager.CRagdollPropSettleThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CRagdollPropSettleThink => CRagdollPropSettleThink; - public IDatamapFunctionOperator CRagdollPropAttachedItemsThink { get; } = manager.CRagdollPropAttachedItemsThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CRagdollPropAttachedItemsThink => CRagdollPropAttachedItemsThink; - public IDatamapFunctionOperator CPointValueRemapperUpdateThink { get; } = manager.CPointValueRemapperUpdateThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CPointValueRemapperUpdateThink => CPointValueRemapperUpdateThink; - public IDatamapFunctionOperator CBreakablePropBreakThink { get; } = manager.CBreakablePropBreakThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBreakablePropBreakThink => CBreakablePropBreakThink; - public IDatamapFunctionOperator CBreakablePropRampToDefaultFadeScale { get; } = manager.CBreakablePropRampToDefaultFadeScale.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBreakablePropRampToDefaultFadeScale => CBreakablePropRampToDefaultFadeScale; - public IDatamapFunctionOperator CGenericConstraintUpdateThink { get; } = manager.CGenericConstraintUpdateThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CGenericConstraintUpdateThink => CGenericConstraintUpdateThink; - public IDatamapFunctionOperator CItemSodaCanThink { get; } = manager.CItemSodaCanThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CItemSodaCanThink => CItemSodaCanThink; - public IDatamapFunctionOperator CFuncMoverLerpToNewPosition { get; } = manager.CFuncMoverLerpToNewPosition.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CFuncMoverLerpToNewPosition => CFuncMoverLerpToNewPosition; - public IDatamapFunctionOperator CEnvWindWindThink { get; } = manager.CEnvWindWindThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CEnvWindWindThink => CEnvWindWindThink; - public IDatamapFunctionOperator CCSPlayerControllerPlayerForceTeamThink { get; } = manager.CCSPlayerControllerPlayerForceTeamThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CCSPlayerControllerPlayerForceTeamThink => CCSPlayerControllerPlayerForceTeamThink; - public IDatamapFunctionOperator CCSPlayerControllerResetForceTeamThink { get; } = manager.CCSPlayerControllerResetForceTeamThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CCSPlayerControllerResetForceTeamThink => CCSPlayerControllerResetForceTeamThink; - public IDatamapFunctionOperator CCSPlayerControllerResourceDataThink { get; } = manager.CCSPlayerControllerResourceDataThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CCSPlayerControllerResourceDataThink => CCSPlayerControllerResourceDataThink; - public IDatamapFunctionOperator CCSPlayerControllerInventoryUpdateThink { get; } = manager.CCSPlayerControllerInventoryUpdateThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CCSPlayerControllerInventoryUpdateThink => CCSPlayerControllerInventoryUpdateThink; - public IDatamapFunctionOperator CLogicActiveAutosaveSaveThink { get; } = manager.CLogicActiveAutosaveSaveThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CLogicActiveAutosaveSaveThink => CLogicActiveAutosaveSaveThink; - public IDatamapFunctionOperator CBaseEntitySUB_Remove { get; } = manager.CBaseEntitySUB_Remove.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseEntitySUB_Remove => CBaseEntitySUB_Remove; - public IDatamapFunctionOperator CBaseEntitySUB_RemoveIfUncarried { get; } = manager.CBaseEntitySUB_RemoveIfUncarried.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseEntitySUB_RemoveIfUncarried => CBaseEntitySUB_RemoveIfUncarried; - public IDatamapFunctionOperator CBaseEntitySUB_DoNothing { get; } = manager.CBaseEntitySUB_DoNothing.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseEntitySUB_DoNothing => CBaseEntitySUB_DoNothing; - public IDatamapFunctionOperator CBaseEntitySUB_Vanish { get; } = manager.CBaseEntitySUB_Vanish.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseEntitySUB_Vanish => CBaseEntitySUB_Vanish; - public IDatamapFunctionOperator CBaseEntitySUB_CallUseToggle { get; } = manager.CBaseEntitySUB_CallUseToggle.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseEntitySUB_CallUseToggle => CBaseEntitySUB_CallUseToggle; - public IDatamapFunctionOperator CBaseEntitySUB_KillSelf { get; } = manager.CBaseEntitySUB_KillSelf.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseEntitySUB_KillSelf => CBaseEntitySUB_KillSelf; - public IDatamapFunctionOperator CBaseEntitySUB_KillSelfIfUncarried { get; } = manager.CBaseEntitySUB_KillSelfIfUncarried.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseEntitySUB_KillSelfIfUncarried => CBaseEntitySUB_KillSelfIfUncarried; - public IDatamapFunctionOperator CBaseEntityFakeScriptThinkFunc { get; } = manager.CBaseEntityFakeScriptThinkFunc.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseEntityFakeScriptThinkFunc => CBaseEntityFakeScriptThinkFunc; - public IDatamapFunctionOperator CBaseEntityClearNavIgnoreContentsThink { get; } = manager.CBaseEntityClearNavIgnoreContentsThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseEntityClearNavIgnoreContentsThink => CBaseEntityClearNavIgnoreContentsThink; - public IDatamapFunctionOperator CFuncRotatorRotateThink { get; } = manager.CFuncRotatorRotateThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CFuncRotatorRotateThink => CFuncRotatorRotateThink; - public IDatamapFunctionOperator CPointPushPushThink { get; } = manager.CPointPushPushThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CPointPushPushThink => CPointPushPushThink; - public IDatamapFunctionOperator CTriggerFanPushThink { get; } = manager.CTriggerFanPushThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CTriggerFanPushThink => CTriggerFanPushThink; - public IDatamapFunctionOperator CDynamicPropAnimThink { get; } = manager.CDynamicPropAnimThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CDynamicPropAnimThink => CDynamicPropAnimThink; - public IDatamapFunctionOperator CHostageRescueZoneCHostageRescueZoneShim_Touch { get; } = manager.CHostageRescueZoneCHostageRescueZoneShim_Touch.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CHostageRescueZoneCHostageRescueZoneShim_Touch => CHostageRescueZoneCHostageRescueZoneShim_Touch; - public IDatamapFunctionOperator CBombTargetCBombTargetShim_Touch { get; } = manager.CBombTargetCBombTargetShim_Touch.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBombTargetCBombTargetShim_Touch => CBombTargetCBombTargetShim_Touch; - public IDatamapFunctionOperator CBombTargetCBombTargetShim_BombTargetUse { get; } = manager.CBombTargetCBombTargetShim_BombTargetUse.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBombTargetCBombTargetShim_BombTargetUse => CBombTargetCBombTargetShim_BombTargetUse; - public IDatamapFunctionOperator CSoundEventEntitySoundFinishedThink { get; } = manager.CSoundEventEntitySoundFinishedThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CSoundEventEntitySoundFinishedThink => CSoundEventEntitySoundFinishedThink; - public IDatamapFunctionOperator CFuncTrackTrainNext { get; } = manager.CFuncTrackTrainNext.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CFuncTrackTrainNext => CFuncTrackTrainNext; - public IDatamapFunctionOperator CFuncTrackTrainFind { get; } = manager.CFuncTrackTrainFind.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CFuncTrackTrainFind => CFuncTrackTrainFind; - public IDatamapFunctionOperator CFuncTrackTrainNearestPath { get; } = manager.CFuncTrackTrainNearestPath.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CFuncTrackTrainNearestPath => CFuncTrackTrainNearestPath; - public IDatamapFunctionOperator CFuncTrackTrainDeadEnd { get; } = manager.CFuncTrackTrainDeadEnd.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CFuncTrackTrainDeadEnd => CFuncTrackTrainDeadEnd; - public IDatamapFunctionOperator CMomentaryRotButtonUseMoveDone { get; } = manager.CMomentaryRotButtonUseMoveDone.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CMomentaryRotButtonUseMoveDone => CMomentaryRotButtonUseMoveDone; - public IDatamapFunctionOperator CMomentaryRotButtonReturnMoveDone { get; } = manager.CMomentaryRotButtonReturnMoveDone.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CMomentaryRotButtonReturnMoveDone => CMomentaryRotButtonReturnMoveDone; - public IDatamapFunctionOperator CMomentaryRotButtonSetPositionMoveDone { get; } = manager.CMomentaryRotButtonSetPositionMoveDone.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CMomentaryRotButtonSetPositionMoveDone => CMomentaryRotButtonSetPositionMoveDone; - public IDatamapFunctionOperator CMomentaryRotButtonUpdateThink { get; } = manager.CMomentaryRotButtonUpdateThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CMomentaryRotButtonUpdateThink => CMomentaryRotButtonUpdateThink; - public IDatamapFunctionOperator CTriggerSndSosOpvarSndSosTriggerOpvarWaitOver { get; } = manager.CTriggerSndSosOpvarSndSosTriggerOpvarWaitOver.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CTriggerSndSosOpvarSndSosTriggerOpvarWaitOver => CTriggerSndSosOpvarSndSosTriggerOpvarWaitOver; - public IDatamapFunctionOperator CVoteControllerVoteControllerThink { get; } = manager.CVoteControllerVoteControllerThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CVoteControllerVoteControllerThink => CVoteControllerVoteControllerThink; - public IDatamapFunctionOperator CPhysForceForceOff { get; } = manager.CPhysForceForceOff.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CPhysForceForceOff => CPhysForceForceOff; - public IDatamapFunctionOperator CPhysForceInitialThink { get; } = manager.CPhysForceInitialThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CPhysForceInitialThink => CPhysForceInitialThink; - public IDatamapFunctionOperator CSoundOpvarSetPointEntitySetOpvarThink { get; } = manager.CSoundOpvarSetPointEntitySetOpvarThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CSoundOpvarSetPointEntitySetOpvarThink => CSoundOpvarSetPointEntitySetOpvarThink; - public IDatamapFunctionOperator CDecoyProjectileThink_Detonate { get; } = manager.CDecoyProjectileThink_Detonate.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CDecoyProjectileThink_Detonate => CDecoyProjectileThink_Detonate; - public IDatamapFunctionOperator CDecoyProjectileGunfireThink { get; } = manager.CDecoyProjectileGunfireThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CDecoyProjectileGunfireThink => CDecoyProjectileGunfireThink; - public IDatamapFunctionOperator CPlantedC4C4Think { get; } = manager.CPlantedC4C4Think.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CPlantedC4C4Think => CPlantedC4C4Think; - public IDatamapFunctionOperator CItemGenericTriggerHelperItemGenericTriggerHelperTouch { get; } = manager.CItemGenericTriggerHelperItemGenericTriggerHelperTouch.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CItemGenericTriggerHelperItemGenericTriggerHelperTouch => CItemGenericTriggerHelperItemGenericTriggerHelperTouch; - public IDatamapFunctionOperator CPointOrientReorientThink { get; } = manager.CPointOrientReorientThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CPointOrientReorientThink => CPointOrientReorientThink; - public IDatamapFunctionOperator CMultiLightProxyRestoreFlashlightThink { get; } = manager.CMultiLightProxyRestoreFlashlightThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CMultiLightProxyRestoreFlashlightThink => CMultiLightProxyRestoreFlashlightThink; - public IDatamapFunctionOperator CMultiLightProxyApproachBrightnessThink { get; } = manager.CMultiLightProxyApproachBrightnessThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CMultiLightProxyApproachBrightnessThink => CMultiLightProxyApproachBrightnessThink; - public IDatamapFunctionOperator CAmbientGenericRampThink { get; } = manager.CAmbientGenericRampThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CAmbientGenericRampThink => CAmbientGenericRampThink; - public IDatamapFunctionOperator CSoundEventSphereEntitySoundEventSphereThink { get; } = manager.CSoundEventSphereEntitySoundEventSphereThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CSoundEventSphereEntitySoundEventSphereThink => CSoundEventSphereEntitySoundEventSphereThink; - public IDatamapFunctionOperator CBreakableDie { get; } = manager.CBreakableDie.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBreakableDie => CBreakableDie; - public IDatamapFunctionOperator CTriggerHurtRadiationThink { get; } = manager.CTriggerHurtRadiationThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CTriggerHurtRadiationThink => CTriggerHurtRadiationThink; - public IDatamapFunctionOperator CTriggerHurtHurtThink { get; } = manager.CTriggerHurtHurtThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CTriggerHurtHurtThink => CTriggerHurtHurtThink; - public IDatamapFunctionOperator CTriggerHurtNavThink { get; } = manager.CTriggerHurtNavThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CTriggerHurtNavThink => CTriggerHurtNavThink; - public IDatamapFunctionOperator CScriptedSequenceScriptThink { get; } = manager.CScriptedSequenceScriptThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CScriptedSequenceScriptThink => CScriptedSequenceScriptThink; - public IDatamapFunctionOperator CEnvWindControllerWindThink { get; } = manager.CEnvWindControllerWindThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CEnvWindControllerWindThink => CEnvWindControllerWindThink; - public IDatamapFunctionOperator CTriggerMultipleMultiTouch { get; } = manager.CTriggerMultipleMultiTouch.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CTriggerMultipleMultiTouch => CTriggerMultipleMultiTouch; - public IDatamapFunctionOperator CTriggerMultipleMultiWaitOver { get; } = manager.CTriggerMultipleMultiWaitOver.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CTriggerMultipleMultiWaitOver => CTriggerMultipleMultiWaitOver; - public IDatamapFunctionOperator CFuncRotatingSpinUpMove { get; } = manager.CFuncRotatingSpinUpMove.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CFuncRotatingSpinUpMove => CFuncRotatingSpinUpMove; - public IDatamapFunctionOperator CFuncRotatingSpinDownMove { get; } = manager.CFuncRotatingSpinDownMove.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CFuncRotatingSpinDownMove => CFuncRotatingSpinDownMove; - public IDatamapFunctionOperator CFuncRotatingHurtTouch { get; } = manager.CFuncRotatingHurtTouch.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CFuncRotatingHurtTouch => CFuncRotatingHurtTouch; - public IDatamapFunctionOperator CFuncRotatingRotatingUse { get; } = manager.CFuncRotatingRotatingUse.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CFuncRotatingRotatingUse => CFuncRotatingRotatingUse; - public IDatamapFunctionOperator CFuncRotatingRotateMove { get; } = manager.CFuncRotatingRotateMove.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CFuncRotatingRotateMove => CFuncRotatingRotateMove; - public IDatamapFunctionOperator CFuncRotatingReverseMove { get; } = manager.CFuncRotatingReverseMove.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CFuncRotatingReverseMove => CFuncRotatingReverseMove; - public IDatamapFunctionOperator CCSPlayerPawnCheckStuffThink { get; } = manager.CCSPlayerPawnCheckStuffThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CCSPlayerPawnCheckStuffThink => CCSPlayerPawnCheckStuffThink; - public IDatamapFunctionOperator CCSPlayerPawnPushawayThink { get; } = manager.CCSPlayerPawnPushawayThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CCSPlayerPawnPushawayThink => CCSPlayerPawnPushawayThink; - public IDatamapFunctionOperator CMapVetoPickControllerVoteControllerThink { get; } = manager.CMapVetoPickControllerVoteControllerThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CMapVetoPickControllerVoteControllerThink => CMapVetoPickControllerVoteControllerThink; - public IDatamapFunctionOperator CEntityDissolveDissolveThink { get; } = manager.CEntityDissolveDissolveThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CEntityDissolveDissolveThink => CEntityDissolveDissolveThink; - public IDatamapFunctionOperator CEntityDissolveElectrocuteThink { get; } = manager.CEntityDissolveElectrocuteThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CEntityDissolveElectrocuteThink => CEntityDissolveElectrocuteThink; - public IDatamapFunctionOperator CLogicMeasureMovementMeasureThink { get; } = manager.CLogicMeasureMovementMeasureThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CLogicMeasureMovementMeasureThink => CLogicMeasureMovementMeasureThink; - public IDatamapFunctionOperator CTriggerImpactDisable { get; } = manager.CTriggerImpactDisable.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CTriggerImpactDisable => CTriggerImpactDisable; - public IDatamapFunctionOperator CEnvBeamStrikeThink { get; } = manager.CEnvBeamStrikeThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CEnvBeamStrikeThink => CEnvBeamStrikeThink; - public IDatamapFunctionOperator CEnvBeamUpdateThink { get; } = manager.CEnvBeamUpdateThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CEnvBeamUpdateThink => CEnvBeamUpdateThink; - public IDatamapFunctionOperator CCSPlayerResourceResourceThink { get; } = manager.CCSPlayerResourceResourceThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CCSPlayerResourceResourceThink => CCSPlayerResourceResourceThink; - public IDatamapFunctionOperator CBaseModelEntitySUB_DissolveIfUncarried { get; } = manager.CBaseModelEntitySUB_DissolveIfUncarried.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseModelEntitySUB_DissolveIfUncarried => CBaseModelEntitySUB_DissolveIfUncarried; - public IDatamapFunctionOperator CBaseModelEntitySUB_StartFadeOut { get; } = manager.CBaseModelEntitySUB_StartFadeOut.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseModelEntitySUB_StartFadeOut => CBaseModelEntitySUB_StartFadeOut; - public IDatamapFunctionOperator CBaseModelEntitySUB_StartFadeOutInstant { get; } = manager.CBaseModelEntitySUB_StartFadeOutInstant.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseModelEntitySUB_StartFadeOutInstant => CBaseModelEntitySUB_StartFadeOutInstant; - public IDatamapFunctionOperator CBaseModelEntitySUB_FadeOut { get; } = manager.CBaseModelEntitySUB_FadeOut.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseModelEntitySUB_FadeOut => CBaseModelEntitySUB_FadeOut; - public IDatamapFunctionOperator CBaseModelEntitySUB_StartShadowFadeOut { get; } = manager.CBaseModelEntitySUB_StartShadowFadeOut.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseModelEntitySUB_StartShadowFadeOut => CBaseModelEntitySUB_StartShadowFadeOut; - public IDatamapFunctionOperator CBaseModelEntitySUB_PerformShadowFadeOut { get; } = manager.CBaseModelEntitySUB_PerformShadowFadeOut.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseModelEntitySUB_PerformShadowFadeOut => CBaseModelEntitySUB_PerformShadowFadeOut; - public IDatamapFunctionOperator CBaseModelEntitySUB_StartShadowFadeIn { get; } = manager.CBaseModelEntitySUB_StartShadowFadeIn.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseModelEntitySUB_StartShadowFadeIn => CBaseModelEntitySUB_StartShadowFadeIn; - public IDatamapFunctionOperator CBaseModelEntitySUB_PerformShadowFadeIn { get; } = manager.CBaseModelEntitySUB_PerformShadowFadeIn.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseModelEntitySUB_PerformShadowFadeIn => CBaseModelEntitySUB_PerformShadowFadeIn; - public IDatamapFunctionOperator CBaseModelEntitySUB_StopShadowFade { get; } = manager.CBaseModelEntitySUB_StopShadowFade.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CBaseModelEntitySUB_StopShadowFade => CBaseModelEntitySUB_StopShadowFade; - public IDatamapFunctionOperator CSoundOpvarSetAABBEntitySetOpvarThink { get; } = manager.CSoundOpvarSetAABBEntitySetOpvarThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CSoundOpvarSetAABBEntitySetOpvarThink => CSoundOpvarSetAABBEntitySetOpvarThink; - public IDatamapFunctionOperator CFuncTrainControlsFind { get; } = manager.CFuncTrainControlsFind.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CFuncTrainControlsFind => CFuncTrainControlsFind; - public IDatamapFunctionOperator CPhysicsPropRespawnableMaterialize { get; } = manager.CPhysicsPropRespawnableMaterialize.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CPhysicsPropRespawnableMaterialize => CPhysicsPropRespawnableMaterialize; - public IDatamapFunctionOperator CFishPoolUpdate { get; } = manager.CFishPoolUpdate.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CFishPoolUpdate => CFishPoolUpdate; - public IDatamapFunctionOperator CTriggerSoundscapePlayerUpdateThink { get; } = manager.CTriggerSoundscapePlayerUpdateThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CTriggerSoundscapePlayerUpdateThink => CTriggerSoundscapePlayerUpdateThink; - public IDatamapFunctionOperator CItemGenericItemGenericTouch { get; } = manager.CItemGenericItemGenericTouch.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CItemGenericItemGenericTouch => CItemGenericItemGenericTouch; - public IDatamapFunctionOperator CTriggerActiveWeaponDetectActiveWeaponThink { get; } = manager.CTriggerActiveWeaponDetectActiveWeaponThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CTriggerActiveWeaponDetectActiveWeaponThink => CTriggerActiveWeaponDetectActiveWeaponThink; - public IDatamapFunctionOperator CFogControllerSetLerpValues { get; } = manager.CFogControllerSetLerpValues.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CFogControllerSetLerpValues => CFogControllerSetLerpValues; - public IDatamapFunctionOperator CFuncTrackChangeFind { get; } = manager.CFuncTrackChangeFind.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CFuncTrackChangeFind => CFuncTrackChangeFind; - public IDatamapFunctionOperator CTriggerLookTimeoutThink { get; } = manager.CTriggerLookTimeoutThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CTriggerLookTimeoutThink => CTriggerLookTimeoutThink; - public IDatamapFunctionOperator CSoundOpvarSetOBBEntitySetOpvarThink { get; } = manager.CSoundOpvarSetOBBEntitySetOpvarThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CSoundOpvarSetOBBEntitySetOpvarThink => CSoundOpvarSetOBBEntitySetOpvarThink; - public IDatamapFunctionOperator CColorCorrectionVolumeThinkFunc { get; } = manager.CColorCorrectionVolumeThinkFunc.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CColorCorrectionVolumeThinkFunc => CColorCorrectionVolumeThinkFunc; - public IDatamapFunctionOperator CWaterBulletBulletThink { get; } = manager.CWaterBulletBulletThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CWaterBulletBulletThink => CWaterBulletBulletThink; - public IDatamapFunctionOperator CFuncPlatPlatUse { get; } = manager.CFuncPlatPlatUse.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CFuncPlatPlatUse => CFuncPlatPlatUse; - public IDatamapFunctionOperator CFuncPlatCallGoDown { get; } = manager.CFuncPlatCallGoDown.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CFuncPlatCallGoDown => CFuncPlatCallGoDown; - public IDatamapFunctionOperator CFuncPlatCallHitTop { get; } = manager.CFuncPlatCallHitTop.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CFuncPlatCallHitTop => CFuncPlatCallHitTop; - public IDatamapFunctionOperator CFuncPlatCallHitBottom { get; } = manager.CFuncPlatCallHitBottom.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CFuncPlatCallHitBottom => CFuncPlatCallHitBottom; - public IDatamapFunctionOperator CPhysImpactPointAtEntity { get; } = manager.CPhysImpactPointAtEntity.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CPhysImpactPointAtEntity => CPhysImpactPointAtEntity; - public IDatamapFunctionOperator CTriggerLerpObjectLerpThink { get; } = manager.CTriggerLerpObjectLerpThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CTriggerLerpObjectLerpThink => CTriggerLerpObjectLerpThink; - public IDatamapFunctionOperator CTriggerLerpObjectUnsetWaitForEntity { get; } = manager.CTriggerLerpObjectUnsetWaitForEntity.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CTriggerLerpObjectUnsetWaitForEntity => CTriggerLerpObjectUnsetWaitForEntity; - public IDatamapFunctionOperator CTriggerLerpObjectAttachedEntityThink { get; } = manager.CTriggerLerpObjectAttachedEntityThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CTriggerLerpObjectAttachedEntityThink => CTriggerLerpObjectAttachedEntityThink; - public IDatamapFunctionOperator CPathMoverEntitySpawnerSpawnThink { get; } = manager.CPathMoverEntitySpawnerSpawnThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CPathMoverEntitySpawnerSpawnThink => CPathMoverEntitySpawnerSpawnThink; - public IDatamapFunctionOperator CPointCommentaryNodeSpinThink { get; } = manager.CPointCommentaryNodeSpinThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CPointCommentaryNodeSpinThink => CPointCommentaryNodeSpinThink; - public IDatamapFunctionOperator CPointCommentaryNodeUpdateViewThink { get; } = manager.CPointCommentaryNodeUpdateViewThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CPointCommentaryNodeUpdateViewThink => CPointCommentaryNodeUpdateViewThink; - public IDatamapFunctionOperator CPointCommentaryNodeUpdateViewPostThink { get; } = manager.CPointCommentaryNodeUpdateViewPostThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CPointCommentaryNodeUpdateViewPostThink => CPointCommentaryNodeUpdateViewPostThink; - public IDatamapFunctionOperator CPointCommentaryNodeAcculumatePlayTimeThink { get; } = manager.CPointCommentaryNodeAcculumatePlayTimeThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CPointCommentaryNodeAcculumatePlayTimeThink => CPointCommentaryNodeAcculumatePlayTimeThink; - public IDatamapFunctionOperator CPathNodeParentedMoveThink { get; } = manager.CPathNodeParentedMoveThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CPathNodeParentedMoveThink => CPathNodeParentedMoveThink; - public IDatamapFunctionOperator CPhysicalButtonPhysicsThink { get; } = manager.CPhysicalButtonPhysicsThink.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CPhysicalButtonPhysicsThink => CPhysicalButtonPhysicsThink; - public IDatamapFunctionOperator CPhysicalButtonButtonTouch { get; } = manager.CPhysicalButtonButtonTouch.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CPhysicalButtonButtonTouch => CPhysicalButtonButtonTouch; - public IDatamapFunctionOperator CPhysicalButtonTriggerAndWait { get; } = manager.CPhysicalButtonTriggerAndWait.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CPhysicalButtonTriggerAndWait => CPhysicalButtonTriggerAndWait; - public IDatamapFunctionOperator CPhysicalButtonButtonBackHome { get; } = manager.CPhysicalButtonButtonBackHome.Get(ctx.Name, profiler); IDatamapFunctionOperator IDatamapFunctionService.CPhysicalButtonButtonBackHome => CPhysicalButtonButtonBackHome; - -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCAmbientGenericRampThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCAmbientGenericRampThink.cs index 72e742199..54851889e 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCAmbientGenericRampThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCAmbientGenericRampThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCAmbientGenericRampThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBarnLightThink_ApplyLightStylesToTargets.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBarnLightThink_ApplyLightStylesToTargets.cs index 5b150e25f..6a96ca7a6 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBarnLightThink_ApplyLightStylesToTargets.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBarnLightThink_ApplyLightStylesToTargets.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBarnLightThink_ApplyLightStylesToTargets : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBarnLightThink_LightStyleEvent.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBarnLightThink_LightStyleEvent.cs index 364c9611e..bfa03043c 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBarnLightThink_LightStyleEvent.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBarnLightThink_LightStyleEvent.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBarnLightThink_LightStyleEvent : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBarnLightThink_SetNextQueuedLightStyle.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBarnLightThink_SetNextQueuedLightStyle.cs index 602c7da6d..778f9e2bd 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBarnLightThink_SetNextQueuedLightStyle.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBarnLightThink_SetNextQueuedLightStyle.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBarnLightThink_SetNextQueuedLightStyle : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseAnimGraphChoreoServicesThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseAnimGraphChoreoServicesThink.cs index cc02d814b..7d29ad7f4 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseAnimGraphChoreoServicesThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseAnimGraphChoreoServicesThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseAnimGraphChoreoServicesThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseButtonActivateTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseButtonActivateTouch.cs index f1a1a1806..55816c0f0 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseButtonActivateTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseButtonActivateTouch.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseButtonActivateTouch : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseButtonButtonBackHome.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseButtonButtonBackHome.cs index 9c067c6b1..e77a74abd 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseButtonButtonBackHome.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseButtonButtonBackHome.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseButtonButtonBackHome : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseButtonButtonReturn.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseButtonButtonReturn.cs index 969a4b9fc..7e08859f8 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseButtonButtonReturn.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseButtonButtonReturn.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseButtonButtonReturn : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseButtonButtonSpark.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseButtonButtonSpark.cs index 5a8135e5b..4ecc97602 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseButtonButtonSpark.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseButtonButtonSpark.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseButtonButtonSpark : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseButtonButtonTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseButtonButtonTouch.cs index 77e802414..7772363e8 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseButtonButtonTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseButtonButtonTouch.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseButtonButtonTouch : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseButtonButtonUse.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseButtonButtonUse.cs index 4e0f14a33..2e6ff132e 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseButtonButtonUse.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseButtonButtonUse.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseButtonButtonUse : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseButtonTriggerAndWait.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseButtonTriggerAndWait.cs index 39d3ddc4b..cd8ccfac4 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseButtonTriggerAndWait.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseButtonTriggerAndWait.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseButtonTriggerAndWait : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseCSGrenadeProjectileDangerSoundThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseCSGrenadeProjectileDangerSoundThink.cs index 92a80ef2f..8b730478b 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseCSGrenadeProjectileDangerSoundThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseCSGrenadeProjectileDangerSoundThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseCSGrenadeProjectileDangerSoundThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseDoorCloseAreaPortalsThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseDoorCloseAreaPortalsThink.cs index 24c1b6d68..db1968400 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseDoorCloseAreaPortalsThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseDoorCloseAreaPortalsThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseDoorCloseAreaPortalsThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseDoorDoorGoDown.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseDoorDoorGoDown.cs index d1ef5033b..6876ea8cb 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseDoorDoorGoDown.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseDoorDoorGoDown.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseDoorDoorGoDown : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseDoorDoorGoUp.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseDoorDoorGoUp.cs index dc34ebfba..2ad496432 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseDoorDoorGoUp.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseDoorDoorGoUp.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseDoorDoorGoUp : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseDoorDoorHitBottom.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseDoorDoorHitBottom.cs index 67a1021f4..3806b9d91 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseDoorDoorHitBottom.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseDoorDoorHitBottom.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseDoorDoorHitBottom : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseDoorDoorHitTop.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseDoorDoorHitTop.cs index 97e10a4e5..3b6d8cfb4 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseDoorDoorHitTop.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseDoorDoorHitTop.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseDoorDoorHitTop : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseDoorDoorTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseDoorDoorTouch.cs index 7b477dbe9..f592bb0a8 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseDoorDoorTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseDoorDoorTouch.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseDoorDoorTouch : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseDoorMovingSoundThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseDoorMovingSoundThink.cs index 965a9f098..d7f27d76b 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseDoorMovingSoundThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseDoorMovingSoundThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseDoorMovingSoundThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntityClearNavIgnoreContentsThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntityClearNavIgnoreContentsThink.cs index 95b8262ea..b53ca558b 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntityClearNavIgnoreContentsThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntityClearNavIgnoreContentsThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseEntityClearNavIgnoreContentsThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntityFakeScriptThinkFunc.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntityFakeScriptThinkFunc.cs index 72158efbf..358605de0 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntityFakeScriptThinkFunc.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntityFakeScriptThinkFunc.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseEntityFakeScriptThinkFunc : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntitySUB_CallUseToggle.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntitySUB_CallUseToggle.cs index 908168b85..a33561557 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntitySUB_CallUseToggle.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntitySUB_CallUseToggle.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseEntitySUB_CallUseToggle : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntitySUB_DoNothing.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntitySUB_DoNothing.cs index 1485e11e1..ee96e1c5d 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntitySUB_DoNothing.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntitySUB_DoNothing.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseEntitySUB_DoNothing : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntitySUB_KillSelf.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntitySUB_KillSelf.cs index ac8284bbe..d4a791a89 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntitySUB_KillSelf.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntitySUB_KillSelf.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseEntitySUB_KillSelf : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntitySUB_KillSelfIfUncarried.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntitySUB_KillSelfIfUncarried.cs index 90ce5f991..e4da5ae50 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntitySUB_KillSelfIfUncarried.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntitySUB_KillSelfIfUncarried.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseEntitySUB_KillSelfIfUncarried : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntitySUB_Remove.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntitySUB_Remove.cs index fc302204e..5ccd462b2 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntitySUB_Remove.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntitySUB_Remove.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseEntitySUB_Remove : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntitySUB_RemoveIfUncarried.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntitySUB_RemoveIfUncarried.cs index 5c900496c..39126811d 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntitySUB_RemoveIfUncarried.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntitySUB_RemoveIfUncarried.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseEntitySUB_RemoveIfUncarried : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntitySUB_Vanish.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntitySUB_Vanish.cs index a38308664..5fedb1c25 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntitySUB_Vanish.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseEntitySUB_Vanish.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseEntitySUB_Vanish : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseFlexProcessSceneEventsThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseFlexProcessSceneEventsThink.cs index 1c7a96b76..78224847e 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseFlexProcessSceneEventsThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseFlexProcessSceneEventsThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseFlexProcessSceneEventsThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeBounceTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeBounceTouch.cs index 9343a66ef..19a361d91 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeBounceTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeBounceTouch.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseGrenadeBounceTouch : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeDangerSoundThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeDangerSoundThink.cs index 0015f548f..216a9d946 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeDangerSoundThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeDangerSoundThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseGrenadeDangerSoundThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeDetonate.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeDetonate.cs index 89cc70ce9..04579a106 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeDetonate.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeDetonate.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseGrenadeDetonate : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeDetonateUse.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeDetonateUse.cs index 12bdb6fe7..1292ac2a4 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeDetonateUse.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeDetonateUse.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseGrenadeDetonateUse : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeExplodeTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeExplodeTouch.cs index d9a56f212..aa1e9a3ed 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeExplodeTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeExplodeTouch.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseGrenadeExplodeTouch : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadePreDetonate.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadePreDetonate.cs index 48b758471..f41575417 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadePreDetonate.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadePreDetonate.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseGrenadePreDetonate : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeSlideTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeSlideTouch.cs index 5c5309625..afe0d2560 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeSlideTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeSlideTouch.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseGrenadeSlideTouch : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeSmoke.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeSmoke.cs index 5d9088258..1d6033815 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeSmoke.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeSmoke.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseGrenadeSmoke : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeTumbleThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeTumbleThink.cs index 5427d8e86..e71d0b076 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeTumbleThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseGrenadeTumbleThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseGrenadeTumbleThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_DissolveIfUncarried.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_DissolveIfUncarried.cs index bbb5146b4..4840f48c6 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_DissolveIfUncarried.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_DissolveIfUncarried.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseModelEntitySUB_DissolveIfUncarried : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_FadeOut.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_FadeOut.cs index 6c5f26b47..57b515779 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_FadeOut.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_FadeOut.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseModelEntitySUB_FadeOut : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_PerformShadowFadeIn.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_PerformShadowFadeIn.cs index db9213bae..fa305a02c 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_PerformShadowFadeIn.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_PerformShadowFadeIn.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseModelEntitySUB_PerformShadowFadeIn : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_PerformShadowFadeOut.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_PerformShadowFadeOut.cs index f8dfe2eaa..0cce76a1d 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_PerformShadowFadeOut.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_PerformShadowFadeOut.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseModelEntitySUB_PerformShadowFadeOut : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_StartFadeOut.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_StartFadeOut.cs index c93657851..251bf2383 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_StartFadeOut.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_StartFadeOut.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseModelEntitySUB_StartFadeOut : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_StartFadeOutInstant.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_StartFadeOutInstant.cs index 0b5f5bab5..c7b9e8a1e 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_StartFadeOutInstant.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_StartFadeOutInstant.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseModelEntitySUB_StartFadeOutInstant : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_StartShadowFadeIn.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_StartShadowFadeIn.cs index 69db27d25..587f59e7e 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_StartShadowFadeIn.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_StartShadowFadeIn.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseModelEntitySUB_StartShadowFadeIn : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_StartShadowFadeOut.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_StartShadowFadeOut.cs index 02dc60d53..adb1e8d58 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_StartShadowFadeOut.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_StartShadowFadeOut.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseModelEntitySUB_StartShadowFadeOut : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_StopShadowFade.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_StopShadowFade.cs index ad0bcd4ce..56ceae618 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_StopShadowFade.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBaseModelEntitySUB_StopShadowFade.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBaseModelEntitySUB_StopShadowFade : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBasePropDoorDisableAreaPortalThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBasePropDoorDisableAreaPortalThink.cs index 64d038544..b279c3a29 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBasePropDoorDisableAreaPortalThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBasePropDoorDisableAreaPortalThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBasePropDoorDisableAreaPortalThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBasePropDoorDoorAutoCloseThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBasePropDoorDoorAutoCloseThink.cs index b334bbe8c..b8afead15 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBasePropDoorDoorAutoCloseThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBasePropDoorDoorAutoCloseThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBasePropDoorDoorAutoCloseThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBasePropDoorDoorCloseMoveDone.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBasePropDoorDoorCloseMoveDone.cs index e01402f20..696e9e2cd 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBasePropDoorDoorCloseMoveDone.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBasePropDoorDoorCloseMoveDone.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBasePropDoorDoorCloseMoveDone : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBasePropDoorDoorOpenMoveDone.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBasePropDoorDoorOpenMoveDone.cs index ee686690e..463f3896b 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBasePropDoorDoorOpenMoveDone.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBasePropDoorDoorOpenMoveDone.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBasePropDoorDoorOpenMoveDone : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBombTargetCBombTargetShim_BombTargetUse.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBombTargetCBombTargetShim_BombTargetUse.cs index 001ade768..a2568aab1 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBombTargetCBombTargetShim_BombTargetUse.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBombTargetCBombTargetShim_BombTargetUse.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBombTargetCBombTargetShim_BombTargetUse : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBombTargetCBombTargetShim_Touch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBombTargetCBombTargetShim_Touch.cs index c06677d96..1519fea1d 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBombTargetCBombTargetShim_Touch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBombTargetCBombTargetShim_Touch.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBombTargetCBombTargetShim_Touch : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBreakableDie.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBreakableDie.cs index 5f1116d39..e1f777261 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBreakableDie.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBreakableDie.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBreakableDie : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBreakablePropBreakThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBreakablePropBreakThink.cs index 117a9867d..4aa4ba4f1 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBreakablePropBreakThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBreakablePropBreakThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBreakablePropBreakThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBreakablePropRampToDefaultFadeScale.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBreakablePropRampToDefaultFadeScale.cs index a97eba219..e48fa7cf0 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBreakablePropRampToDefaultFadeScale.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCBreakablePropRampToDefaultFadeScale.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCBreakablePropRampToDefaultFadeScale : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSPlayerControllerInventoryUpdateThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSPlayerControllerInventoryUpdateThink.cs index c1916e312..92460cf87 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSPlayerControllerInventoryUpdateThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSPlayerControllerInventoryUpdateThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCCSPlayerControllerInventoryUpdateThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSPlayerControllerPlayerForceTeamThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSPlayerControllerPlayerForceTeamThink.cs index 5fdffad7c..12aea1023 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSPlayerControllerPlayerForceTeamThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSPlayerControllerPlayerForceTeamThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCCSPlayerControllerPlayerForceTeamThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSPlayerControllerResetForceTeamThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSPlayerControllerResetForceTeamThink.cs index 8dc4a07ba..33c6569dc 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSPlayerControllerResetForceTeamThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSPlayerControllerResetForceTeamThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCCSPlayerControllerResetForceTeamThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSPlayerControllerResourceDataThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSPlayerControllerResourceDataThink.cs index bd5594f47..5bb4006ce 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSPlayerControllerResourceDataThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSPlayerControllerResourceDataThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCCSPlayerControllerResourceDataThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSPlayerPawnCheckStuffThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSPlayerPawnCheckStuffThink.cs index 4e5356412..f2045378c 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSPlayerPawnCheckStuffThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSPlayerPawnCheckStuffThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCCSPlayerPawnCheckStuffThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSPlayerPawnPushawayThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSPlayerPawnPushawayThink.cs index 0411851bc..f6dcc96b2 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSPlayerPawnPushawayThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSPlayerPawnPushawayThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCCSPlayerPawnPushawayThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSPlayerResourceResourceThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSPlayerResourceResourceThink.cs index 28d25e893..ccc79e143 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSPlayerResourceResourceThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSPlayerResourceResourceThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCCSPlayerResourceResourceThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSWeaponBaseDefaultTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSWeaponBaseDefaultTouch.cs index 199ba8ff7..1a76e0938 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSWeaponBaseDefaultTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSWeaponBaseDefaultTouch.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCCSWeaponBaseDefaultTouch : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSWeaponBaseRemoveUnownedWeaponThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSWeaponBaseRemoveUnownedWeaponThink.cs index 741a3c0cc..44fa41276 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSWeaponBaseRemoveUnownedWeaponThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCCSWeaponBaseRemoveUnownedWeaponThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCCSWeaponBaseRemoveUnownedWeaponThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCChickenChickenThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCChickenChickenThink.cs index 855811a7c..03d20e320 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCChickenChickenThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCChickenChickenThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCChickenChickenThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCChickenChickenTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCChickenChickenTouch.cs index 2dd72b770..e445d2459 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCChickenChickenTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCChickenChickenTouch.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCChickenChickenTouch : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCChickenChickenUse.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCChickenChickenUse.cs index 425c5020f..9fe11e0d0 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCChickenChickenUse.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCChickenChickenUse.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCChickenChickenUse : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCColorCorrectionFadeInThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCColorCorrectionFadeInThink.cs index 2d534431b..33b28bd6b 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCColorCorrectionFadeInThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCColorCorrectionFadeInThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCColorCorrectionFadeInThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCColorCorrectionFadeOutThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCColorCorrectionFadeOutThink.cs index b37f81dac..20f764011 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCColorCorrectionFadeOutThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCColorCorrectionFadeOutThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCColorCorrectionFadeOutThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCColorCorrectionVolumeThinkFunc.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCColorCorrectionVolumeThinkFunc.cs index 3c3ab52b0..306f17e52 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCColorCorrectionVolumeThinkFunc.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCColorCorrectionVolumeThinkFunc.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCColorCorrectionVolumeThinkFunc : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCDecoyProjectileGunfireThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCDecoyProjectileGunfireThink.cs index a1998b5b8..57c994651 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCDecoyProjectileGunfireThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCDecoyProjectileGunfireThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCDecoyProjectileGunfireThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCDecoyProjectileThink_Detonate.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCDecoyProjectileThink_Detonate.cs index ea40d4e7b..adb85ebee 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCDecoyProjectileThink_Detonate.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCDecoyProjectileThink_Detonate.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCDecoyProjectileThink_Detonate : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCDynamicLightDynamicLightThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCDynamicLightDynamicLightThink.cs index 66d3af4ee..c71f97216 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCDynamicLightDynamicLightThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCDynamicLightDynamicLightThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCDynamicLightDynamicLightThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCDynamicPropAnimThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCDynamicPropAnimThink.cs index af521aabc..94b95406a 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCDynamicPropAnimThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCDynamicPropAnimThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCDynamicPropAnimThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEntityDissolveDissolveThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEntityDissolveDissolveThink.cs index cd3f42a39..ac4405e21 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEntityDissolveDissolveThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEntityDissolveDissolveThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCEntityDissolveDissolveThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEntityDissolveElectrocuteThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEntityDissolveElectrocuteThink.cs index 3cc081f2c..06fbb18a6 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEntityDissolveElectrocuteThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEntityDissolveElectrocuteThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCEntityDissolveElectrocuteThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEntityFlameFlameThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEntityFlameFlameThink.cs index c6173c3fd..70ea2986d 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEntityFlameFlameThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEntityFlameFlameThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCEntityFlameFlameThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEnvBeamStrikeThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEnvBeamStrikeThink.cs index f16432173..39ba77826 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEnvBeamStrikeThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEnvBeamStrikeThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCEnvBeamStrikeThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEnvBeamUpdateThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEnvBeamUpdateThink.cs index 466cf779a..e7e85cbaf 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEnvBeamUpdateThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEnvBeamUpdateThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCEnvBeamUpdateThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEnvEntityMakerCheckSpawnThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEnvEntityMakerCheckSpawnThink.cs index 89179d7ff..caa68a8b3 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEnvEntityMakerCheckSpawnThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEnvEntityMakerCheckSpawnThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCEnvEntityMakerCheckSpawnThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEnvLaserStrikeThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEnvLaserStrikeThink.cs index ae60ff320..f2af6c4f4 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEnvLaserStrikeThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEnvLaserStrikeThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCEnvLaserStrikeThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEnvSparkSparkThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEnvSparkSparkThink.cs index d088544f2..4e0bd247a 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEnvSparkSparkThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEnvSparkSparkThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCEnvSparkSparkThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEnvWindControllerWindThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEnvWindControllerWindThink.cs index b1617640a..eb9b55469 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEnvWindControllerWindThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEnvWindControllerWindThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCEnvWindControllerWindThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEnvWindWindThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEnvWindWindThink.cs index 02dcff0dd..c705bd849 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEnvWindWindThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCEnvWindWindThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCEnvWindWindThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFishPoolUpdate.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFishPoolUpdate.cs index 1d8e0f1b1..e15204c4d 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFishPoolUpdate.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFishPoolUpdate.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCFishPoolUpdate : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFogControllerSetLerpValues.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFogControllerSetLerpValues.cs index ca8019399..2a90119cc 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFogControllerSetLerpValues.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFogControllerSetLerpValues.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCFogControllerSetLerpValues : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncMoveLinearNavMovableThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncMoveLinearNavMovableThink.cs index 6193d6329..4986e99b5 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncMoveLinearNavMovableThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncMoveLinearNavMovableThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCFuncMoveLinearNavMovableThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncMoveLinearNavObstacleThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncMoveLinearNavObstacleThink.cs index f950cabce..23fc73e55 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncMoveLinearNavObstacleThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncMoveLinearNavObstacleThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCFuncMoveLinearNavObstacleThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncMoveLinearStopMoveSound.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncMoveLinearStopMoveSound.cs index ad38f75e2..0013f09e8 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncMoveLinearStopMoveSound.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncMoveLinearStopMoveSound.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCFuncMoveLinearStopMoveSound : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncMoverLerpToNewPosition.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncMoverLerpToNewPosition.cs index c4ce51386..869782d51 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncMoverLerpToNewPosition.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncMoverLerpToNewPosition.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCFuncMoverLerpToNewPosition : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncPlatCallGoDown.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncPlatCallGoDown.cs index 9c4e3645c..a79320273 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncPlatCallGoDown.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncPlatCallGoDown.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCFuncPlatCallGoDown : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncPlatCallHitBottom.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncPlatCallHitBottom.cs index 83fdcb293..3e1812cf7 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncPlatCallHitBottom.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncPlatCallHitBottom.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCFuncPlatCallHitBottom : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncPlatCallHitTop.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncPlatCallHitTop.cs index 0d0534c02..b1515b578 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncPlatCallHitTop.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncPlatCallHitTop.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCFuncPlatCallHitTop : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncPlatPlatUse.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncPlatPlatUse.cs index 596eae26b..8f69a96ff 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncPlatPlatUse.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncPlatPlatUse.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCFuncPlatPlatUse : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncRotatingHurtTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncRotatingHurtTouch.cs index 17abf4b62..9236db288 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncRotatingHurtTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncRotatingHurtTouch.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCFuncRotatingHurtTouch : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncRotatingReverseMove.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncRotatingReverseMove.cs index f8f31389a..95616637d 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncRotatingReverseMove.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncRotatingReverseMove.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCFuncRotatingReverseMove : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncRotatingRotateMove.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncRotatingRotateMove.cs index a53661bf0..874aec3f0 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncRotatingRotateMove.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncRotatingRotateMove.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCFuncRotatingRotateMove : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncRotatingRotatingUse.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncRotatingRotatingUse.cs index 2a8b58b2e..1a7564684 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncRotatingRotatingUse.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncRotatingRotatingUse.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCFuncRotatingRotatingUse : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncRotatingSpinDownMove.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncRotatingSpinDownMove.cs index f3ae6a8c9..ce1d3620d 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncRotatingSpinDownMove.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncRotatingSpinDownMove.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCFuncRotatingSpinDownMove : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncRotatingSpinUpMove.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncRotatingSpinUpMove.cs index 82892d2a4..638c9a211 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncRotatingSpinUpMove.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncRotatingSpinUpMove.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCFuncRotatingSpinUpMove : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncRotatorRotateThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncRotatorRotateThink.cs index e049876dd..14d69955f 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncRotatorRotateThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncRotatorRotateThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCFuncRotatorRotateThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncShatterglassGlassThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncShatterglassGlassThink.cs index 0d2602299..d808518f3 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncShatterglassGlassThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncShatterglassGlassThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCFuncShatterglassGlassThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrackChangeFind.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrackChangeFind.cs index 2f2964403..9bc84f95e 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrackChangeFind.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrackChangeFind.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCFuncTrackChangeFind : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrackTrainDeadEnd.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrackTrainDeadEnd.cs index 8aa1094ad..92799e329 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrackTrainDeadEnd.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrackTrainDeadEnd.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCFuncTrackTrainDeadEnd : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrackTrainFind.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrackTrainFind.cs index f43d80686..0dd9675eb 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrackTrainFind.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrackTrainFind.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCFuncTrackTrainFind : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrackTrainNearestPath.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrackTrainNearestPath.cs index b7054fa81..19610df40 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrackTrainNearestPath.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrackTrainNearestPath.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCFuncTrackTrainNearestPath : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrackTrainNext.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrackTrainNext.cs index 215804f09..eddaf5d09 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrackTrainNext.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrackTrainNext.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCFuncTrackTrainNext : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrainControlsFind.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrainControlsFind.cs index b44d37033..cbe053151 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrainControlsFind.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrainControlsFind.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCFuncTrainControlsFind : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrainNext.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrainNext.cs index a1a94b6cd..4e56a7f49 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrainNext.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrainNext.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCFuncTrainNext : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrainWait.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrainWait.cs index 1872fc5c3..44726801c 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrainWait.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCFuncTrainWait.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCFuncTrainWait : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCGenericConstraintUpdateThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCGenericConstraintUpdateThink.cs index a774a40c5..030d3d7e1 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCGenericConstraintUpdateThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCGenericConstraintUpdateThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCGenericConstraintUpdateThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCGunTargetNext.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCGunTargetNext.cs index 0fb401890..032c7046a 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCGunTargetNext.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCGunTargetNext.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCGunTargetNext : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCGunTargetStart.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCGunTargetStart.cs index 503a187da..eb78bc70a 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCGunTargetStart.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCGunTargetStart.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCGunTargetStart : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCGunTargetWait.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCGunTargetWait.cs index 3995ba523..b7ad85d66 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCGunTargetWait.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCGunTargetWait.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCGunTargetWait : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCHostageHostageThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCHostageHostageThink.cs index 666ee6f92..a9f579acb 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCHostageHostageThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCHostageHostageThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCHostageHostageThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCHostageHostageUse.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCHostageHostageUse.cs index 394c1710d..fa207c960 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCHostageHostageUse.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCHostageHostageUse.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCHostageHostageUse : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCHostageRescueZoneCHostageRescueZoneShim_Touch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCHostageRescueZoneCHostageRescueZoneShim_Touch.cs index f101eaf24..e40d987f8 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCHostageRescueZoneCHostageRescueZoneShim_Touch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCHostageRescueZoneCHostageRescueZoneShim_Touch.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCHostageRescueZoneCHostageRescueZoneShim_Touch : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCInfernoInfernoThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCInfernoInfernoThink.cs index e6f6c2311..8a8392537 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCInfernoInfernoThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCInfernoInfernoThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCInfernoInfernoThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCInfoSpawnGroupLoadUnloadSpawnGroupLoadingThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCInfoSpawnGroupLoadUnloadSpawnGroupLoadingThink.cs index 3d5bd4b4c..038fbba22 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCInfoSpawnGroupLoadUnloadSpawnGroupLoadingThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCInfoSpawnGroupLoadUnloadSpawnGroupLoadingThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCInfoSpawnGroupLoadUnloadSpawnGroupLoadingThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCInfoSpawnGroupLoadUnloadSpawnGroupUnloadingThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCInfoSpawnGroupLoadUnloadSpawnGroupUnloadingThink.cs index 557754361..09ab08a4d 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCInfoSpawnGroupLoadUnloadSpawnGroupUnloadingThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCInfoSpawnGroupLoadUnloadSpawnGroupUnloadingThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCInfoSpawnGroupLoadUnloadSpawnGroupUnloadingThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemComeToRest.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemComeToRest.cs index 929dd3a93..691c78247 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemComeToRest.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemComeToRest.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCItemComeToRest : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemDefuserActivateThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemDefuserActivateThink.cs index 4289b6594..0094aaebc 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemDefuserActivateThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemDefuserActivateThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCItemDefuserActivateThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemDefuserDefuserTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemDefuserDefuserTouch.cs index b37ab0602..de9b2ba7c 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemDefuserDefuserTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemDefuserDefuserTouch.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCItemDefuserDefuserTouch : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemGenericItemGenericTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemGenericItemGenericTouch.cs index d16ded2e6..6c3809420 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemGenericItemGenericTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemGenericItemGenericTouch.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCItemGenericItemGenericTouch : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemGenericTriggerHelperItemGenericTriggerHelperTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemGenericTriggerHelperItemGenericTriggerHelperTouch.cs index 522f40406..4e5342803 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemGenericTriggerHelperItemGenericTriggerHelperTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemGenericTriggerHelperItemGenericTriggerHelperTouch.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCItemGenericTriggerHelperItemGenericTriggerHelperTouch : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemItemTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemItemTouch.cs index 6b6285ea2..addac2a16 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemItemTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemItemTouch.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCItemItemTouch : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemMaterialize.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemMaterialize.cs index e05216236..36bce8633 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemMaterialize.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemMaterialize.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCItemMaterialize : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemSodaCanThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemSodaCanThink.cs index 8263068fe..2f514b06b 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemSodaCanThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCItemSodaCanThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCItemSodaCanThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCLogicActiveAutosaveSaveThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCLogicActiveAutosaveSaveThink.cs index e24151a6d..6309535d4 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCLogicActiveAutosaveSaveThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCLogicActiveAutosaveSaveThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCLogicActiveAutosaveSaveThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCLogicDistanceAutosaveSaveThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCLogicDistanceAutosaveSaveThink.cs index 33271a789..f0aed70f5 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCLogicDistanceAutosaveSaveThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCLogicDistanceAutosaveSaveThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCLogicDistanceAutosaveSaveThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCLogicMeasureMovementMeasureThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCLogicMeasureMovementMeasureThink.cs index 83c5d3a1f..9b1180e02 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCLogicMeasureMovementMeasureThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCLogicMeasureMovementMeasureThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCLogicMeasureMovementMeasureThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCLogicNPCCounterSetNPCCounterThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCLogicNPCCounterSetNPCCounterThink.cs index 19da7d940..6eb9cba6d 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCLogicNPCCounterSetNPCCounterThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCLogicNPCCounterSetNPCCounterThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCLogicNPCCounterSetNPCCounterThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMapVetoPickControllerVoteControllerThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMapVetoPickControllerVoteControllerThink.cs index 4cdde262a..4600553c4 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMapVetoPickControllerVoteControllerThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMapVetoPickControllerVoteControllerThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCMapVetoPickControllerVoteControllerThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMomentaryRotButtonReturnMoveDone.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMomentaryRotButtonReturnMoveDone.cs index 4d5dc01a5..d994ddd73 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMomentaryRotButtonReturnMoveDone.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMomentaryRotButtonReturnMoveDone.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCMomentaryRotButtonReturnMoveDone : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMomentaryRotButtonSetPositionMoveDone.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMomentaryRotButtonSetPositionMoveDone.cs index 9dd260716..de8da377c 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMomentaryRotButtonSetPositionMoveDone.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMomentaryRotButtonSetPositionMoveDone.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCMomentaryRotButtonSetPositionMoveDone : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMomentaryRotButtonUpdateThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMomentaryRotButtonUpdateThink.cs index 7866cbf26..80c8fa934 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMomentaryRotButtonUpdateThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMomentaryRotButtonUpdateThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCMomentaryRotButtonUpdateThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMomentaryRotButtonUseMoveDone.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMomentaryRotButtonUseMoveDone.cs index e5d73fed4..0609d74d5 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMomentaryRotButtonUseMoveDone.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMomentaryRotButtonUseMoveDone.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCMomentaryRotButtonUseMoveDone : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMultiLightProxyApproachBrightnessThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMultiLightProxyApproachBrightnessThink.cs index ebee4a591..2fe78bb11 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMultiLightProxyApproachBrightnessThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMultiLightProxyApproachBrightnessThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCMultiLightProxyApproachBrightnessThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMultiLightProxyRestoreFlashlightThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMultiLightProxyRestoreFlashlightThink.cs index 3d274ee35..e72ad9ff0 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMultiLightProxyRestoreFlashlightThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMultiLightProxyRestoreFlashlightThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCMultiLightProxyRestoreFlashlightThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMultiSourceRegister.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMultiSourceRegister.cs index d2ac10f19..1dd30c125 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMultiSourceRegister.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCMultiSourceRegister.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCMultiSourceRegister : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCParticleSystemStartParticleSystemThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCParticleSystemStartParticleSystemThink.cs index e8a6040cb..9691e4d5c 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCParticleSystemStartParticleSystemThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCParticleSystemStartParticleSystemThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCParticleSystemStartParticleSystemThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPathMoverEntitySpawnerSpawnThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPathMoverEntitySpawnerSpawnThink.cs index 9c3b6c76c..e48a7660b 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPathMoverEntitySpawnerSpawnThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPathMoverEntitySpawnerSpawnThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCPathMoverEntitySpawnerSpawnThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPathNodeParentedMoveThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPathNodeParentedMoveThink.cs index 9f622b279..14d8a44a4 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPathNodeParentedMoveThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPathNodeParentedMoveThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCPathNodeParentedMoveThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysForceForceOff.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysForceForceOff.cs index 229c95944..20e9c45c3 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysForceForceOff.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysForceForceOff.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCPhysForceForceOff : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysForceInitialThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysForceInitialThink.cs index 36a203fee..ea4ce900c 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysForceInitialThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysForceInitialThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCPhysForceInitialThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysHingeLimitThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysHingeLimitThink.cs index 6dcc17b72..82114573f 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysHingeLimitThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysHingeLimitThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCPhysHingeLimitThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysHingeMoveThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysHingeMoveThink.cs index 6aea8af58..b82d8bb6d 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysHingeMoveThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysHingeMoveThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCPhysHingeMoveThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysHingeSoundThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysHingeSoundThink.cs index 5cab5637f..aa3d409f7 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysHingeSoundThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysHingeSoundThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCPhysHingeSoundThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysImpactPointAtEntity.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysImpactPointAtEntity.cs index f8b33fdea..ca85224e8 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysImpactPointAtEntity.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysImpactPointAtEntity.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCPhysImpactPointAtEntity : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysSlideConstraintSoundThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysSlideConstraintSoundThink.cs index 376b1e986..d0097e2dc 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysSlideConstraintSoundThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysSlideConstraintSoundThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCPhysSlideConstraintSoundThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysicalButtonButtonBackHome.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysicalButtonButtonBackHome.cs index 6fbc4954f..6b70f8849 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysicalButtonButtonBackHome.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysicalButtonButtonBackHome.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCPhysicalButtonButtonBackHome : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysicalButtonButtonTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysicalButtonButtonTouch.cs index 0040459c4..d4ad7dbfc 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysicalButtonButtonTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysicalButtonButtonTouch.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCPhysicalButtonButtonTouch : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysicalButtonPhysicsThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysicalButtonPhysicsThink.cs index 0e8d5edc3..d89329d44 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysicalButtonPhysicsThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysicalButtonPhysicsThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCPhysicalButtonPhysicsThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysicalButtonTriggerAndWait.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysicalButtonTriggerAndWait.cs index 114f61e8e..8b9e60fcb 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysicalButtonTriggerAndWait.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysicalButtonTriggerAndWait.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCPhysicalButtonTriggerAndWait : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysicsPropClearFlagsThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysicsPropClearFlagsThink.cs index f5d533b54..00b69449d 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysicsPropClearFlagsThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysicsPropClearFlagsThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCPhysicsPropClearFlagsThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysicsPropRespawnableMaterialize.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysicsPropRespawnableMaterialize.cs index 2c7bdb6bf..00cc2c470 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysicsPropRespawnableMaterialize.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPhysicsPropRespawnableMaterialize.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCPhysicsPropRespawnableMaterialize : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPlantedC4C4Think.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPlantedC4C4Think.cs index a1475a2a4..fca52a193 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPlantedC4C4Think.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPlantedC4C4Think.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCPlantedC4C4Think : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointCommentaryNodeAcculumatePlayTimeThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointCommentaryNodeAcculumatePlayTimeThink.cs index 642d71dff..04ebc979c 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointCommentaryNodeAcculumatePlayTimeThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointCommentaryNodeAcculumatePlayTimeThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCPointCommentaryNodeAcculumatePlayTimeThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointCommentaryNodeSpinThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointCommentaryNodeSpinThink.cs index ab71849d0..b90fc7865 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointCommentaryNodeSpinThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointCommentaryNodeSpinThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCPointCommentaryNodeSpinThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointCommentaryNodeUpdateViewPostThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointCommentaryNodeUpdateViewPostThink.cs index 90d9231b1..878ba8a33 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointCommentaryNodeUpdateViewPostThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointCommentaryNodeUpdateViewPostThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCPointCommentaryNodeUpdateViewPostThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointCommentaryNodeUpdateViewThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointCommentaryNodeUpdateViewThink.cs index fef06c006..9861fd5ac 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointCommentaryNodeUpdateViewThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointCommentaryNodeUpdateViewThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCPointCommentaryNodeUpdateViewThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointHurtHurtThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointHurtHurtThink.cs index 1ce9f0f47..8e43a106c 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointHurtHurtThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointHurtHurtThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCPointHurtHurtThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointOrientReorientThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointOrientReorientThink.cs index 1cdfad8a5..70d2d7c3a 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointOrientReorientThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointOrientReorientThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCPointOrientReorientThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointPushPushThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointPushPushThink.cs index b7cc6ec4b..95b0f5d2a 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointPushPushThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointPushPushThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCPointPushPushThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointValueRemapperUpdateThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointValueRemapperUpdateThink.cs index 1d8d724fe..823db7bff 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointValueRemapperUpdateThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCPointValueRemapperUpdateThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCPointValueRemapperUpdateThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCRagdollPropAttachedItemsThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCRagdollPropAttachedItemsThink.cs index 60373de91..106189d45 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCRagdollPropAttachedItemsThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCRagdollPropAttachedItemsThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCRagdollPropAttachedItemsThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCRagdollPropClearFlagsThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCRagdollPropClearFlagsThink.cs index 06d84338a..adb24f952 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCRagdollPropClearFlagsThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCRagdollPropClearFlagsThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCRagdollPropClearFlagsThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCRagdollPropFadeOutThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCRagdollPropFadeOutThink.cs index 180fa3ce9..35a52df5d 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCRagdollPropFadeOutThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCRagdollPropFadeOutThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCRagdollPropFadeOutThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCRagdollPropSetDebrisThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCRagdollPropSetDebrisThink.cs index 9a4ae6ee6..6726e3bdf 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCRagdollPropSetDebrisThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCRagdollPropSetDebrisThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCRagdollPropSetDebrisThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCRagdollPropSettleThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCRagdollPropSettleThink.cs index 051b9bfc4..8232c938f 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCRagdollPropSettleThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCRagdollPropSettleThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCRagdollPropSettleThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCRevertSavedLoadThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCRevertSavedLoadThink.cs index 599f5c78e..56a0db552 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCRevertSavedLoadThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCRevertSavedLoadThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCRevertSavedLoadThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCScriptedSequenceScriptThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCScriptedSequenceScriptThink.cs index 1ec16e0aa..0275b2c91 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCScriptedSequenceScriptThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCScriptedSequenceScriptThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCScriptedSequenceScriptThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSmokeGrenadeProjectileThink_BuildingSmokeVolume.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSmokeGrenadeProjectileThink_BuildingSmokeVolume.cs index 01fe68c70..366a3572c 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSmokeGrenadeProjectileThink_BuildingSmokeVolume.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSmokeGrenadeProjectileThink_BuildingSmokeVolume.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCSmokeGrenadeProjectileThink_BuildingSmokeVolume : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSmokeGrenadeProjectileThink_Detonate.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSmokeGrenadeProjectileThink_Detonate.cs index 7c43c61d3..6b228e885 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSmokeGrenadeProjectileThink_Detonate.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSmokeGrenadeProjectileThink_Detonate.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCSmokeGrenadeProjectileThink_Detonate : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSmokeGrenadeProjectileThink_Remove.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSmokeGrenadeProjectileThink_Remove.cs index 2d86a2837..ce9f0db85 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSmokeGrenadeProjectileThink_Remove.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSmokeGrenadeProjectileThink_Remove.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCSmokeGrenadeProjectileThink_Remove : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSmokeGrenadeProjectileThink_Update.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSmokeGrenadeProjectileThink_Update.cs index ec59e9063..6691e8cda 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSmokeGrenadeProjectileThink_Update.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSmokeGrenadeProjectileThink_Update.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCSmokeGrenadeProjectileThink_Update : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundEventConeEntitySoundEventConeThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundEventConeEntitySoundEventConeThink.cs index 796995e92..16ad6504f 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundEventConeEntitySoundEventConeThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundEventConeEntitySoundEventConeThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCSoundEventConeEntitySoundEventConeThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundEventEntitySoundFinishedThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundEventEntitySoundFinishedThink.cs index 92ad1e2ab..a651fd5be 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundEventEntitySoundFinishedThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundEventEntitySoundFinishedThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCSoundEventEntitySoundFinishedThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundEventOBBEntitySoundEventOBBThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundEventOBBEntitySoundEventOBBThink.cs index 24a013445..8c84c5dfa 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundEventOBBEntitySoundEventOBBThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundEventOBBEntitySoundEventOBBThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCSoundEventOBBEntitySoundEventOBBThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundEventPathCornerEntitySoundEventPathCornerThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundEventPathCornerEntitySoundEventPathCornerThink.cs index fe72ae6f5..589395c3d 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundEventPathCornerEntitySoundEventPathCornerThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundEventPathCornerEntitySoundEventPathCornerThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCSoundEventPathCornerEntitySoundEventPathCornerThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundEventSphereEntitySoundEventSphereThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundEventSphereEntitySoundEventSphereThink.cs index 3ca8dd2c4..baa658413 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundEventSphereEntitySoundEventSphereThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundEventSphereEntitySoundEventSphereThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCSoundEventSphereEntitySoundEventSphereThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundOpvarSetAABBEntitySetOpvarThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundOpvarSetAABBEntitySetOpvarThink.cs index e6424fcb9..525184be7 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundOpvarSetAABBEntitySetOpvarThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundOpvarSetAABBEntitySetOpvarThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCSoundOpvarSetAABBEntitySetOpvarThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundOpvarSetAutoRoomEntitySetOpvarThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundOpvarSetAutoRoomEntitySetOpvarThink.cs index c0daef0c6..1e56857bb 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundOpvarSetAutoRoomEntitySetOpvarThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundOpvarSetAutoRoomEntitySetOpvarThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCSoundOpvarSetAutoRoomEntitySetOpvarThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundOpvarSetOBBEntitySetOpvarThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundOpvarSetOBBEntitySetOpvarThink.cs index 8d3b72e1a..71bf2fcd8 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundOpvarSetOBBEntitySetOpvarThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundOpvarSetOBBEntitySetOpvarThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCSoundOpvarSetOBBEntitySetOpvarThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundOpvarSetOBBWindEntitySetOpvarThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundOpvarSetOBBWindEntitySetOpvarThink.cs index e44fdf562..1cad3c2ad 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundOpvarSetOBBWindEntitySetOpvarThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundOpvarSetOBBWindEntitySetOpvarThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCSoundOpvarSetOBBWindEntitySetOpvarThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundOpvarSetPathCornerEntitySetOpvarThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundOpvarSetPathCornerEntitySetOpvarThink.cs index e7e8cc865..809fed5ea 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundOpvarSetPathCornerEntitySetOpvarThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundOpvarSetPathCornerEntitySetOpvarThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCSoundOpvarSetPathCornerEntitySetOpvarThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundOpvarSetPointBaseSetOpvarThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundOpvarSetPointBaseSetOpvarThink.cs index e3bfc358d..597487a66 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundOpvarSetPointBaseSetOpvarThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundOpvarSetPointBaseSetOpvarThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCSoundOpvarSetPointBaseSetOpvarThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundOpvarSetPointEntitySetOpvarThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundOpvarSetPointEntitySetOpvarThink.cs index e966aaa43..0d7b110d3 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundOpvarSetPointEntitySetOpvarThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSoundOpvarSetPointEntitySetOpvarThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCSoundOpvarSetPointEntitySetOpvarThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSplineConstraintTransitionThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSplineConstraintTransitionThink.cs index 23db04a5a..a6978f478 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSplineConstraintTransitionThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSplineConstraintTransitionThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCSplineConstraintTransitionThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSpriteAnimateThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSpriteAnimateThink.cs index fc35093fc..c61160515 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSpriteAnimateThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSpriteAnimateThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCSpriteAnimateThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSpriteAnimateUntilDead.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSpriteAnimateUntilDead.cs index 2c70f39a3..a5815f6db 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSpriteAnimateUntilDead.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSpriteAnimateUntilDead.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCSpriteAnimateUntilDead : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSpriteBeginFadeOutThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSpriteBeginFadeOutThink.cs index 65db47789..a790b0f4e 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSpriteBeginFadeOutThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSpriteBeginFadeOutThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCSpriteBeginFadeOutThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSpriteExpandThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSpriteExpandThink.cs index 923c3fd60..9b4821f25 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSpriteExpandThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCSpriteExpandThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCSpriteExpandThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerActiveWeaponDetectActiveWeaponThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerActiveWeaponDetectActiveWeaponThink.cs index 9df2cc122..910e56ef7 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerActiveWeaponDetectActiveWeaponThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerActiveWeaponDetectActiveWeaponThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCTriggerActiveWeaponDetectActiveWeaponThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerFanPushThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerFanPushThink.cs index cceab28bc..2b39be94a 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerFanPushThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerFanPushThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCTriggerFanPushThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerGravityGravityTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerGravityGravityTouch.cs index 60a55488b..035fdee6d 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerGravityGravityTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerGravityGravityTouch.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCTriggerGravityGravityTouch : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerHurtHurtThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerHurtHurtThink.cs index b037b1ed3..5c728c2af 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerHurtHurtThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerHurtHurtThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCTriggerHurtHurtThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerHurtNavThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerHurtNavThink.cs index 5e41e0761..09052263e 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerHurtNavThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerHurtNavThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCTriggerHurtNavThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerHurtRadiationThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerHurtRadiationThink.cs index 9708ca428..12f91bd36 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerHurtRadiationThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerHurtRadiationThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCTriggerHurtRadiationThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerImpactDisable.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerImpactDisable.cs index 8a2dbe578..4be4502b0 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerImpactDisable.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerImpactDisable.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCTriggerImpactDisable : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerLerpObjectAttachedEntityThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerLerpObjectAttachedEntityThink.cs index 1b18b2003..5828bfc07 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerLerpObjectAttachedEntityThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerLerpObjectAttachedEntityThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCTriggerLerpObjectAttachedEntityThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerLerpObjectLerpThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerLerpObjectLerpThink.cs index 9a7ecf389..7f68d06d9 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerLerpObjectLerpThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerLerpObjectLerpThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCTriggerLerpObjectLerpThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerLerpObjectUnsetWaitForEntity.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerLerpObjectUnsetWaitForEntity.cs index 040f0e1c0..d7856c592 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerLerpObjectUnsetWaitForEntity.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerLerpObjectUnsetWaitForEntity.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCTriggerLerpObjectUnsetWaitForEntity : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerLookTimeoutThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerLookTimeoutThink.cs index ce23e860b..a292febe7 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerLookTimeoutThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerLookTimeoutThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCTriggerLookTimeoutThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerMultipleMultiTouch.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerMultipleMultiTouch.cs index 56cc29e87..2fec605ef 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerMultipleMultiTouch.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerMultipleMultiTouch.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCTriggerMultipleMultiTouch : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerMultipleMultiWaitOver.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerMultipleMultiWaitOver.cs index 3553a9fe2..59ae90750 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerMultipleMultiWaitOver.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerMultipleMultiWaitOver.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCTriggerMultipleMultiWaitOver : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerProximityMeasureThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerProximityMeasureThink.cs index 2af87a086..065fdbdee 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerProximityMeasureThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerProximityMeasureThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCTriggerProximityMeasureThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerSndSosOpvarSndSosTriggerOpvarWaitOver.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerSndSosOpvarSndSosTriggerOpvarWaitOver.cs index dd9c3239f..579d37dff 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerSndSosOpvarSndSosTriggerOpvarWaitOver.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerSndSosOpvarSndSosTriggerOpvarWaitOver.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCTriggerSndSosOpvarSndSosTriggerOpvarWaitOver : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerSoundscapePlayerUpdateThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerSoundscapePlayerUpdateThink.cs index a4bc45765..bb6df6c4d 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerSoundscapePlayerUpdateThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCTriggerSoundscapePlayerUpdateThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCTriggerSoundscapePlayerUpdateThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCVoteControllerVoteControllerThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCVoteControllerVoteControllerThink.cs index 2366e4e10..9e2a168d5 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCVoteControllerVoteControllerThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCVoteControllerVoteControllerThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCVoteControllerVoteControllerThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCWaterBulletBulletThink.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCWaterBulletBulletThink.cs index 6411bbe28..ed4b348ef 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCWaterBulletBulletThink.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDHookCWaterBulletBulletThink.cs @@ -4,4 +4,4 @@ namespace SwiftlyS2.Shared.Datamaps; public interface IDHookCWaterBulletBulletThink : IDatamapFunctionHookContext { -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDatamapFunctionService.cs b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDatamapFunctionService.cs index cc8cea3a7..2a0e312f9 100644 --- a/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDatamapFunctionService.cs +++ b/managed/src/SwiftlyS2.Generated/Datamaps/Interfaces/IDatamapFunctionService.cs @@ -8,640 +8,427 @@ public partial interface IDatamapFunctionService public IDatamapFunctionOperator CBaseDoorDoorTouch { get; } - public IDatamapFunctionOperator CBaseDoorDoorGoUp { get; } - public IDatamapFunctionOperator CBaseDoorDoorGoDown { get; } - public IDatamapFunctionOperator CBaseDoorDoorHitTop { get; } - public IDatamapFunctionOperator CBaseDoorDoorHitBottom { get; } - public IDatamapFunctionOperator CBaseDoorMovingSoundThink { get; } - public IDatamapFunctionOperator CBaseDoorCloseAreaPortalsThink { get; } - public IDatamapFunctionOperator CGunTargetNext { get; } - public IDatamapFunctionOperator CGunTargetStart { get; } - public IDatamapFunctionOperator CGunTargetWait { get; } - public IDatamapFunctionOperator CDynamicLightDynamicLightThink { get; } - public IDatamapFunctionOperator CBarnLightThink_SetNextQueuedLightStyle { get; } - public IDatamapFunctionOperator CBarnLightThink_ApplyLightStylesToTargets { get; } - public IDatamapFunctionOperator CBarnLightThink_LightStyleEvent { get; } - public IDatamapFunctionOperator CEnvLaserStrikeThink { get; } - public IDatamapFunctionOperator CMultiSourceRegister { get; } - public IDatamapFunctionOperator CPhysHingeSoundThink { get; } - public IDatamapFunctionOperator CPhysHingeLimitThink { get; } - public IDatamapFunctionOperator CPhysHingeMoveThink { get; } - public IDatamapFunctionOperator CSoundOpvarSetPointBaseSetOpvarThink { get; } - public IDatamapFunctionOperator CEnvEntityMakerCheckSpawnThink { get; } - public IDatamapFunctionOperator CPointHurtHurtThink { get; } - public IDatamapFunctionOperator CColorCorrectionFadeInThink { get; } - public IDatamapFunctionOperator CColorCorrectionFadeOutThink { get; } - public IDatamapFunctionOperator CPhysicsPropClearFlagsThink { get; } - public IDatamapFunctionOperator CInfernoInfernoThink { get; } - public IDatamapFunctionOperator CFuncTrainWait { get; } - public IDatamapFunctionOperator CFuncTrainNext { get; } - public IDatamapFunctionOperator CBasePropDoorDoorOpenMoveDone { get; } - public IDatamapFunctionOperator CBasePropDoorDoorCloseMoveDone { get; } - public IDatamapFunctionOperator CBasePropDoorDoorAutoCloseThink { get; } - public IDatamapFunctionOperator CBasePropDoorDisableAreaPortalThink { get; } - public IDatamapFunctionOperator CInfoSpawnGroupLoadUnloadSpawnGroupLoadingThink { get; } - public IDatamapFunctionOperator CInfoSpawnGroupLoadUnloadSpawnGroupUnloadingThink { get; } - public IDatamapFunctionOperator CItemDefuserActivateThink { get; } - public IDatamapFunctionOperator CItemDefuserDefuserTouch { get; } - public IDatamapFunctionOperator CEnvSparkSparkThink { get; } - public IDatamapFunctionOperator CBaseGrenadeSmoke { get; } - public IDatamapFunctionOperator CBaseGrenadeBounceTouch { get; } - public IDatamapFunctionOperator CBaseGrenadeSlideTouch { get; } - public IDatamapFunctionOperator CBaseGrenadeExplodeTouch { get; } - public IDatamapFunctionOperator CBaseGrenadeDetonateUse { get; } - public IDatamapFunctionOperator CBaseGrenadeDangerSoundThink { get; } - public IDatamapFunctionOperator CBaseGrenadePreDetonate { get; } - public IDatamapFunctionOperator CBaseGrenadeDetonate { get; } - public IDatamapFunctionOperator CBaseGrenadeTumbleThink { get; } - public IDatamapFunctionOperator CSpriteAnimateThink { get; } - public IDatamapFunctionOperator CSpriteExpandThink { get; } - public IDatamapFunctionOperator CSpriteAnimateUntilDead { get; } - public IDatamapFunctionOperator CSpriteBeginFadeOutThink { get; } - public IDatamapFunctionOperator CPhysSlideConstraintSoundThink { get; } - public IDatamapFunctionOperator CEntityFlameFlameThink { get; } - public IDatamapFunctionOperator CSoundEventConeEntitySoundEventConeThink { get; } - public IDatamapFunctionOperator CFuncMoveLinearNavObstacleThink { get; } - public IDatamapFunctionOperator CFuncMoveLinearNavMovableThink { get; } - public IDatamapFunctionOperator CFuncMoveLinearStopMoveSound { get; } - public IDatamapFunctionOperator CHostageHostageUse { get; } - public IDatamapFunctionOperator CHostageHostageThink { get; } - public IDatamapFunctionOperator CLogicDistanceAutosaveSaveThink { get; } - public IDatamapFunctionOperator CSoundOpvarSetOBBWindEntitySetOpvarThink { get; } - public IDatamapFunctionOperator CSmokeGrenadeProjectileThink_Detonate { get; } - public IDatamapFunctionOperator CSmokeGrenadeProjectileThink_Update { get; } - public IDatamapFunctionOperator CSmokeGrenadeProjectileThink_Remove { get; } - public IDatamapFunctionOperator CSmokeGrenadeProjectileThink_BuildingSmokeVolume { get; } - public IDatamapFunctionOperator CLogicNPCCounterSetNPCCounterThink { get; } - public IDatamapFunctionOperator CFuncShatterglassGlassThink { get; } - public IDatamapFunctionOperator CSoundOpvarSetAutoRoomEntitySetOpvarThink { get; } - public IDatamapFunctionOperator CTriggerGravityGravityTouch { get; } - public IDatamapFunctionOperator CSoundEventPathCornerEntitySoundEventPathCornerThink { get; } - public IDatamapFunctionOperator CItemItemTouch { get; } - public IDatamapFunctionOperator CItemMaterialize { get; } - public IDatamapFunctionOperator CItemComeToRest { get; } - public IDatamapFunctionOperator CBaseCSGrenadeProjectileDangerSoundThink { get; } - public IDatamapFunctionOperator CSoundOpvarSetPathCornerEntitySetOpvarThink { get; } - public IDatamapFunctionOperator CBaseButtonButtonTouch { get; } - public IDatamapFunctionOperator CBaseButtonButtonSpark { get; } - public IDatamapFunctionOperator CBaseButtonTriggerAndWait { get; } - public IDatamapFunctionOperator CBaseButtonButtonReturn { get; } - public IDatamapFunctionOperator CBaseButtonButtonBackHome { get; } - public IDatamapFunctionOperator CBaseButtonButtonUse { get; } - public IDatamapFunctionOperator CBaseButtonActivateTouch { get; } - public IDatamapFunctionOperator CRevertSavedLoadThink { get; } - public IDatamapFunctionOperator CSoundEventOBBEntitySoundEventOBBThink { get; } - public IDatamapFunctionOperator CSplineConstraintTransitionThink { get; } - public IDatamapFunctionOperator CCSWeaponBaseDefaultTouch { get; } - public IDatamapFunctionOperator CCSWeaponBaseRemoveUnownedWeaponThink { get; } - public IDatamapFunctionOperator CChickenChickenTouch { get; } - public IDatamapFunctionOperator CChickenChickenThink { get; } - public IDatamapFunctionOperator CChickenChickenUse { get; } - public IDatamapFunctionOperator CBaseAnimGraphChoreoServicesThink { get; } - public IDatamapFunctionOperator CParticleSystemStartParticleSystemThink { get; } - public IDatamapFunctionOperator CBaseFlexProcessSceneEventsThink { get; } - public IDatamapFunctionOperator CTriggerProximityMeasureThink { get; } - public IDatamapFunctionOperator CRagdollPropSetDebrisThink { get; } - public IDatamapFunctionOperator CRagdollPropClearFlagsThink { get; } - public IDatamapFunctionOperator CRagdollPropFadeOutThink { get; } - public IDatamapFunctionOperator CRagdollPropSettleThink { get; } - public IDatamapFunctionOperator CRagdollPropAttachedItemsThink { get; } - public IDatamapFunctionOperator CPointValueRemapperUpdateThink { get; } - public IDatamapFunctionOperator CBreakablePropBreakThink { get; } - public IDatamapFunctionOperator CBreakablePropRampToDefaultFadeScale { get; } - public IDatamapFunctionOperator CGenericConstraintUpdateThink { get; } - public IDatamapFunctionOperator CItemSodaCanThink { get; } - public IDatamapFunctionOperator CFuncMoverLerpToNewPosition { get; } - public IDatamapFunctionOperator CEnvWindWindThink { get; } - public IDatamapFunctionOperator CCSPlayerControllerPlayerForceTeamThink { get; } - public IDatamapFunctionOperator CCSPlayerControllerResetForceTeamThink { get; } - public IDatamapFunctionOperator CCSPlayerControllerResourceDataThink { get; } - public IDatamapFunctionOperator CCSPlayerControllerInventoryUpdateThink { get; } - public IDatamapFunctionOperator CLogicActiveAutosaveSaveThink { get; } - public IDatamapFunctionOperator CBaseEntitySUB_Remove { get; } - public IDatamapFunctionOperator CBaseEntitySUB_RemoveIfUncarried { get; } - public IDatamapFunctionOperator CBaseEntitySUB_DoNothing { get; } - public IDatamapFunctionOperator CBaseEntitySUB_Vanish { get; } - public IDatamapFunctionOperator CBaseEntitySUB_CallUseToggle { get; } - public IDatamapFunctionOperator CBaseEntitySUB_KillSelf { get; } - public IDatamapFunctionOperator CBaseEntitySUB_KillSelfIfUncarried { get; } - public IDatamapFunctionOperator CBaseEntityFakeScriptThinkFunc { get; } - public IDatamapFunctionOperator CBaseEntityClearNavIgnoreContentsThink { get; } - public IDatamapFunctionOperator CFuncRotatorRotateThink { get; } - public IDatamapFunctionOperator CPointPushPushThink { get; } - public IDatamapFunctionOperator CTriggerFanPushThink { get; } - public IDatamapFunctionOperator CDynamicPropAnimThink { get; } - public IDatamapFunctionOperator CHostageRescueZoneCHostageRescueZoneShim_Touch { get; } - public IDatamapFunctionOperator CBombTargetCBombTargetShim_Touch { get; } - public IDatamapFunctionOperator CBombTargetCBombTargetShim_BombTargetUse { get; } - public IDatamapFunctionOperator CSoundEventEntitySoundFinishedThink { get; } - public IDatamapFunctionOperator CFuncTrackTrainNext { get; } - public IDatamapFunctionOperator CFuncTrackTrainFind { get; } - public IDatamapFunctionOperator CFuncTrackTrainNearestPath { get; } - public IDatamapFunctionOperator CFuncTrackTrainDeadEnd { get; } - public IDatamapFunctionOperator CMomentaryRotButtonUseMoveDone { get; } - public IDatamapFunctionOperator CMomentaryRotButtonReturnMoveDone { get; } - public IDatamapFunctionOperator CMomentaryRotButtonSetPositionMoveDone { get; } - public IDatamapFunctionOperator CMomentaryRotButtonUpdateThink { get; } - public IDatamapFunctionOperator CTriggerSndSosOpvarSndSosTriggerOpvarWaitOver { get; } - public IDatamapFunctionOperator CVoteControllerVoteControllerThink { get; } - public IDatamapFunctionOperator CPhysForceForceOff { get; } - public IDatamapFunctionOperator CPhysForceInitialThink { get; } - public IDatamapFunctionOperator CSoundOpvarSetPointEntitySetOpvarThink { get; } - public IDatamapFunctionOperator CDecoyProjectileThink_Detonate { get; } - public IDatamapFunctionOperator CDecoyProjectileGunfireThink { get; } - public IDatamapFunctionOperator CPlantedC4C4Think { get; } - public IDatamapFunctionOperator CItemGenericTriggerHelperItemGenericTriggerHelperTouch { get; } - public IDatamapFunctionOperator CPointOrientReorientThink { get; } - public IDatamapFunctionOperator CMultiLightProxyRestoreFlashlightThink { get; } - public IDatamapFunctionOperator CMultiLightProxyApproachBrightnessThink { get; } - public IDatamapFunctionOperator CAmbientGenericRampThink { get; } - public IDatamapFunctionOperator CSoundEventSphereEntitySoundEventSphereThink { get; } - public IDatamapFunctionOperator CBreakableDie { get; } - public IDatamapFunctionOperator CTriggerHurtRadiationThink { get; } - public IDatamapFunctionOperator CTriggerHurtHurtThink { get; } - public IDatamapFunctionOperator CTriggerHurtNavThink { get; } - public IDatamapFunctionOperator CScriptedSequenceScriptThink { get; } - public IDatamapFunctionOperator CEnvWindControllerWindThink { get; } - public IDatamapFunctionOperator CTriggerMultipleMultiTouch { get; } - public IDatamapFunctionOperator CTriggerMultipleMultiWaitOver { get; } - public IDatamapFunctionOperator CFuncRotatingSpinUpMove { get; } - public IDatamapFunctionOperator CFuncRotatingSpinDownMove { get; } - public IDatamapFunctionOperator CFuncRotatingHurtTouch { get; } - public IDatamapFunctionOperator CFuncRotatingRotatingUse { get; } - public IDatamapFunctionOperator CFuncRotatingRotateMove { get; } - public IDatamapFunctionOperator CFuncRotatingReverseMove { get; } - public IDatamapFunctionOperator CCSPlayerPawnCheckStuffThink { get; } - public IDatamapFunctionOperator CCSPlayerPawnPushawayThink { get; } - public IDatamapFunctionOperator CMapVetoPickControllerVoteControllerThink { get; } - public IDatamapFunctionOperator CEntityDissolveDissolveThink { get; } - public IDatamapFunctionOperator CEntityDissolveElectrocuteThink { get; } - public IDatamapFunctionOperator CLogicMeasureMovementMeasureThink { get; } - public IDatamapFunctionOperator CTriggerImpactDisable { get; } - public IDatamapFunctionOperator CEnvBeamStrikeThink { get; } - public IDatamapFunctionOperator CEnvBeamUpdateThink { get; } - public IDatamapFunctionOperator CCSPlayerResourceResourceThink { get; } - public IDatamapFunctionOperator CBaseModelEntitySUB_DissolveIfUncarried { get; } - public IDatamapFunctionOperator CBaseModelEntitySUB_StartFadeOut { get; } - public IDatamapFunctionOperator CBaseModelEntitySUB_StartFadeOutInstant { get; } - public IDatamapFunctionOperator CBaseModelEntitySUB_FadeOut { get; } - public IDatamapFunctionOperator CBaseModelEntitySUB_StartShadowFadeOut { get; } - public IDatamapFunctionOperator CBaseModelEntitySUB_PerformShadowFadeOut { get; } - public IDatamapFunctionOperator CBaseModelEntitySUB_StartShadowFadeIn { get; } - public IDatamapFunctionOperator CBaseModelEntitySUB_PerformShadowFadeIn { get; } - public IDatamapFunctionOperator CBaseModelEntitySUB_StopShadowFade { get; } - public IDatamapFunctionOperator CSoundOpvarSetAABBEntitySetOpvarThink { get; } - public IDatamapFunctionOperator CFuncTrainControlsFind { get; } - public IDatamapFunctionOperator CPhysicsPropRespawnableMaterialize { get; } - public IDatamapFunctionOperator CFishPoolUpdate { get; } - public IDatamapFunctionOperator CTriggerSoundscapePlayerUpdateThink { get; } - public IDatamapFunctionOperator CItemGenericItemGenericTouch { get; } - public IDatamapFunctionOperator CTriggerActiveWeaponDetectActiveWeaponThink { get; } - public IDatamapFunctionOperator CFogControllerSetLerpValues { get; } - public IDatamapFunctionOperator CFuncTrackChangeFind { get; } - public IDatamapFunctionOperator CTriggerLookTimeoutThink { get; } - public IDatamapFunctionOperator CSoundOpvarSetOBBEntitySetOpvarThink { get; } - public IDatamapFunctionOperator CColorCorrectionVolumeThinkFunc { get; } - public IDatamapFunctionOperator CWaterBulletBulletThink { get; } - public IDatamapFunctionOperator CFuncPlatPlatUse { get; } - public IDatamapFunctionOperator CFuncPlatCallGoDown { get; } - public IDatamapFunctionOperator CFuncPlatCallHitTop { get; } - public IDatamapFunctionOperator CFuncPlatCallHitBottom { get; } - public IDatamapFunctionOperator CPhysImpactPointAtEntity { get; } - public IDatamapFunctionOperator CTriggerLerpObjectLerpThink { get; } - public IDatamapFunctionOperator CTriggerLerpObjectUnsetWaitForEntity { get; } - public IDatamapFunctionOperator CTriggerLerpObjectAttachedEntityThink { get; } - public IDatamapFunctionOperator CPathMoverEntitySpawnerSpawnThink { get; } - public IDatamapFunctionOperator CPointCommentaryNodeSpinThink { get; } - public IDatamapFunctionOperator CPointCommentaryNodeUpdateViewThink { get; } - public IDatamapFunctionOperator CPointCommentaryNodeUpdateViewPostThink { get; } - public IDatamapFunctionOperator CPointCommentaryNodeAcculumatePlayTimeThink { get; } - public IDatamapFunctionOperator CPathNodeParentedMoveThink { get; } - public IDatamapFunctionOperator CPhysicalButtonPhysicsThink { get; } - public IDatamapFunctionOperator CPhysicalButtonButtonTouch { get; } - public IDatamapFunctionOperator CPhysicalButtonTriggerAndWait { get; } - public IDatamapFunctionOperator CPhysicalButtonButtonBackHome { get; } - -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Natives/Commands.cs b/managed/src/SwiftlyS2.Generated/Natives/Commands.cs index aa6590d0a..5f413f422 100644 --- a/managed/src/SwiftlyS2.Generated/Natives/Commands.cs +++ b/managed/src/SwiftlyS2.Generated/Natives/Commands.cs @@ -35,23 +35,31 @@ public unsafe static int HandleCommandForPlayer(int playerid, string command) } } - private unsafe static delegate* unmanaged _RegisterCommand; + private unsafe static delegate* unmanaged _RegisterCommand; /// /// callback should receive (int32 playerid, string arguments_list (separated by \x01), string commandName, string prefix, bool silent), if registerRaw is false, it will not put "sw_" before the command name /// - public unsafe static ulong RegisterCommand(string commandName, nint callback, bool registerRaw) + public unsafe static ulong RegisterCommand(string commandName, nint callback, bool registerRaw, string helpText) { var pool = ArrayPool.Shared; var commandNameLength = Encoding.UTF8.GetByteCount(commandName); var commandNameBuffer = pool.Rent(commandNameLength + 1); Encoding.UTF8.GetBytes(commandName, commandNameBuffer); commandNameBuffer[commandNameLength] = 0; + var helpTextLength = Encoding.UTF8.GetByteCount(helpText); + var helpTextBuffer = pool.Rent(helpTextLength + 1); + Encoding.UTF8.GetBytes(helpText, helpTextBuffer); + helpTextBuffer[helpTextLength] = 0; fixed (byte* commandNameBufferPtr = commandNameBuffer) { - var ret = _RegisterCommand(commandNameBufferPtr, callback, registerRaw ? (byte)1 : (byte)0); - pool.Return(commandNameBuffer); - return ret; + fixed (byte* helpTextBufferPtr = helpTextBuffer) + { + var ret = _RegisterCommand(commandNameBufferPtr, callback, registerRaw ? (byte)1 : (byte)0, helpTextBufferPtr); + pool.Return(commandNameBuffer); + pool.Return(helpTextBuffer); + return ret; + } } } diff --git a/managed/src/SwiftlyS2.Generated/Natives/Core.cs b/managed/src/SwiftlyS2.Generated/Natives/Core.cs index 9a7ae9999..05bf189b6 100644 --- a/managed/src/SwiftlyS2.Generated/Natives/Core.cs +++ b/managed/src/SwiftlyS2.Generated/Natives/Core.cs @@ -42,4 +42,12 @@ public unsafe static bool EnableProfilerByDefault() var ret = _EnableProfilerByDefault(); return ret == 1; } + + private unsafe static delegate* unmanaged _IsMainThread; + + public unsafe static bool IsMainThread() + { + var ret = _IsMainThread(); + return ret == 1; + } } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Natives/EngineHelpers.cs b/managed/src/SwiftlyS2.Generated/Natives/EngineHelpers.cs index 0f3d4a2d7..2490d1aa0 100644 --- a/managed/src/SwiftlyS2.Generated/Natives/EngineHelpers.cs +++ b/managed/src/SwiftlyS2.Generated/Natives/EngineHelpers.cs @@ -219,4 +219,20 @@ public unsafe static string GetWorkshopId() return retString; } } + + private unsafe static delegate* unmanaged _DispatchParticleEffect; + + public unsafe static void DispatchParticleEffect(string particleName, uint attachmentType, nint entity, byte attachmentPoint, nint attachmentName, bool resetAllParticlesOnEntity, int splitScreenSlot, ulong filtermask) + { + var pool = ArrayPool.Shared; + var particleNameLength = Encoding.UTF8.GetByteCount(particleName); + var particleNameBuffer = pool.Rent(particleNameLength + 1); + Encoding.UTF8.GetBytes(particleName, particleNameBuffer); + particleNameBuffer[particleNameLength] = 0; + fixed (byte* particleNameBufferPtr = particleNameBuffer) + { + _DispatchParticleEffect(particleNameBufferPtr, attachmentType, entity, attachmentPoint, attachmentName, resetAllParticlesOnEntity ? (byte)1 : (byte)0, splitScreenSlot, filtermask); + pool.Return(particleNameBuffer); + } + } } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Natives/Events.cs b/managed/src/SwiftlyS2.Generated/Natives/Events.cs index a76e23e5e..6a8aadeef 100644 --- a/managed/src/SwiftlyS2.Generated/Natives/Events.cs +++ b/managed/src/SwiftlyS2.Generated/Natives/Events.cs @@ -190,4 +190,14 @@ public unsafe static void RegisterOnStartupServerCallback(nint callback) { _RegisterOnStartupServerCallback(callback); } + + private unsafe static delegate* unmanaged _RegisterOnClientVoiceCallback; + + /// + /// int32 playerid + /// + public unsafe static void RegisterOnClientVoiceCallback(nint callback) + { + _RegisterOnClientVoiceCallback(callback); + } } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Natives/Player.cs b/managed/src/SwiftlyS2.Generated/Natives/Player.cs index e155444ec..0aaf435f1 100644 --- a/managed/src/SwiftlyS2.Generated/Natives/Player.cs +++ b/managed/src/SwiftlyS2.Generated/Natives/Player.cs @@ -307,4 +307,28 @@ public unsafe static int GetUserID(int playerid) var ret = _GetUserID(playerid); return ret; } + + private unsafe static delegate* unmanaged _GetSessionID; + + public unsafe static ulong GetSessionID(int playerid) + { + var ret = _GetSessionID(playerid); + return ret; + } + + private unsafe static delegate* unmanaged _GetName; + + public unsafe static string GetName(int playerid) + { + var ret = _GetName(null, playerid); + var pool = ArrayPool.Shared; + var retBuffer = pool.Rent(ret + 1); + fixed (byte* retBufferPtr = retBuffer) + { + ret = _GetName(retBufferPtr, playerid); + var retString = Encoding.UTF8.GetString(retBufferPtr, ret); + pool.Return(retBuffer); + return retString; + } + } } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Natives/PlayerManager.cs b/managed/src/SwiftlyS2.Generated/Natives/PlayerManager.cs index 7aa724886..5fe2c08b8 100644 --- a/managed/src/SwiftlyS2.Generated/Natives/PlayerManager.cs +++ b/managed/src/SwiftlyS2.Generated/Natives/PlayerManager.cs @@ -11,14 +11,6 @@ namespace SwiftlyS2.Core.Natives; internal static class NativePlayerManager { - private unsafe static delegate* unmanaged _IsPlayerOnline; - - public unsafe static bool IsPlayerOnline(int playerid) - { - var ret = _IsPlayerOnline(playerid); - return ret == 1; - } - private unsafe static delegate* unmanaged _GetPlayerCount; public unsafe static int GetPlayerCount() diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/AccountActivityImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/AccountActivityImpl.cs index 9043fe56c..605ad66ed 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/AccountActivityImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/AccountActivityImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class AccountActivityImpl : TypedProtobuf, AccountActivity { - public AccountActivityImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Activity - { get => Accessor.GetUInt32("activity"); set => Accessor.SetUInt32("activity", value); } - - - public uint Mode - { get => Accessor.GetUInt32("mode"); set => Accessor.SetUInt32("mode", value); } - - - public uint Map - { get => Accessor.GetUInt32("map"); set => Accessor.SetUInt32("map", value); } - - - public ulong Matchid - { get => Accessor.GetUInt64("matchid"); set => Accessor.SetUInt64("matchid", value); } - -} + public AccountActivityImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Activity + { get => Accessor.GetUInt32("activity"); set => Accessor.SetUInt32("activity", value); } + public uint Mode + { get => Accessor.GetUInt32("mode"); set => Accessor.SetUInt32("mode", value); } + public uint Map + { get => Accessor.GetUInt32("map"); set => Accessor.SetUInt32("map", value); } + public ulong Matchid + { get => Accessor.GetUInt64("matchid"); set => Accessor.SetUInt64("matchid", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/C2S_CONNECTION_MessageImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/C2S_CONNECTION_MessageImpl.cs index dbc4c467a..b7b2c45d7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/C2S_CONNECTION_MessageImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/C2S_CONNECTION_MessageImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class C2S_CONNECTION_MessageImpl : TypedProtobuf, C2S_CONNECTION_Message { - public C2S_CONNECTION_MessageImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string AddonName - { get => Accessor.GetString("addon_name"); set => Accessor.SetString("addon_name", value); } - - - public C2S_CONNECT_SameProcessCheck LocalhostSameProcessCheck - { get => new C2S_CONNECT_SameProcessCheckImpl(NativeNetMessages.GetNestedMessage(Address, "localhost_same_process_check"), false); } - -} + public C2S_CONNECTION_MessageImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string AddonName + { get => Accessor.GetString("addon_name"); set => Accessor.SetString("addon_name", value); } + public C2S_CONNECT_SameProcessCheck LocalhostSameProcessCheck + { get => new C2S_CONNECT_SameProcessCheckImpl(NativeNetMessages.GetNestedMessage(Address, "localhost_same_process_check"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/C2S_CONNECT_MessageImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/C2S_CONNECT_MessageImpl.cs index 0fada18d1..fe39a0bbb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/C2S_CONNECT_MessageImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/C2S_CONNECT_MessageImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,48 +8,28 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class C2S_CONNECT_MessageImpl : TypedProtobuf, C2S_CONNECT_Message { - public C2S_CONNECT_MessageImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint HostVersion - { get => Accessor.GetUInt32("host_version"); set => Accessor.SetUInt32("host_version", value); } - - - public uint AuthProtocol - { get => Accessor.GetUInt32("auth_protocol"); set => Accessor.SetUInt32("auth_protocol", value); } - - - public uint ChallengeNumber - { get => Accessor.GetUInt32("challenge_number"); set => Accessor.SetUInt32("challenge_number", value); } - - - public ulong ReservationCookie - { get => Accessor.GetUInt64("reservation_cookie"); set => Accessor.SetUInt64("reservation_cookie", value); } - - - public bool LowViolence - { get => Accessor.GetBool("low_violence"); set => Accessor.SetBool("low_violence", value); } - - - public byte[] EncryptedPassword - { get => Accessor.GetBytes("encrypted_password"); set => Accessor.SetBytes("encrypted_password", value); } - - - public IProtobufRepeatedFieldSubMessageType Splitplayers - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "splitplayers"); } - - - public byte[] AuthSteam - { get => Accessor.GetBytes("auth_steam"); set => Accessor.SetBytes("auth_steam", value); } - - - public string ChallengeContext - { get => Accessor.GetString("challenge_context"); set => Accessor.SetString("challenge_context", value); } - - - public C2S_CONNECT_SameProcessCheck LocalhostSameProcessCheck - { get => new C2S_CONNECT_SameProcessCheckImpl(NativeNetMessages.GetNestedMessage(Address, "localhost_same_process_check"), false); } - -} + public C2S_CONNECT_MessageImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint HostVersion + { get => Accessor.GetUInt32("host_version"); set => Accessor.SetUInt32("host_version", value); } + public uint AuthProtocol + { get => Accessor.GetUInt32("auth_protocol"); set => Accessor.SetUInt32("auth_protocol", value); } + public uint ChallengeNumber + { get => Accessor.GetUInt32("challenge_number"); set => Accessor.SetUInt32("challenge_number", value); } + public ulong ReservationCookie + { get => Accessor.GetUInt64("reservation_cookie"); set => Accessor.SetUInt64("reservation_cookie", value); } + public bool LowViolence + { get => Accessor.GetBool("low_violence"); set => Accessor.SetBool("low_violence", value); } + public byte[] EncryptedPassword + { get => Accessor.GetBytes("encrypted_password"); set => Accessor.SetBytes("encrypted_password", value); } + public IProtobufRepeatedFieldSubMessageType Splitplayers + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "splitplayers"); } + public byte[] AuthSteam + { get => Accessor.GetBytes("auth_steam"); set => Accessor.SetBytes("auth_steam", value); } + public string ChallengeContext + { get => Accessor.GetString("challenge_context"); set => Accessor.SetString("challenge_context", value); } + public C2S_CONNECT_SameProcessCheck LocalhostSameProcessCheck + { get => new C2S_CONNECT_SameProcessCheckImpl(NativeNetMessages.GetNestedMessage(Address, "localhost_same_process_check"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/C2S_CONNECT_SameProcessCheckImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/C2S_CONNECT_SameProcessCheckImpl.cs index c1007ae71..f1da3f948 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/C2S_CONNECT_SameProcessCheckImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/C2S_CONNECT_SameProcessCheckImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class C2S_CONNECT_SameProcessCheckImpl : TypedProtobuf, C2S_CONNECT_SameProcessCheck { - public C2S_CONNECT_SameProcessCheckImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong LocalhostProcessId - { get => Accessor.GetUInt64("localhost_process_id"); set => Accessor.SetUInt64("localhost_process_id", value); } - - - public ulong Key - { get => Accessor.GetUInt64("key"); set => Accessor.SetUInt64("key", value); } - -} + public C2S_CONNECT_SameProcessCheckImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong LocalhostProcessId + { get => Accessor.GetUInt64("localhost_process_id"); set => Accessor.SetUInt64("localhost_process_id", value); } + public ulong Key + { get => Accessor.GetUInt64("key"); set => Accessor.SetUInt64("key", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CAttribute_StringImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CAttribute_StringImpl.cs index 0807ab470..c331f75ff 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CAttribute_StringImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CAttribute_StringImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CAttribute_StringImpl : TypedProtobuf, CAttribute_String { - public CAttribute_StringImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string Value - { get => Accessor.GetString("value"); set => Accessor.SetString("value", value); } + public CAttribute_StringImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public string Value + { get => Accessor.GetString("value"); set => Accessor.SetString("value", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CBaseUserCmdExecutionNotesImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CBaseUserCmdExecutionNotesImpl.cs index d9227bfa6..1845c3863 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CBaseUserCmdExecutionNotesImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CBaseUserCmdExecutionNotesImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CBaseUserCmdExecutionNotesImpl : TypedProtobuf, CBaseUserCmdExecutionNotes { - public CBaseUserCmdExecutionNotesImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string IgnoredReason - { get => Accessor.GetString("ignored_reason"); set => Accessor.SetString("ignored_reason", value); } + public CBaseUserCmdExecutionNotesImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public string IgnoredReason + { get => Accessor.GetString("ignored_reason"); set => Accessor.SetString("ignored_reason", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CBaseUserCmdPBImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CBaseUserCmdPBImpl.cs index 9cfa14089..b385ea73a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CBaseUserCmdPBImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CBaseUserCmdPBImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,84 +8,46 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CBaseUserCmdPBImpl : TypedProtobuf, CBaseUserCmdPB { - public CBaseUserCmdPBImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int LegacyCommandNumber - { get => Accessor.GetInt32("legacy_command_number"); set => Accessor.SetInt32("legacy_command_number", value); } - - - public int ClientTick - { get => Accessor.GetInt32("client_tick"); set => Accessor.SetInt32("client_tick", value); } - - - public uint PredictionOffsetTicksX256 - { get => Accessor.GetUInt32("prediction_offset_ticks_x256"); set => Accessor.SetUInt32("prediction_offset_ticks_x256", value); } - - - public CInButtonStatePB ButtonsPb - { get => new CInButtonStatePBImpl(NativeNetMessages.GetNestedMessage(Address, "buttons_pb"), false); } - - - public QAngle Viewangles - { get => Accessor.GetQAngle("viewangles"); set => Accessor.SetQAngle("viewangles", value); } - - - public float Forwardmove - { get => Accessor.GetFloat("forwardmove"); set => Accessor.SetFloat("forwardmove", value); } - - - public float Leftmove - { get => Accessor.GetFloat("leftmove"); set => Accessor.SetFloat("leftmove", value); } - - - public float Upmove - { get => Accessor.GetFloat("upmove"); set => Accessor.SetFloat("upmove", value); } - - - public int Impulse - { get => Accessor.GetInt32("impulse"); set => Accessor.SetInt32("impulse", value); } - - - public int Weaponselect - { get => Accessor.GetInt32("weaponselect"); set => Accessor.SetInt32("weaponselect", value); } - - - public int RandomSeed - { get => Accessor.GetInt32("random_seed"); set => Accessor.SetInt32("random_seed", value); } - - - public int Mousedx - { get => Accessor.GetInt32("mousedx"); set => Accessor.SetInt32("mousedx", value); } - - - public int Mousedy - { get => Accessor.GetInt32("mousedy"); set => Accessor.SetInt32("mousedy", value); } - - - public uint PawnEntityHandle - { get => Accessor.GetUInt32("pawn_entity_handle"); set => Accessor.SetUInt32("pawn_entity_handle", value); } - - - public IProtobufRepeatedFieldSubMessageType SubtickMoves - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "subtick_moves"); } - - - public byte[] MoveCrc - { get => Accessor.GetBytes("move_crc"); set => Accessor.SetBytes("move_crc", value); } - - - public uint ConsumedServerAngleChanges - { get => Accessor.GetUInt32("consumed_server_angle_changes"); set => Accessor.SetUInt32("consumed_server_angle_changes", value); } - - - public int CmdFlags - { get => Accessor.GetInt32("cmd_flags"); set => Accessor.SetInt32("cmd_flags", value); } - - - public CBaseUserCmdExecutionNotes ExecutionNotes - { get => new CBaseUserCmdExecutionNotesImpl(NativeNetMessages.GetNestedMessage(Address, "execution_notes"), false); } - -} + public CBaseUserCmdPBImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int LegacyCommandNumber + { get => Accessor.GetInt32("legacy_command_number"); set => Accessor.SetInt32("legacy_command_number", value); } + public int ClientTick + { get => Accessor.GetInt32("client_tick"); set => Accessor.SetInt32("client_tick", value); } + public uint PredictionOffsetTicksX256 + { get => Accessor.GetUInt32("prediction_offset_ticks_x256"); set => Accessor.SetUInt32("prediction_offset_ticks_x256", value); } + public CInButtonStatePB ButtonsPb + { get => new CInButtonStatePBImpl(NativeNetMessages.GetNestedMessage(Address, "buttons_pb"), false); } + public QAngle Viewangles + { get => Accessor.GetQAngle("viewangles"); set => Accessor.SetQAngle("viewangles", value); } + public float Forwardmove + { get => Accessor.GetFloat("forwardmove"); set => Accessor.SetFloat("forwardmove", value); } + public float Leftmove + { get => Accessor.GetFloat("leftmove"); set => Accessor.SetFloat("leftmove", value); } + public float Upmove + { get => Accessor.GetFloat("upmove"); set => Accessor.SetFloat("upmove", value); } + public int Impulse + { get => Accessor.GetInt32("impulse"); set => Accessor.SetInt32("impulse", value); } + public int Weaponselect + { get => Accessor.GetInt32("weaponselect"); set => Accessor.SetInt32("weaponselect", value); } + public int RandomSeed + { get => Accessor.GetInt32("random_seed"); set => Accessor.SetInt32("random_seed", value); } + public int Mousedx + { get => Accessor.GetInt32("mousedx"); set => Accessor.SetInt32("mousedx", value); } + public int Mousedy + { get => Accessor.GetInt32("mousedy"); set => Accessor.SetInt32("mousedy", value); } + public uint PawnEntityHandle + { get => Accessor.GetUInt32("pawn_entity_handle"); set => Accessor.SetUInt32("pawn_entity_handle", value); } + public IProtobufRepeatedFieldSubMessageType SubtickMoves + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "subtick_moves"); } + public byte[] MoveCrc + { get => Accessor.GetBytes("move_crc"); set => Accessor.SetBytes("move_crc", value); } + public uint ConsumedServerAngleChanges + { get => Accessor.GetUInt32("consumed_server_angle_changes"); set => Accessor.SetUInt32("consumed_server_angle_changes", value); } + public int CmdFlags + { get => Accessor.GetInt32("cmd_flags"); set => Accessor.SetInt32("cmd_flags", value); } + public CBaseUserCmdExecutionNotes ExecutionNotes + { get => new CBaseUserCmdExecutionNotesImpl(NativeNetMessages.GetNestedMessage(Address, "execution_notes"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CBidirMsg_PredictionEventImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CBidirMsg_PredictionEventImpl.cs index 499d04e31..66d2fde0c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CBidirMsg_PredictionEventImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CBidirMsg_PredictionEventImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CBidirMsg_PredictionEventImpl : TypedProtobuf, CBidirMsg_PredictionEvent { - public CBidirMsg_PredictionEventImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint EventId - { get => Accessor.GetUInt32("event_id"); set => Accessor.SetUInt32("event_id", value); } - - - public byte[] EventData - { get => Accessor.GetBytes("event_data"); set => Accessor.SetBytes("event_data", value); } - - - public uint SyncType - { get => Accessor.GetUInt32("sync_type"); set => Accessor.SetUInt32("sync_type", value); } - - - public uint SyncValUint32 - { get => Accessor.GetUInt32("sync_val_uint32"); set => Accessor.SetUInt32("sync_val_uint32", value); } - -} + public CBidirMsg_PredictionEventImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint EventId + { get => Accessor.GetUInt32("event_id"); set => Accessor.SetUInt32("event_id", value); } + public byte[] EventData + { get => Accessor.GetBytes("event_data"); set => Accessor.SetBytes("event_data", value); } + public uint SyncType + { get => Accessor.GetUInt32("sync_type"); set => Accessor.SetUInt32("sync_type", value); } + public uint SyncValUint32 + { get => Accessor.GetUInt32("sync_val_uint32"); set => Accessor.SetUInt32("sync_val_uint32", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CBidirMsg_RebroadcastGameEventImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CBidirMsg_RebroadcastGameEventImpl.cs index 3583ddcfc..ba74d256b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CBidirMsg_RebroadcastGameEventImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CBidirMsg_RebroadcastGameEventImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CBidirMsg_RebroadcastGameEventImpl : TypedProtobuf, CBidirMsg_RebroadcastGameEvent { - public CBidirMsg_RebroadcastGameEventImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public bool Posttoserver - { get => Accessor.GetBool("posttoserver"); set => Accessor.SetBool("posttoserver", value); } - - - public int Buftype - { get => Accessor.GetInt32("buftype"); set => Accessor.SetInt32("buftype", value); } - - - public uint Clientbitcount - { get => Accessor.GetUInt32("clientbitcount"); set => Accessor.SetUInt32("clientbitcount", value); } - - - public ulong Receivingclients - { get => Accessor.GetUInt64("receivingclients"); set => Accessor.SetUInt64("receivingclients", value); } - -} + public CBidirMsg_RebroadcastGameEventImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public bool Posttoserver + { get => Accessor.GetBool("posttoserver"); set => Accessor.SetBool("posttoserver", value); } + public int Buftype + { get => Accessor.GetInt32("buftype"); set => Accessor.SetInt32("buftype", value); } + public uint Clientbitcount + { get => Accessor.GetUInt32("clientbitcount"); set => Accessor.SetUInt32("clientbitcount", value); } + public ulong Receivingclients + { get => Accessor.GetUInt64("receivingclients"); set => Accessor.SetUInt64("receivingclients", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CBidirMsg_RebroadcastSourceImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CBidirMsg_RebroadcastSourceImpl.cs index b8211320e..a03424dd5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CBidirMsg_RebroadcastSourceImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CBidirMsg_RebroadcastSourceImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CBidirMsg_RebroadcastSourceImpl : TypedProtobuf, CBidirMsg_RebroadcastSource { - public CBidirMsg_RebroadcastSourceImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Eventsource - { get => Accessor.GetInt32("eventsource"); set => Accessor.SetInt32("eventsource", value); } + public CBidirMsg_RebroadcastSourceImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public int Eventsource + { get => Accessor.GetInt32("eventsource"); set => Accessor.SetInt32("eventsource", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_BaselineAckImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_BaselineAckImpl.cs index 186ba43a7..3f665f3fb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_BaselineAckImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_BaselineAckImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCLCMsg_BaselineAckImpl : NetMessage, CCLCMsg_BaselineAck { - public CCLCMsg_BaselineAckImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int BaselineTick - { get => Accessor.GetInt32("baseline_tick"); set => Accessor.SetInt32("baseline_tick", value); } - - - public int BaselineNr - { get => Accessor.GetInt32("baseline_nr"); set => Accessor.SetInt32("baseline_nr", value); } - -} + public CCLCMsg_BaselineAckImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int BaselineTick + { get => Accessor.GetInt32("baseline_tick"); set => Accessor.SetInt32("baseline_tick", value); } + public int BaselineNr + { get => Accessor.GetInt32("baseline_nr"); set => Accessor.SetInt32("baseline_nr", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_ClientInfoImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_ClientInfoImpl.cs index d94866974..0918947da 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_ClientInfoImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_ClientInfoImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCLCMsg_ClientInfoImpl : NetMessage, CCLCMsg_ClientInfo { - public CCLCMsg_ClientInfoImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint SendTableCrc - { get => Accessor.GetUInt32("send_table_crc"); set => Accessor.SetUInt32("send_table_crc", value); } - - - public uint ServerCount - { get => Accessor.GetUInt32("server_count"); set => Accessor.SetUInt32("server_count", value); } - - - public bool IsHltv - { get => Accessor.GetBool("is_hltv"); set => Accessor.SetBool("is_hltv", value); } - - - public uint FriendsId - { get => Accessor.GetUInt32("friends_id"); set => Accessor.SetUInt32("friends_id", value); } - - - public string FriendsName - { get => Accessor.GetString("friends_name"); set => Accessor.SetString("friends_name", value); } - -} + public CCLCMsg_ClientInfoImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public uint SendTableCrc + { get => Accessor.GetUInt32("send_table_crc"); set => Accessor.SetUInt32("send_table_crc", value); } + public uint ServerCount + { get => Accessor.GetUInt32("server_count"); set => Accessor.SetUInt32("server_count", value); } + public bool IsHltv + { get => Accessor.GetBool("is_hltv"); set => Accessor.SetBool("is_hltv", value); } + public uint FriendsId + { get => Accessor.GetUInt32("friends_id"); set => Accessor.SetUInt32("friends_id", value); } + public string FriendsName + { get => Accessor.GetString("friends_name"); set => Accessor.SetString("friends_name", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_CmdKeyValuesImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_CmdKeyValuesImpl.cs index dea65dc8f..c46e2adbf 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_CmdKeyValuesImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_CmdKeyValuesImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCLCMsg_CmdKeyValuesImpl : NetMessage, CCLCMsg_CmdKeyValues { - public CCLCMsg_CmdKeyValuesImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public byte[] Data - { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } + public CCLCMsg_CmdKeyValuesImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public byte[] Data + { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_DiagnosticImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_DiagnosticImpl.cs index 0f51dcf96..96d5771a9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_DiagnosticImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_DiagnosticImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCLCMsg_DiagnosticImpl : NetMessage, CCLCMsg_Diagnostic { - public CCLCMsg_DiagnosticImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public CMsgSource2SystemSpecs SystemSpecs - { get => new CMsgSource2SystemSpecsImpl(NativeNetMessages.GetNestedMessage(Address, "system_specs"), false); } - - - public CMsgSource2VProfLiteReport VprofReport - { get => new CMsgSource2VProfLiteReportImpl(NativeNetMessages.GetNestedMessage(Address, "vprof_report"), false); } - - - public CMsgSource2NetworkFlowQuality DownstreamFlow - { get => new CMsgSource2NetworkFlowQualityImpl(NativeNetMessages.GetNestedMessage(Address, "downstream_flow"), false); } - - - public CMsgSource2NetworkFlowQuality UpstreamFlow - { get => new CMsgSource2NetworkFlowQualityImpl(NativeNetMessages.GetNestedMessage(Address, "upstream_flow"), false); } - - - public IProtobufRepeatedFieldSubMessageType PerfSamples - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "perf_samples"); } - -} + public CCLCMsg_DiagnosticImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public CMsgSource2SystemSpecs SystemSpecs + { get => new CMsgSource2SystemSpecsImpl(NativeNetMessages.GetNestedMessage(Address, "system_specs"), false); } + public CMsgSource2VProfLiteReport VprofReport + { get => new CMsgSource2VProfLiteReportImpl(NativeNetMessages.GetNestedMessage(Address, "vprof_report"), false); } + public CMsgSource2NetworkFlowQuality DownstreamFlow + { get => new CMsgSource2NetworkFlowQualityImpl(NativeNetMessages.GetNestedMessage(Address, "downstream_flow"), false); } + public CMsgSource2NetworkFlowQuality UpstreamFlow + { get => new CMsgSource2NetworkFlowQualityImpl(NativeNetMessages.GetNestedMessage(Address, "upstream_flow"), false); } + public IProtobufRepeatedFieldSubMessageType PerfSamples + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "perf_samples"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_HltvFixupOperatorTickImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_HltvFixupOperatorTickImpl.cs index a655afcb9..d806f9ab5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_HltvFixupOperatorTickImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_HltvFixupOperatorTickImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,40 +8,24 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCLCMsg_HltvFixupOperatorTickImpl : TypedProtobuf, CCLCMsg_HltvFixupOperatorTick { - public CCLCMsg_HltvFixupOperatorTickImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Tick - { get => Accessor.GetInt32("tick"); set => Accessor.SetInt32("tick", value); } - - - public byte[] PropsData - { get => Accessor.GetBytes("props_data"); set => Accessor.SetBytes("props_data", value); } - - - public Vector Origin - { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } - - - public QAngle EyeAngles - { get => Accessor.GetQAngle("eye_angles"); set => Accessor.SetQAngle("eye_angles", value); } - - - public int ObserverMode - { get => Accessor.GetInt32("observer_mode"); set => Accessor.SetInt32("observer_mode", value); } - - - public bool CameramanScoreboard - { get => Accessor.GetBool("cameraman_scoreboard"); set => Accessor.SetBool("cameraman_scoreboard", value); } - - - public int ObserverTarget - { get => Accessor.GetInt32("observer_target"); set => Accessor.SetInt32("observer_target", value); } - - - public Vector ViewOffset - { get => Accessor.GetVector("view_offset"); set => Accessor.SetVector("view_offset", value); } - -} + public CCLCMsg_HltvFixupOperatorTickImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Tick + { get => Accessor.GetInt32("tick"); set => Accessor.SetInt32("tick", value); } + public byte[] PropsData + { get => Accessor.GetBytes("props_data"); set => Accessor.SetBytes("props_data", value); } + public Vector Origin + { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } + public QAngle EyeAngles + { get => Accessor.GetQAngle("eye_angles"); set => Accessor.SetQAngle("eye_angles", value); } + public int ObserverMode + { get => Accessor.GetInt32("observer_mode"); set => Accessor.SetInt32("observer_mode", value); } + public bool CameramanScoreboard + { get => Accessor.GetBool("cameraman_scoreboard"); set => Accessor.SetBool("cameraman_scoreboard", value); } + public int ObserverTarget + { get => Accessor.GetInt32("observer_target"); set => Accessor.SetInt32("observer_target", value); } + public Vector ViewOffset + { get => Accessor.GetVector("view_offset"); set => Accessor.SetVector("view_offset", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_HltvReplayImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_HltvReplayImpl.cs index d16bc153e..2c019b597 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_HltvReplayImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_HltvReplayImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCLCMsg_HltvReplayImpl : NetMessage, CCLCMsg_HltvReplay { - public CCLCMsg_HltvReplayImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Request - { get => Accessor.GetInt32("request"); set => Accessor.SetInt32("request", value); } - - - public float SlowdownLength - { get => Accessor.GetFloat("slowdown_length"); set => Accessor.SetFloat("slowdown_length", value); } - - - public float SlowdownRate - { get => Accessor.GetFloat("slowdown_rate"); set => Accessor.SetFloat("slowdown_rate", value); } - - - public int PrimaryTarget - { get => Accessor.GetInt32("primary_target"); set => Accessor.SetInt32("primary_target", value); } - - - public float EventTime - { get => Accessor.GetFloat("event_time"); set => Accessor.SetFloat("event_time", value); } - -} + public CCLCMsg_HltvReplayImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Request + { get => Accessor.GetInt32("request"); set => Accessor.SetInt32("request", value); } + public float SlowdownLength + { get => Accessor.GetFloat("slowdown_length"); set => Accessor.SetFloat("slowdown_length", value); } + public float SlowdownRate + { get => Accessor.GetFloat("slowdown_rate"); set => Accessor.SetFloat("slowdown_rate", value); } + public int PrimaryTarget + { get => Accessor.GetInt32("primary_target"); set => Accessor.SetInt32("primary_target", value); } + public float EventTime + { get => Accessor.GetFloat("event_time"); set => Accessor.SetFloat("event_time", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_ListenEventsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_ListenEventsImpl.cs index 65e75073e..29e8d483c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_ListenEventsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_ListenEventsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCLCMsg_ListenEventsImpl : TypedProtobuf, CCLCMsg_ListenEvents { - public CCLCMsg_ListenEventsImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldValueType EventMask - { get => new ProtobufRepeatedFieldValueType(Accessor, "event_mask"); } + public CCLCMsg_ListenEventsImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public IProtobufRepeatedFieldValueType EventMask + { get => new ProtobufRepeatedFieldValueType(Accessor, "event_mask"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_LoadingProgressImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_LoadingProgressImpl.cs index c3b746a76..b8d94cf26 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_LoadingProgressImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_LoadingProgressImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCLCMsg_LoadingProgressImpl : NetMessage, CCLCMsg_LoadingProgress { - public CCLCMsg_LoadingProgressImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Progress - { get => Accessor.GetInt32("progress"); set => Accessor.SetInt32("progress", value); } + public CCLCMsg_LoadingProgressImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public int Progress + { get => Accessor.GetInt32("progress"); set => Accessor.SetInt32("progress", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_MoveImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_MoveImpl.cs index 9a6c4ae66..9a01486d3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_MoveImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_MoveImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCLCMsg_MoveImpl : NetMessage, CCLCMsg_Move { - public CCLCMsg_MoveImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public byte[] Data - { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } - - - public uint LastCommandNumber - { get => Accessor.GetUInt32("last_command_number"); set => Accessor.SetUInt32("last_command_number", value); } - -} + public CCLCMsg_MoveImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public byte[] Data + { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } + public uint LastCommandNumber + { get => Accessor.GetUInt32("last_command_number"); set => Accessor.SetUInt32("last_command_number", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_RconServerDetailsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_RconServerDetailsImpl.cs index fb3637c3e..c665c684e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_RconServerDetailsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_RconServerDetailsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCLCMsg_RconServerDetailsImpl : NetMessage, CCLCMsg_RconServerDetails { - public CCLCMsg_RconServerDetailsImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public byte[] Token - { get => Accessor.GetBytes("token"); set => Accessor.SetBytes("token", value); } + public CCLCMsg_RconServerDetailsImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public byte[] Token + { get => Accessor.GetBytes("token"); set => Accessor.SetBytes("token", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_RequestPauseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_RequestPauseImpl.cs index a924a0d61..8714bf6ab 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_RequestPauseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_RequestPauseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCLCMsg_RequestPauseImpl : NetMessage, CCLCMsg_RequestPause { - public CCLCMsg_RequestPauseImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public RequestPause_t PauseType - { get => (RequestPause_t)Accessor.GetInt32("pause_type"); set => Accessor.SetInt32("pause_type", (int)value); } - - - public int PauseGroup - { get => Accessor.GetInt32("pause_group"); set => Accessor.SetInt32("pause_group", value); } - -} + public CCLCMsg_RequestPauseImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public RequestPause_t PauseType + { get => (RequestPause_t)Accessor.GetInt32("pause_type"); set => Accessor.SetInt32("pause_type", (int)value); } + public int PauseGroup + { get => Accessor.GetInt32("pause_group"); set => Accessor.SetInt32("pause_group", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_RespondCvarValueImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_RespondCvarValueImpl.cs index 5064063bf..fcc4fb764 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_RespondCvarValueImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_RespondCvarValueImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCLCMsg_RespondCvarValueImpl : NetMessage, CCLCMsg_RespondCvarValue { - public CCLCMsg_RespondCvarValueImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Cookie - { get => Accessor.GetInt32("cookie"); set => Accessor.SetInt32("cookie", value); } - - - public int StatusCode - { get => Accessor.GetInt32("status_code"); set => Accessor.SetInt32("status_code", value); } - - - public string Name - { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } - - - public string Value - { get => Accessor.GetString("value"); set => Accessor.SetString("value", value); } - -} + public CCLCMsg_RespondCvarValueImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Cookie + { get => Accessor.GetInt32("cookie"); set => Accessor.SetInt32("cookie", value); } + public int StatusCode + { get => Accessor.GetInt32("status_code"); set => Accessor.SetInt32("status_code", value); } + public string Name + { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } + public string Value + { get => Accessor.GetString("value"); set => Accessor.SetString("value", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_ServerStatusImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_ServerStatusImpl.cs index 6542d8915..4995cf86f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_ServerStatusImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_ServerStatusImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCLCMsg_ServerStatusImpl : NetMessage, CCLCMsg_ServerStatus { - public CCLCMsg_ServerStatusImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public bool Simplified - { get => Accessor.GetBool("simplified"); set => Accessor.SetBool("simplified", value); } + public CCLCMsg_ServerStatusImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public bool Simplified + { get => Accessor.GetBool("simplified"); set => Accessor.SetBool("simplified", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_SplitPlayerConnectImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_SplitPlayerConnectImpl.cs index 1df0b04fd..e6215db56 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_SplitPlayerConnectImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_SplitPlayerConnectImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCLCMsg_SplitPlayerConnectImpl : NetMessage, CCLCMsg_SplitPlayerConnect { - public CCLCMsg_SplitPlayerConnectImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public string Playername - { get => Accessor.GetString("playername"); set => Accessor.SetString("playername", value); } + public CCLCMsg_SplitPlayerConnectImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public string Playername + { get => Accessor.GetString("playername"); set => Accessor.SetString("playername", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_SplitPlayerDisconnectImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_SplitPlayerDisconnectImpl.cs index 9d54c33f9..e6696f186 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_SplitPlayerDisconnectImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_SplitPlayerDisconnectImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCLCMsg_SplitPlayerDisconnectImpl : NetMessage, CCLCMsg_SplitPlayerDisconnect { - public CCLCMsg_SplitPlayerDisconnectImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Slot - { get => Accessor.GetInt32("slot"); set => Accessor.SetInt32("slot", value); } + public CCLCMsg_SplitPlayerDisconnectImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public int Slot + { get => Accessor.GetInt32("slot"); set => Accessor.SetInt32("slot", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_VoiceDataImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_VoiceDataImpl.cs index 91224678d..4f52395f2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_VoiceDataImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCLCMsg_VoiceDataImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCLCMsg_VoiceDataImpl : NetMessage, CCLCMsg_VoiceData { - public CCLCMsg_VoiceDataImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public CMsgVoiceAudio Audio - { get => new CMsgVoiceAudioImpl(NativeNetMessages.GetNestedMessage(Address, "audio"), false); } - - - public ulong Xuid - { get => Accessor.GetUInt64("xuid"); set => Accessor.SetUInt64("xuid", value); } - - - public uint Tick - { get => Accessor.GetUInt32("tick"); set => Accessor.SetUInt32("tick", value); } - -} + public CCLCMsg_VoiceDataImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public CMsgVoiceAudio Audio + { get => new CMsgVoiceAudioImpl(NativeNetMessages.GetNestedMessage(Address, "audio"), false); } + public ulong Xuid + { get => Accessor.GetUInt64("xuid"); set => Accessor.SetUInt64("xuid", value); } + public uint Tick + { get => Accessor.GetUInt32("tick"); set => Accessor.SetUInt32("tick", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSPredictionEvent_AddAimPunchImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSPredictionEvent_AddAimPunchImpl.cs index e113a3e4e..1324b3e47 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSPredictionEvent_AddAimPunchImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSPredictionEvent_AddAimPunchImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSPredictionEvent_AddAimPunchImpl : TypedProtobuf, CCSPredictionEvent_AddAimPunch { - public CCSPredictionEvent_AddAimPunchImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public QAngle PunchAngle - { get => Accessor.GetQAngle("punch_angle"); set => Accessor.SetQAngle("punch_angle", value); } - - - public uint WhenTick - { get => Accessor.GetUInt32("when_tick"); set => Accessor.SetUInt32("when_tick", value); } - - - public float WhenTickFrac - { get => Accessor.GetFloat("when_tick_frac"); set => Accessor.SetFloat("when_tick_frac", value); } - -} + public CCSPredictionEvent_AddAimPunchImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public QAngle PunchAngle + { get => Accessor.GetQAngle("punch_angle"); set => Accessor.SetQAngle("punch_angle", value); } + public uint WhenTick + { get => Accessor.GetUInt32("when_tick"); set => Accessor.SetUInt32("when_tick", value); } + public float WhenTickFrac + { get => Accessor.GetFloat("when_tick_frac"); set => Accessor.SetFloat("when_tick_frac", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSPredictionEvent_DamageTagImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSPredictionEvent_DamageTagImpl.cs index 97352b827..1c34e7180 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSPredictionEvent_DamageTagImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSPredictionEvent_DamageTagImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSPredictionEvent_DamageTagImpl : TypedProtobuf, CCSPredictionEvent_DamageTag { - public CCSPredictionEvent_DamageTagImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public float FlinchModSmall - { get => Accessor.GetFloat("flinch_mod_small"); set => Accessor.SetFloat("flinch_mod_small", value); } - - - public float FlinchModLarge - { get => Accessor.GetFloat("flinch_mod_large"); set => Accessor.SetFloat("flinch_mod_large", value); } - - - public float FriendlyFireDamageReductionRatio - { get => Accessor.GetFloat("friendly_fire_damage_reduction_ratio"); set => Accessor.SetFloat("friendly_fire_damage_reduction_ratio", value); } - -} + public CCSPredictionEvent_DamageTagImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public float FlinchModSmall + { get => Accessor.GetFloat("flinch_mod_small"); set => Accessor.SetFloat("flinch_mod_small", value); } + public float FlinchModLarge + { get => Accessor.GetFloat("flinch_mod_large"); set => Accessor.SetFloat("flinch_mod_large", value); } + public float FriendlyFireDamageReductionRatio + { get => Accessor.GetFloat("friendly_fire_damage_reduction_ratio"); set => Accessor.SetFloat("friendly_fire_damage_reduction_ratio", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsgPreMatchSayTextImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsgPreMatchSayTextImpl.cs index f07806562..6bb853037 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsgPreMatchSayTextImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsgPreMatchSayTextImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsgPreMatchSayTextImpl : TypedProtobuf, CCSUsrMsgPreMatchSayText { - public CCSUsrMsgPreMatchSayTextImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint AccountId - { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } - - - public string Text - { get => Accessor.GetString("text"); set => Accessor.SetString("text", value); } - - - public bool AllChat - { get => Accessor.GetBool("all_chat"); set => Accessor.SetBool("all_chat", value); } - -} + public CCSUsrMsgPreMatchSayTextImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint AccountId + { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } + public string Text + { get => Accessor.GetString("text"); set => Accessor.SetString("text", value); } + public bool AllChat + { get => Accessor.GetBool("all_chat"); set => Accessor.SetBool("all_chat", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_AchievementEventImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_AchievementEventImpl.cs index def55b51b..40d71a70f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_AchievementEventImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_AchievementEventImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_AchievementEventImpl : NetMessage, CCSUsrMsg_AchievementEvent { - public CCSUsrMsg_AchievementEventImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Achievement - { get => Accessor.GetInt32("achievement"); set => Accessor.SetInt32("achievement", value); } - - - public int Count - { get => Accessor.GetInt32("count"); set => Accessor.SetInt32("count", value); } - - - public int UserId - { get => Accessor.GetInt32("user_id"); set => Accessor.SetInt32("user_id", value); } - -} + public CCSUsrMsg_AchievementEventImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Achievement + { get => Accessor.GetInt32("achievement"); set => Accessor.SetInt32("achievement", value); } + public int Count + { get => Accessor.GetInt32("count"); set => Accessor.SetInt32("count", value); } + public int UserId + { get => Accessor.GetInt32("user_id"); set => Accessor.SetInt32("user_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_AdjustMoneyImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_AdjustMoneyImpl.cs index 2d62485ea..82bf4781e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_AdjustMoneyImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_AdjustMoneyImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_AdjustMoneyImpl : NetMessage, CCSUsrMsg_AdjustMoney { - public CCSUsrMsg_AdjustMoneyImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Amount - { get => Accessor.GetInt32("amount"); set => Accessor.SetInt32("amount", value); } + public CCSUsrMsg_AdjustMoneyImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public int Amount + { get => Accessor.GetInt32("amount"); set => Accessor.SetInt32("amount", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_AmmoDeniedImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_AmmoDeniedImpl.cs index f46a0fe89..799d2836d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_AmmoDeniedImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_AmmoDeniedImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_AmmoDeniedImpl : NetMessage, CCSUsrMsg_AmmoDenied { - public CCSUsrMsg_AmmoDeniedImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Ammoidx - { get => Accessor.GetInt32("ammoidx"); set => Accessor.SetInt32("ammoidx", value); } + public CCSUsrMsg_AmmoDeniedImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public int Ammoidx + { get => Accessor.GetInt32("ammoidx"); set => Accessor.SetInt32("ammoidx", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_BarTimeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_BarTimeImpl.cs index e7a19b464..cd6564dbf 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_BarTimeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_BarTimeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_BarTimeImpl : NetMessage, CCSUsrMsg_BarTime { - public CCSUsrMsg_BarTimeImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public string Time - { get => Accessor.GetString("time"); set => Accessor.SetString("time", value); } + public CCSUsrMsg_BarTimeImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public string Time + { get => Accessor.GetString("time"); set => Accessor.SetString("time", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_CallVoteFailedImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_CallVoteFailedImpl.cs index 5ecc0fcac..588452875 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_CallVoteFailedImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_CallVoteFailedImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_CallVoteFailedImpl : NetMessage, CCSUsrMsg_CallVoteFailed { - public CCSUsrMsg_CallVoteFailedImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Reason - { get => Accessor.GetInt32("reason"); set => Accessor.SetInt32("reason", value); } - - - public int Time - { get => Accessor.GetInt32("time"); set => Accessor.SetInt32("time", value); } - -} + public CCSUsrMsg_CallVoteFailedImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Reason + { get => Accessor.GetInt32("reason"); set => Accessor.SetInt32("reason", value); } + public int Time + { get => Accessor.GetInt32("time"); set => Accessor.SetInt32("time", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ClientInfoImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ClientInfoImpl.cs index d77501cf1..38d36811e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ClientInfoImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ClientInfoImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_ClientInfoImpl : NetMessage, CCSUsrMsg_ClientInfo { - public CCSUsrMsg_ClientInfoImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Dummy - { get => Accessor.GetInt32("dummy"); set => Accessor.SetInt32("dummy", value); } + public CCSUsrMsg_ClientInfoImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public int Dummy + { get => Accessor.GetInt32("dummy"); set => Accessor.SetInt32("dummy", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_CloseCaptionDirectImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_CloseCaptionDirectImpl.cs index 92e6319cb..45d795d6e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_CloseCaptionDirectImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_CloseCaptionDirectImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_CloseCaptionDirectImpl : NetMessage, CCSUsrMsg_CloseCaptionDirect { - public CCSUsrMsg_CloseCaptionDirectImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint Hash - { get => Accessor.GetUInt32("hash"); set => Accessor.SetUInt32("hash", value); } - - - public int Duration - { get => Accessor.GetInt32("duration"); set => Accessor.SetInt32("duration", value); } - - - public bool FromPlayer - { get => Accessor.GetBool("from_player"); set => Accessor.SetBool("from_player", value); } - -} + public CCSUsrMsg_CloseCaptionDirectImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public uint Hash + { get => Accessor.GetUInt32("hash"); set => Accessor.SetUInt32("hash", value); } + public int Duration + { get => Accessor.GetInt32("duration"); set => Accessor.SetInt32("duration", value); } + public bool FromPlayer + { get => Accessor.GetBool("from_player"); set => Accessor.SetBool("from_player", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_CloseCaptionImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_CloseCaptionImpl.cs index cfc1e1968..2b99177bc 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_CloseCaptionImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_CloseCaptionImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_CloseCaptionImpl : NetMessage, CCSUsrMsg_CloseCaption { - public CCSUsrMsg_CloseCaptionImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint Hash - { get => Accessor.GetUInt32("hash"); set => Accessor.SetUInt32("hash", value); } - - - public int Duration - { get => Accessor.GetInt32("duration"); set => Accessor.SetInt32("duration", value); } - - - public bool FromPlayer - { get => Accessor.GetBool("from_player"); set => Accessor.SetBool("from_player", value); } - - - public string Cctoken - { get => Accessor.GetString("cctoken"); set => Accessor.SetString("cctoken", value); } - -} + public CCSUsrMsg_CloseCaptionImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public uint Hash + { get => Accessor.GetUInt32("hash"); set => Accessor.SetUInt32("hash", value); } + public int Duration + { get => Accessor.GetInt32("duration"); set => Accessor.SetInt32("duration", value); } + public bool FromPlayer + { get => Accessor.GetBool("from_player"); set => Accessor.SetBool("from_player", value); } + public string Cctoken + { get => Accessor.GetString("cctoken"); set => Accessor.SetString("cctoken", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_CounterStrafeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_CounterStrafeImpl.cs index 073e7714f..8ab72e4cf 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_CounterStrafeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_CounterStrafeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_CounterStrafeImpl : NetMessage, CCSUsrMsg_CounterStrafe { - public CCSUsrMsg_CounterStrafeImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int PressToReleaseNs - { get => Accessor.GetInt32("press_to_release_ns"); set => Accessor.SetInt32("press_to_release_ns", value); } - - - public int TotalKeysDown - { get => Accessor.GetInt32("total_keys_down"); set => Accessor.SetInt32("total_keys_down", value); } - -} + public CCSUsrMsg_CounterStrafeImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int PressToReleaseNs + { get => Accessor.GetInt32("press_to_release_ns"); set => Accessor.SetInt32("press_to_release_ns", value); } + public int TotalKeysDown + { get => Accessor.GetInt32("total_keys_down"); set => Accessor.SetInt32("total_keys_down", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_CurrentRoundOddsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_CurrentRoundOddsImpl.cs index 48948e397..463e7cdf9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_CurrentRoundOddsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_CurrentRoundOddsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_CurrentRoundOddsImpl : NetMessage, CCSUsrMsg_CurrentRoundOdds { - public CCSUsrMsg_CurrentRoundOddsImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Odds - { get => Accessor.GetInt32("odds"); set => Accessor.SetInt32("odds", value); } + public CCSUsrMsg_CurrentRoundOddsImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public int Odds + { get => Accessor.GetInt32("odds"); set => Accessor.SetInt32("odds", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_CurrentTimescaleImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_CurrentTimescaleImpl.cs index 3320a722a..fb851ff6d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_CurrentTimescaleImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_CurrentTimescaleImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_CurrentTimescaleImpl : NetMessage, CCSUsrMsg_CurrentTimescale { - public CCSUsrMsg_CurrentTimescaleImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public float CurTimescale - { get => Accessor.GetFloat("cur_timescale"); set => Accessor.SetFloat("cur_timescale", value); } + public CCSUsrMsg_CurrentTimescaleImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public float CurTimescale + { get => Accessor.GetFloat("cur_timescale"); set => Accessor.SetFloat("cur_timescale", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_DamageImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_DamageImpl.cs index 1c813538b..4e738f5c0 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_DamageImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_DamageImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_DamageImpl : NetMessage, CCSUsrMsg_Damage { - public CCSUsrMsg_DamageImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Amount - { get => Accessor.GetInt32("amount"); set => Accessor.SetInt32("amount", value); } - - - public Vector InflictorWorldPos - { get => Accessor.GetVector("inflictor_world_pos"); set => Accessor.SetVector("inflictor_world_pos", value); } - - - public int VictimEntindex - { get => Accessor.GetInt32("victim_entindex"); set => Accessor.SetInt32("victim_entindex", value); } - -} + public CCSUsrMsg_DamageImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Amount + { get => Accessor.GetInt32("amount"); set => Accessor.SetInt32("amount", value); } + public Vector InflictorWorldPos + { get => Accessor.GetVector("inflictor_world_pos"); set => Accessor.SetVector("inflictor_world_pos", value); } + public int VictimEntindex + { get => Accessor.GetInt32("victim_entindex"); set => Accessor.SetInt32("victim_entindex", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_DamagePredictionImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_DamagePredictionImpl.cs index 35e552398..fd9ca4c97 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_DamagePredictionImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_DamagePredictionImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,40 +8,24 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_DamagePredictionImpl : NetMessage, CCSUsrMsg_DamagePrediction { - public CCSUsrMsg_DamagePredictionImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int CommandNum - { get => Accessor.GetInt32("command_num"); set => Accessor.SetInt32("command_num", value); } - - - public int PelletIdx - { get => Accessor.GetInt32("pellet_idx"); set => Accessor.SetInt32("pellet_idx", value); } - - - public int VictimSlot - { get => Accessor.GetInt32("victim_slot"); set => Accessor.SetInt32("victim_slot", value); } - - - public int VictimStartingHealth - { get => Accessor.GetInt32("victim_starting_health"); set => Accessor.SetInt32("victim_starting_health", value); } - - - public int VictimDamage - { get => Accessor.GetInt32("victim_damage"); set => Accessor.SetInt32("victim_damage", value); } - - - public Vector ShootPos - { get => Accessor.GetVector("shoot_pos"); set => Accessor.SetVector("shoot_pos", value); } - - - public QAngle ShootDir - { get => Accessor.GetQAngle("shoot_dir"); set => Accessor.SetQAngle("shoot_dir", value); } - - - public QAngle AimPunch - { get => Accessor.GetQAngle("aim_punch"); set => Accessor.SetQAngle("aim_punch", value); } - -} + public CCSUsrMsg_DamagePredictionImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int CommandNum + { get => Accessor.GetInt32("command_num"); set => Accessor.SetInt32("command_num", value); } + public int PelletIdx + { get => Accessor.GetInt32("pellet_idx"); set => Accessor.SetInt32("pellet_idx", value); } + public int VictimSlot + { get => Accessor.GetInt32("victim_slot"); set => Accessor.SetInt32("victim_slot", value); } + public int VictimStartingHealth + { get => Accessor.GetInt32("victim_starting_health"); set => Accessor.SetInt32("victim_starting_health", value); } + public int VictimDamage + { get => Accessor.GetInt32("victim_damage"); set => Accessor.SetInt32("victim_damage", value); } + public Vector ShootPos + { get => Accessor.GetVector("shoot_pos"); set => Accessor.SetVector("shoot_pos", value); } + public QAngle ShootDir + { get => Accessor.GetQAngle("shoot_dir"); set => Accessor.SetQAngle("shoot_dir", value); } + public QAngle AimPunch + { get => Accessor.GetQAngle("aim_punch"); set => Accessor.SetQAngle("aim_punch", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_DeepStatsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_DeepStatsImpl.cs index 852955ea9..144e02fb1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_DeepStatsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_DeepStatsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_DeepStatsImpl : NetMessage, CCSUsrMsg_DeepStats { - public CCSUsrMsg_DeepStatsImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public CMsgGCCStrike15_ClientDeepStats Stats - { get => new CMsgGCCStrike15_ClientDeepStatsImpl(NativeNetMessages.GetNestedMessage(Address, "stats"), false); } + public CCSUsrMsg_DeepStatsImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public CMsgGCCStrike15_ClientDeepStats Stats + { get => new CMsgGCCStrike15_ClientDeepStatsImpl(NativeNetMessages.GetNestedMessage(Address, "stats"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_DesiredTimescaleImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_DesiredTimescaleImpl.cs index e33d8f520..b3181f8df 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_DesiredTimescaleImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_DesiredTimescaleImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_DesiredTimescaleImpl : NetMessage, CCSUsrMsg_DesiredTimescale { - public CCSUsrMsg_DesiredTimescaleImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public float DesiredTimescale - { get => Accessor.GetFloat("desired_timescale"); set => Accessor.SetFloat("desired_timescale", value); } - - - public float DurationRealtimeSec - { get => Accessor.GetFloat("duration_realtime_sec"); set => Accessor.SetFloat("duration_realtime_sec", value); } - - - public int InterpolatorType - { get => Accessor.GetInt32("interpolator_type"); set => Accessor.SetInt32("interpolator_type", value); } - - - public float StartBlendTime - { get => Accessor.GetFloat("start_blend_time"); set => Accessor.SetFloat("start_blend_time", value); } - -} + public CCSUsrMsg_DesiredTimescaleImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public float DesiredTimescale + { get => Accessor.GetFloat("desired_timescale"); set => Accessor.SetFloat("desired_timescale", value); } + public float DurationRealtimeSec + { get => Accessor.GetFloat("duration_realtime_sec"); set => Accessor.SetFloat("duration_realtime_sec", value); } + public int InterpolatorType + { get => Accessor.GetInt32("interpolator_type"); set => Accessor.SetInt32("interpolator_type", value); } + public float StartBlendTime + { get => Accessor.GetFloat("start_blend_time"); set => Accessor.SetFloat("start_blend_time", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_DisconnectToLobbyImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_DisconnectToLobbyImpl.cs index 754b0a6e2..596859b25 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_DisconnectToLobbyImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_DisconnectToLobbyImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_DisconnectToLobbyImpl : NetMessage, CCSUsrMsg_DisconnectToLobby { - public CCSUsrMsg_DisconnectToLobbyImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Dummy - { get => Accessor.GetInt32("dummy"); set => Accessor.SetInt32("dummy", value); } + public CCSUsrMsg_DisconnectToLobbyImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public int Dummy + { get => Accessor.GetInt32("dummy"); set => Accessor.SetInt32("dummy", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_EndOfMatchAllPlayersDataImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_EndOfMatchAllPlayersDataImpl.cs index 0c36aaf7f..da7aa87d4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_EndOfMatchAllPlayersDataImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_EndOfMatchAllPlayersDataImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_EndOfMatchAllPlayersDataImpl : NetMessage, CCSUsrMsg_EndOfMatchAllPlayersData { - public CCSUsrMsg_EndOfMatchAllPlayersDataImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public IProtobufRepeatedFieldSubMessageType Allplayerdata - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "allplayerdata"); } - - - public int Scene - { get => Accessor.GetInt32("scene"); set => Accessor.SetInt32("scene", value); } - -} + public CCSUsrMsg_EndOfMatchAllPlayersDataImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public IProtobufRepeatedFieldSubMessageType Allplayerdata + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "allplayerdata"); } + public int Scene + { get => Accessor.GetInt32("scene"); set => Accessor.SetInt32("scene", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_EndOfMatchAllPlayersData_AccoladeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_EndOfMatchAllPlayersData_AccoladeImpl.cs index ecf518b13..28462daaa 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_EndOfMatchAllPlayersData_AccoladeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_EndOfMatchAllPlayersData_AccoladeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_EndOfMatchAllPlayersData_AccoladeImpl : TypedProtobuf, CCSUsrMsg_EndOfMatchAllPlayersData_Accolade { - public CCSUsrMsg_EndOfMatchAllPlayersData_AccoladeImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Eaccolade - { get => Accessor.GetInt32("eaccolade"); set => Accessor.SetInt32("eaccolade", value); } - - - public float Value - { get => Accessor.GetFloat("value"); set => Accessor.SetFloat("value", value); } - - - public int Position - { get => Accessor.GetInt32("position"); set => Accessor.SetInt32("position", value); } - -} + public CCSUsrMsg_EndOfMatchAllPlayersData_AccoladeImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Eaccolade + { get => Accessor.GetInt32("eaccolade"); set => Accessor.SetInt32("eaccolade", value); } + public float Value + { get => Accessor.GetFloat("value"); set => Accessor.SetFloat("value", value); } + public int Position + { get => Accessor.GetInt32("position"); set => Accessor.SetInt32("position", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_EndOfMatchAllPlayersData_PlayerDataImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_EndOfMatchAllPlayersData_PlayerDataImpl.cs index 53e1e5856..ae2cd4832 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_EndOfMatchAllPlayersData_PlayerDataImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_EndOfMatchAllPlayersData_PlayerDataImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,40 +8,24 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_EndOfMatchAllPlayersData_PlayerDataImpl : TypedProtobuf, CCSUsrMsg_EndOfMatchAllPlayersData_PlayerData { - public CCSUsrMsg_EndOfMatchAllPlayersData_PlayerDataImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Slot - { get => Accessor.GetInt32("slot"); set => Accessor.SetInt32("slot", value); } - - - public ulong Xuid - { get => Accessor.GetUInt64("xuid"); set => Accessor.SetUInt64("xuid", value); } - - - public string Name - { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } - - - public int Teamnumber - { get => Accessor.GetInt32("teamnumber"); set => Accessor.SetInt32("teamnumber", value); } - - - public CCSUsrMsg_EndOfMatchAllPlayersData_Accolade Nomination - { get => new CCSUsrMsg_EndOfMatchAllPlayersData_AccoladeImpl(NativeNetMessages.GetNestedMessage(Address, "nomination"), false); } - - - public IProtobufRepeatedFieldSubMessageType Items - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "items"); } - - - public int Playercolor - { get => Accessor.GetInt32("playercolor"); set => Accessor.SetInt32("playercolor", value); } - - - public bool Isbot - { get => Accessor.GetBool("isbot"); set => Accessor.SetBool("isbot", value); } - -} + public CCSUsrMsg_EndOfMatchAllPlayersData_PlayerDataImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Slot + { get => Accessor.GetInt32("slot"); set => Accessor.SetInt32("slot", value); } + public ulong Xuid + { get => Accessor.GetUInt64("xuid"); set => Accessor.SetUInt64("xuid", value); } + public string Name + { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } + public int Teamnumber + { get => Accessor.GetInt32("teamnumber"); set => Accessor.SetInt32("teamnumber", value); } + public CCSUsrMsg_EndOfMatchAllPlayersData_Accolade Nomination + { get => new CCSUsrMsg_EndOfMatchAllPlayersData_AccoladeImpl(NativeNetMessages.GetNestedMessage(Address, "nomination"), false); } + public IProtobufRepeatedFieldSubMessageType Items + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "items"); } + public int Playercolor + { get => Accessor.GetInt32("playercolor"); set => Accessor.SetInt32("playercolor", value); } + public bool Isbot + { get => Accessor.GetBool("isbot"); set => Accessor.SetBool("isbot", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_EntityOutlineHighlightImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_EntityOutlineHighlightImpl.cs index 289213238..57905db0d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_EntityOutlineHighlightImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_EntityOutlineHighlightImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_EntityOutlineHighlightImpl : NetMessage, CCSUsrMsg_EntityOutlineHighlight { - public CCSUsrMsg_EntityOutlineHighlightImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Entidx - { get => Accessor.GetInt32("entidx"); set => Accessor.SetInt32("entidx", value); } - - - public bool Removehighlight - { get => Accessor.GetBool("removehighlight"); set => Accessor.SetBool("removehighlight", value); } - -} + public CCSUsrMsg_EntityOutlineHighlightImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Entidx + { get => Accessor.GetInt32("entidx"); set => Accessor.SetInt32("entidx", value); } + public bool Removehighlight + { get => Accessor.GetBool("removehighlight"); set => Accessor.SetBool("removehighlight", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_FadeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_FadeImpl.cs index b053c70d0..d216c0394 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_FadeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_FadeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_FadeImpl : NetMessage, CCSUsrMsg_Fade { - public CCSUsrMsg_FadeImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Duration - { get => Accessor.GetInt32("duration"); set => Accessor.SetInt32("duration", value); } - - - public int HoldTime - { get => Accessor.GetInt32("hold_time"); set => Accessor.SetInt32("hold_time", value); } - - - public int Flags - { get => Accessor.GetInt32("flags"); set => Accessor.SetInt32("flags", value); } - - - public Color Clr - { get => Accessor.GetColor("clr"); set => Accessor.SetColor("clr", value); } - -} + public CCSUsrMsg_FadeImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Duration + { get => Accessor.GetInt32("duration"); set => Accessor.SetInt32("duration", value); } + public int HoldTime + { get => Accessor.GetInt32("hold_time"); set => Accessor.SetInt32("hold_time", value); } + public int Flags + { get => Accessor.GetInt32("flags"); set => Accessor.SetInt32("flags", value); } + public Color Clr + { get => Accessor.GetColor("clr"); set => Accessor.SetColor("clr", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_GameTitleImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_GameTitleImpl.cs index 9a2c613d3..722f8c5cc 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_GameTitleImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_GameTitleImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_GameTitleImpl : NetMessage, CCSUsrMsg_GameTitle { - public CCSUsrMsg_GameTitleImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Dummy - { get => Accessor.GetInt32("dummy"); set => Accessor.SetInt32("dummy", value); } + public CCSUsrMsg_GameTitleImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public int Dummy + { get => Accessor.GetInt32("dummy"); set => Accessor.SetInt32("dummy", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_GeigerImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_GeigerImpl.cs index b065b1d23..0de8fa19a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_GeigerImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_GeigerImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_GeigerImpl : NetMessage, CCSUsrMsg_Geiger { - public CCSUsrMsg_GeigerImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Range - { get => Accessor.GetInt32("range"); set => Accessor.SetInt32("range", value); } + public CCSUsrMsg_GeigerImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public int Range + { get => Accessor.GetInt32("range"); set => Accessor.SetInt32("range", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_HintTextImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_HintTextImpl.cs index 797dfbfb4..c0df8ece1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_HintTextImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_HintTextImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_HintTextImpl : NetMessage, CCSUsrMsg_HintText { - public CCSUsrMsg_HintTextImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public string Message - { get => Accessor.GetString("message"); set => Accessor.SetString("message", value); } + public CCSUsrMsg_HintTextImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public string Message + { get => Accessor.GetString("message"); set => Accessor.SetString("message", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_HudMsgImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_HudMsgImpl.cs index 6338a0f94..b81a55f80 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_HudMsgImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_HudMsgImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,48 +8,28 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_HudMsgImpl : NetMessage, CCSUsrMsg_HudMsg { - public CCSUsrMsg_HudMsgImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Channel - { get => Accessor.GetInt32("channel"); set => Accessor.SetInt32("channel", value); } - - - public Vector2D Pos - { get => Accessor.GetVector2D("pos"); set => Accessor.SetVector2D("pos", value); } - - - public Color Clr1 - { get => Accessor.GetColor("clr1"); set => Accessor.SetColor("clr1", value); } - - - public Color Clr2 - { get => Accessor.GetColor("clr2"); set => Accessor.SetColor("clr2", value); } - - - public int Effect - { get => Accessor.GetInt32("effect"); set => Accessor.SetInt32("effect", value); } - - - public float FadeInTime - { get => Accessor.GetFloat("fade_in_time"); set => Accessor.SetFloat("fade_in_time", value); } - - - public float FadeOutTime - { get => Accessor.GetFloat("fade_out_time"); set => Accessor.SetFloat("fade_out_time", value); } - - - public float HoldTime - { get => Accessor.GetFloat("hold_time"); set => Accessor.SetFloat("hold_time", value); } - - - public float FxTime - { get => Accessor.GetFloat("fx_time"); set => Accessor.SetFloat("fx_time", value); } - - - public string Text - { get => Accessor.GetString("text"); set => Accessor.SetString("text", value); } - -} + public CCSUsrMsg_HudMsgImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Channel + { get => Accessor.GetInt32("channel"); set => Accessor.SetInt32("channel", value); } + public Vector2D Pos + { get => Accessor.GetVector2D("pos"); set => Accessor.SetVector2D("pos", value); } + public Color Clr1 + { get => Accessor.GetColor("clr1"); set => Accessor.SetColor("clr1", value); } + public Color Clr2 + { get => Accessor.GetColor("clr2"); set => Accessor.SetColor("clr2", value); } + public int Effect + { get => Accessor.GetInt32("effect"); set => Accessor.SetInt32("effect", value); } + public float FadeInTime + { get => Accessor.GetFloat("fade_in_time"); set => Accessor.SetFloat("fade_in_time", value); } + public float FadeOutTime + { get => Accessor.GetFloat("fade_out_time"); set => Accessor.SetFloat("fade_out_time", value); } + public float HoldTime + { get => Accessor.GetFloat("hold_time"); set => Accessor.SetFloat("hold_time", value); } + public float FxTime + { get => Accessor.GetFloat("fx_time"); set => Accessor.SetFloat("fx_time", value); } + public string Text + { get => Accessor.GetString("text"); set => Accessor.SetString("text", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_HudTextImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_HudTextImpl.cs index db07d578a..096322615 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_HudTextImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_HudTextImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_HudTextImpl : NetMessage, CCSUsrMsg_HudText { - public CCSUsrMsg_HudTextImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public string Text - { get => Accessor.GetString("text"); set => Accessor.SetString("text", value); } + public CCSUsrMsg_HudTextImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public string Text + { get => Accessor.GetString("text"); set => Accessor.SetString("text", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ItemDropImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ItemDropImpl.cs index f22c48592..64b4d977e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ItemDropImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ItemDropImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -7,18 +6,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; -internal class CCSUsrMsg_ItemDropImpl : NetMessage, CCSUsrMsg_ItemDrop +internal class CCSUsrMsg_ItemDropImpl : TypedProtobuf, CCSUsrMsg_ItemDrop { - public CCSUsrMsg_ItemDropImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public long Itemid - { get => Accessor.GetInt64("itemid"); set => Accessor.SetInt64("itemid", value); } - - - public bool Death - { get => Accessor.GetBool("death"); set => Accessor.SetBool("death", value); } - -} + public CCSUsrMsg_ItemDropImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public long Itemid + { get => Accessor.GetInt64("itemid"); set => Accessor.SetInt64("itemid", value); } + public bool Death + { get => Accessor.GetBool("death"); set => Accessor.SetBool("death", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ItemPickupImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ItemPickupImpl.cs index 25c4f0cb9..829477e71 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ItemPickupImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ItemPickupImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_ItemPickupImpl : NetMessage, CCSUsrMsg_ItemPickup { - public CCSUsrMsg_ItemPickupImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public string Item - { get => Accessor.GetString("item"); set => Accessor.SetString("item", value); } + public CCSUsrMsg_ItemPickupImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public string Item + { get => Accessor.GetString("item"); set => Accessor.SetString("item", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_KeyHintTextImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_KeyHintTextImpl.cs index c64731999..66f9c48d2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_KeyHintTextImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_KeyHintTextImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_KeyHintTextImpl : NetMessage, CCSUsrMsg_KeyHintText { - public CCSUsrMsg_KeyHintTextImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public IProtobufRepeatedFieldValueType Messages - { get => new ProtobufRepeatedFieldValueType(Accessor, "messages"); } + public CCSUsrMsg_KeyHintTextImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public IProtobufRepeatedFieldValueType Messages + { get => new ProtobufRepeatedFieldValueType(Accessor, "messages"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_KillCamImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_KillCamImpl.cs index 36a0c7c7e..f27c77413 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_KillCamImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_KillCamImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_KillCamImpl : NetMessage, CCSUsrMsg_KillCam { - public CCSUsrMsg_KillCamImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int ObsMode - { get => Accessor.GetInt32("obs_mode"); set => Accessor.SetInt32("obs_mode", value); } - - - public int FirstTarget - { get => Accessor.GetInt32("first_target"); set => Accessor.SetInt32("first_target", value); } - - - public int SecondTarget - { get => Accessor.GetInt32("second_target"); set => Accessor.SetInt32("second_target", value); } - -} + public CCSUsrMsg_KillCamImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int ObsMode + { get => Accessor.GetInt32("obs_mode"); set => Accessor.SetInt32("obs_mode", value); } + public int FirstTarget + { get => Accessor.GetInt32("first_target"); set => Accessor.SetInt32("first_target", value); } + public int SecondTarget + { get => Accessor.GetInt32("second_target"); set => Accessor.SetInt32("second_target", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_MarkAchievementImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_MarkAchievementImpl.cs index 086f5daee..f233e4395 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_MarkAchievementImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_MarkAchievementImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_MarkAchievementImpl : NetMessage, CCSUsrMsg_MarkAchievement { - public CCSUsrMsg_MarkAchievementImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public string Achievement - { get => Accessor.GetString("achievement"); set => Accessor.SetString("achievement", value); } + public CCSUsrMsg_MarkAchievementImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public string Achievement + { get => Accessor.GetString("achievement"); set => Accessor.SetString("achievement", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_MatchEndConditionsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_MatchEndConditionsImpl.cs index 88f527fc8..519cb0c8d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_MatchEndConditionsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_MatchEndConditionsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_MatchEndConditionsImpl : NetMessage, CCSUsrMsg_MatchEndConditions { - public CCSUsrMsg_MatchEndConditionsImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Fraglimit - { get => Accessor.GetInt32("fraglimit"); set => Accessor.SetInt32("fraglimit", value); } - - - public int MpMaxrounds - { get => Accessor.GetInt32("mp_maxrounds"); set => Accessor.SetInt32("mp_maxrounds", value); } - - - public int MpWinlimit - { get => Accessor.GetInt32("mp_winlimit"); set => Accessor.SetInt32("mp_winlimit", value); } - - - public float MpTimelimit - { get => Accessor.GetFloat("mp_timelimit"); set => Accessor.SetFloat("mp_timelimit", value); } - -} + public CCSUsrMsg_MatchEndConditionsImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Fraglimit + { get => Accessor.GetInt32("fraglimit"); set => Accessor.SetInt32("fraglimit", value); } + public int MpMaxrounds + { get => Accessor.GetInt32("mp_maxrounds"); set => Accessor.SetInt32("mp_maxrounds", value); } + public int MpWinlimit + { get => Accessor.GetInt32("mp_winlimit"); set => Accessor.SetInt32("mp_winlimit", value); } + public float MpTimelimit + { get => Accessor.GetFloat("mp_timelimit"); set => Accessor.SetFloat("mp_timelimit", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_MatchStatsUpdateImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_MatchStatsUpdateImpl.cs index d544392f9..861e47126 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_MatchStatsUpdateImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_MatchStatsUpdateImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_MatchStatsUpdateImpl : NetMessage, CCSUsrMsg_MatchStatsUpdate { - public CCSUsrMsg_MatchStatsUpdateImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public string Update - { get => Accessor.GetString("update"); set => Accessor.SetString("update", value); } + public CCSUsrMsg_MatchStatsUpdateImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public string Update + { get => Accessor.GetString("update"); set => Accessor.SetString("update", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_PlayerDecalDigitalSignatureImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_PlayerDecalDigitalSignatureImpl.cs index 0f6231bcf..0e69e83f6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_PlayerDecalDigitalSignatureImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_PlayerDecalDigitalSignatureImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_PlayerDecalDigitalSignatureImpl : NetMessage, CCSUsrMsg_PlayerDecalDigitalSignature { - public CCSUsrMsg_PlayerDecalDigitalSignatureImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public PlayerDecalDigitalSignature Data - { get => new PlayerDecalDigitalSignatureImpl(NativeNetMessages.GetNestedMessage(Address, "data"), false); } + public CCSUsrMsg_PlayerDecalDigitalSignatureImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public PlayerDecalDigitalSignature Data + { get => new PlayerDecalDigitalSignatureImpl(NativeNetMessages.GetNestedMessage(Address, "data"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_PlayerStatsUpdateImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_PlayerStatsUpdateImpl.cs index 342c4b5a3..9adb9cac2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_PlayerStatsUpdateImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_PlayerStatsUpdateImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_PlayerStatsUpdateImpl : NetMessage, CCSUsrMsg_PlayerStatsUpdate { - public CCSUsrMsg_PlayerStatsUpdateImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Version - { get => Accessor.GetInt32("version"); set => Accessor.SetInt32("version", value); } - - - public IProtobufRepeatedFieldSubMessageType Stats - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "stats"); } - - - public uint Ehandle - { get => Accessor.GetUInt32("ehandle"); set => Accessor.SetUInt32("ehandle", value); } - - - public int Crc - { get => Accessor.GetInt32("crc"); set => Accessor.SetInt32("crc", value); } - -} + public CCSUsrMsg_PlayerStatsUpdateImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Version + { get => Accessor.GetInt32("version"); set => Accessor.SetInt32("version", value); } + public IProtobufRepeatedFieldSubMessageType Stats + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "stats"); } + public uint Ehandle + { get => Accessor.GetUInt32("ehandle"); set => Accessor.SetUInt32("ehandle", value); } + public int Crc + { get => Accessor.GetInt32("crc"); set => Accessor.SetInt32("crc", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_PlayerStatsUpdate_StatImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_PlayerStatsUpdate_StatImpl.cs index 9b11ad08d..e4798060e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_PlayerStatsUpdate_StatImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_PlayerStatsUpdate_StatImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_PlayerStatsUpdate_StatImpl : TypedProtobuf, CCSUsrMsg_PlayerStatsUpdate_Stat { - public CCSUsrMsg_PlayerStatsUpdate_StatImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Idx - { get => Accessor.GetInt32("idx"); set => Accessor.SetInt32("idx", value); } - - - public int Delta - { get => Accessor.GetInt32("delta"); set => Accessor.SetInt32("delta", value); } - -} + public CCSUsrMsg_PlayerStatsUpdate_StatImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Idx + { get => Accessor.GetInt32("idx"); set => Accessor.SetInt32("idx", value); } + public int Delta + { get => Accessor.GetInt32("delta"); set => Accessor.SetInt32("delta", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_PostRoundDamageReportImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_PostRoundDamageReportImpl.cs index 3addba7fe..46934323f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_PostRoundDamageReportImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_PostRoundDamageReportImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,36 +8,22 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_PostRoundDamageReportImpl : NetMessage, CCSUsrMsg_PostRoundDamageReport { - public CCSUsrMsg_PostRoundDamageReportImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public ulong OtherXuid - { get => Accessor.GetUInt64("other_xuid"); set => Accessor.SetUInt64("other_xuid", value); } - - - public int GivenKillType - { get => Accessor.GetInt32("given_kill_type"); set => Accessor.SetInt32("given_kill_type", value); } - - - public int GivenHealthRemoved - { get => Accessor.GetInt32("given_health_removed"); set => Accessor.SetInt32("given_health_removed", value); } - - - public int GivenNumHits - { get => Accessor.GetInt32("given_num_hits"); set => Accessor.SetInt32("given_num_hits", value); } - - - public int TakenKillType - { get => Accessor.GetInt32("taken_kill_type"); set => Accessor.SetInt32("taken_kill_type", value); } - - - public int TakenHealthRemoved - { get => Accessor.GetInt32("taken_health_removed"); set => Accessor.SetInt32("taken_health_removed", value); } - - - public int TakenNumHits - { get => Accessor.GetInt32("taken_num_hits"); set => Accessor.SetInt32("taken_num_hits", value); } - -} + public CCSUsrMsg_PostRoundDamageReportImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public ulong OtherXuid + { get => Accessor.GetUInt64("other_xuid"); set => Accessor.SetUInt64("other_xuid", value); } + public int GivenKillType + { get => Accessor.GetInt32("given_kill_type"); set => Accessor.SetInt32("given_kill_type", value); } + public int GivenHealthRemoved + { get => Accessor.GetInt32("given_health_removed"); set => Accessor.SetInt32("given_health_removed", value); } + public int GivenNumHits + { get => Accessor.GetInt32("given_num_hits"); set => Accessor.SetInt32("given_num_hits", value); } + public int TakenKillType + { get => Accessor.GetInt32("taken_kill_type"); set => Accessor.SetInt32("taken_kill_type", value); } + public int TakenHealthRemoved + { get => Accessor.GetInt32("taken_health_removed"); set => Accessor.SetInt32("taken_health_removed", value); } + public int TakenNumHits + { get => Accessor.GetInt32("taken_num_hits"); set => Accessor.SetInt32("taken_num_hits", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ProcessSpottedEntityUpdateImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ProcessSpottedEntityUpdateImpl.cs index 0eaa4f1c0..2038a9512 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ProcessSpottedEntityUpdateImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ProcessSpottedEntityUpdateImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_ProcessSpottedEntityUpdateImpl : NetMessage, CCSUsrMsg_ProcessSpottedEntityUpdate { - public CCSUsrMsg_ProcessSpottedEntityUpdateImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public bool NewUpdate - { get => Accessor.GetBool("new_update"); set => Accessor.SetBool("new_update", value); } - - - public IProtobufRepeatedFieldSubMessageType EntityUpdates - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "entity_updates"); } - -} + public CCSUsrMsg_ProcessSpottedEntityUpdateImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public bool NewUpdate + { get => Accessor.GetBool("new_update"); set => Accessor.SetBool("new_update", value); } + public IProtobufRepeatedFieldSubMessageType EntityUpdates + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "entity_updates"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ProcessSpottedEntityUpdate_SpottedEntityUpdateImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ProcessSpottedEntityUpdate_SpottedEntityUpdateImpl.cs index f88b8fa77..367cff4a1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ProcessSpottedEntityUpdate_SpottedEntityUpdateImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ProcessSpottedEntityUpdate_SpottedEntityUpdateImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,44 +8,26 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_ProcessSpottedEntityUpdate_SpottedEntityUpdateImpl : TypedProtobuf, CCSUsrMsg_ProcessSpottedEntityUpdate_SpottedEntityUpdate { - public CCSUsrMsg_ProcessSpottedEntityUpdate_SpottedEntityUpdateImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int EntityIdx - { get => Accessor.GetInt32("entity_idx"); set => Accessor.SetInt32("entity_idx", value); } - - - public int ClassId - { get => Accessor.GetInt32("class_id"); set => Accessor.SetInt32("class_id", value); } - - - public int OriginX - { get => Accessor.GetInt32("origin_x"); set => Accessor.SetInt32("origin_x", value); } - - - public int OriginY - { get => Accessor.GetInt32("origin_y"); set => Accessor.SetInt32("origin_y", value); } - - - public int OriginZ - { get => Accessor.GetInt32("origin_z"); set => Accessor.SetInt32("origin_z", value); } - - - public int AngleY - { get => Accessor.GetInt32("angle_y"); set => Accessor.SetInt32("angle_y", value); } - - - public bool Defuser - { get => Accessor.GetBool("defuser"); set => Accessor.SetBool("defuser", value); } - - - public bool PlayerHasDefuser - { get => Accessor.GetBool("player_has_defuser"); set => Accessor.SetBool("player_has_defuser", value); } - - - public bool PlayerHasC4 - { get => Accessor.GetBool("player_has_c4"); set => Accessor.SetBool("player_has_c4", value); } - -} + public CCSUsrMsg_ProcessSpottedEntityUpdate_SpottedEntityUpdateImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int EntityIdx + { get => Accessor.GetInt32("entity_idx"); set => Accessor.SetInt32("entity_idx", value); } + public int ClassId + { get => Accessor.GetInt32("class_id"); set => Accessor.SetInt32("class_id", value); } + public int OriginX + { get => Accessor.GetInt32("origin_x"); set => Accessor.SetInt32("origin_x", value); } + public int OriginY + { get => Accessor.GetInt32("origin_y"); set => Accessor.SetInt32("origin_y", value); } + public int OriginZ + { get => Accessor.GetInt32("origin_z"); set => Accessor.SetInt32("origin_z", value); } + public int AngleY + { get => Accessor.GetInt32("angle_y"); set => Accessor.SetInt32("angle_y", value); } + public bool Defuser + { get => Accessor.GetBool("defuser"); set => Accessor.SetBool("defuser", value); } + public bool PlayerHasDefuser + { get => Accessor.GetBool("player_has_defuser"); set => Accessor.SetBool("player_has_defuser", value); } + public bool PlayerHasC4 + { get => Accessor.GetBool("player_has_c4"); set => Accessor.SetBool("player_has_c4", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_QuestProgressImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_QuestProgressImpl.cs index 27faad415..29ddacf8e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_QuestProgressImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_QuestProgressImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_QuestProgressImpl : NetMessage, CCSUsrMsg_QuestProgress { - public CCSUsrMsg_QuestProgressImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint QuestId - { get => Accessor.GetUInt32("quest_id"); set => Accessor.SetUInt32("quest_id", value); } - - - public uint NormalPoints - { get => Accessor.GetUInt32("normal_points"); set => Accessor.SetUInt32("normal_points", value); } - - - public uint BonusPoints - { get => Accessor.GetUInt32("bonus_points"); set => Accessor.SetUInt32("bonus_points", value); } - - - public bool IsEventQuest - { get => Accessor.GetBool("is_event_quest"); set => Accessor.SetBool("is_event_quest", value); } - -} + public CCSUsrMsg_QuestProgressImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public uint QuestId + { get => Accessor.GetUInt32("quest_id"); set => Accessor.SetUInt32("quest_id", value); } + public uint NormalPoints + { get => Accessor.GetUInt32("normal_points"); set => Accessor.SetUInt32("normal_points", value); } + public uint BonusPoints + { get => Accessor.GetUInt32("bonus_points"); set => Accessor.SetUInt32("bonus_points", value); } + public bool IsEventQuest + { get => Accessor.GetBool("is_event_quest"); set => Accessor.SetBool("is_event_quest", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RadioTextImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RadioTextImpl.cs index 876a1caeb..671cd0951 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RadioTextImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RadioTextImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_RadioTextImpl : NetMessage, CCSUsrMsg_RadioText { - public CCSUsrMsg_RadioTextImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int MsgDst - { get => Accessor.GetInt32("msg_dst"); set => Accessor.SetInt32("msg_dst", value); } - - - public int Client - { get => Accessor.GetInt32("client"); set => Accessor.SetInt32("client", value); } - - - public string MsgName - { get => Accessor.GetString("msg_name"); set => Accessor.SetString("msg_name", value); } - - - public IProtobufRepeatedFieldValueType Params - { get => new ProtobufRepeatedFieldValueType(Accessor, "params"); } - -} + public CCSUsrMsg_RadioTextImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int MsgDst + { get => Accessor.GetInt32("msg_dst"); set => Accessor.SetInt32("msg_dst", value); } + public int Client + { get => Accessor.GetInt32("client"); set => Accessor.SetInt32("client", value); } + public string MsgName + { get => Accessor.GetString("msg_name"); set => Accessor.SetString("msg_name", value); } + public IProtobufRepeatedFieldValueType Params + { get => new ProtobufRepeatedFieldValueType(Accessor, "params"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RawAudioImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RawAudioImpl.cs index 728f256ae..db96e28b6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RawAudioImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RawAudioImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_RawAudioImpl : NetMessage, CCSUsrMsg_RawAudio { - public CCSUsrMsg_RawAudioImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Pitch - { get => Accessor.GetInt32("pitch"); set => Accessor.SetInt32("pitch", value); } - - - public int Entidx - { get => Accessor.GetInt32("entidx"); set => Accessor.SetInt32("entidx", value); } - - - public float Duration - { get => Accessor.GetFloat("duration"); set => Accessor.SetFloat("duration", value); } - - - public string VoiceFilename - { get => Accessor.GetString("voice_filename"); set => Accessor.SetString("voice_filename", value); } - -} + public CCSUsrMsg_RawAudioImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Pitch + { get => Accessor.GetInt32("pitch"); set => Accessor.SetInt32("pitch", value); } + public int Entidx + { get => Accessor.GetInt32("entidx"); set => Accessor.SetInt32("entidx", value); } + public float Duration + { get => Accessor.GetFloat("duration"); set => Accessor.SetFloat("duration", value); } + public string VoiceFilename + { get => Accessor.GetString("voice_filename"); set => Accessor.SetString("voice_filename", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RecurringMissionSchemaImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RecurringMissionSchemaImpl.cs index 0c3ed2fc0..3476ba399 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RecurringMissionSchemaImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RecurringMissionSchemaImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_RecurringMissionSchemaImpl : NetMessage, CCSUsrMsg_RecurringMissionSchema { - public CCSUsrMsg_RecurringMissionSchemaImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint Period - { get => Accessor.GetUInt32("period"); set => Accessor.SetUInt32("period", value); } - - - public byte[] MissionSchema - { get => Accessor.GetBytes("mission_schema"); set => Accessor.SetBytes("mission_schema", value); } - -} + public CCSUsrMsg_RecurringMissionSchemaImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public uint Period + { get => Accessor.GetUInt32("period"); set => Accessor.SetUInt32("period", value); } + public byte[] MissionSchema + { get => Accessor.GetBytes("mission_schema"); set => Accessor.SetBytes("mission_schema", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ReloadEffectImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ReloadEffectImpl.cs index 818aba00f..c24990df7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ReloadEffectImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ReloadEffectImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_ReloadEffectImpl : NetMessage, CCSUsrMsg_ReloadEffect { - public CCSUsrMsg_ReloadEffectImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Entidx - { get => Accessor.GetInt32("entidx"); set => Accessor.SetInt32("entidx", value); } - - - public int Actanim - { get => Accessor.GetInt32("actanim"); set => Accessor.SetInt32("actanim", value); } - - - public float OriginX - { get => Accessor.GetFloat("origin_x"); set => Accessor.SetFloat("origin_x", value); } - - - public float OriginY - { get => Accessor.GetFloat("origin_y"); set => Accessor.SetFloat("origin_y", value); } - - - public float OriginZ - { get => Accessor.GetFloat("origin_z"); set => Accessor.SetFloat("origin_z", value); } - -} + public CCSUsrMsg_ReloadEffectImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Entidx + { get => Accessor.GetInt32("entidx"); set => Accessor.SetInt32("entidx", value); } + public int Actanim + { get => Accessor.GetInt32("actanim"); set => Accessor.SetInt32("actanim", value); } + public float OriginX + { get => Accessor.GetFloat("origin_x"); set => Accessor.SetFloat("origin_x", value); } + public float OriginY + { get => Accessor.GetFloat("origin_y"); set => Accessor.SetFloat("origin_y", value); } + public float OriginZ + { get => Accessor.GetFloat("origin_z"); set => Accessor.SetFloat("origin_z", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ReportHitImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ReportHitImpl.cs index 6e6566855..9b712054e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ReportHitImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ReportHitImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_ReportHitImpl : NetMessage, CCSUsrMsg_ReportHit { - public CCSUsrMsg_ReportHitImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public float PosX - { get => Accessor.GetFloat("pos_x"); set => Accessor.SetFloat("pos_x", value); } - - - public float PosY - { get => Accessor.GetFloat("pos_y"); set => Accessor.SetFloat("pos_y", value); } - - - public float Timestamp - { get => Accessor.GetFloat("timestamp"); set => Accessor.SetFloat("timestamp", value); } - - - public float PosZ - { get => Accessor.GetFloat("pos_z"); set => Accessor.SetFloat("pos_z", value); } - -} + public CCSUsrMsg_ReportHitImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public float PosX + { get => Accessor.GetFloat("pos_x"); set => Accessor.SetFloat("pos_x", value); } + public float PosY + { get => Accessor.GetFloat("pos_y"); set => Accessor.SetFloat("pos_y", value); } + public float Timestamp + { get => Accessor.GetFloat("timestamp"); set => Accessor.SetFloat("timestamp", value); } + public float PosZ + { get => Accessor.GetFloat("pos_z"); set => Accessor.SetFloat("pos_z", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RequestStateImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RequestStateImpl.cs index 3abcb9af5..d6228f40c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RequestStateImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RequestStateImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_RequestStateImpl : NetMessage, CCSUsrMsg_RequestState { - public CCSUsrMsg_RequestStateImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Dummy - { get => Accessor.GetInt32("dummy"); set => Accessor.SetInt32("dummy", value); } + public CCSUsrMsg_RequestStateImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public int Dummy + { get => Accessor.GetInt32("dummy"); set => Accessor.SetInt32("dummy", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ResetHudImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ResetHudImpl.cs index 30b88a594..82d419718 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ResetHudImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ResetHudImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_ResetHudImpl : NetMessage, CCSUsrMsg_ResetHud { - public CCSUsrMsg_ResetHudImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public bool Reset - { get => Accessor.GetBool("reset"); set => Accessor.SetBool("reset", value); } + public CCSUsrMsg_ResetHudImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public bool Reset + { get => Accessor.GetBool("reset"); set => Accessor.SetBool("reset", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RoundBackupFilenamesImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RoundBackupFilenamesImpl.cs index f1b79e209..c5d18eee1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RoundBackupFilenamesImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RoundBackupFilenamesImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_RoundBackupFilenamesImpl : NetMessage, CCSUsrMsg_RoundBackupFilenames { - public CCSUsrMsg_RoundBackupFilenamesImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Count - { get => Accessor.GetInt32("count"); set => Accessor.SetInt32("count", value); } - - - public int Index - { get => Accessor.GetInt32("index"); set => Accessor.SetInt32("index", value); } - - - public string Filename - { get => Accessor.GetString("filename"); set => Accessor.SetString("filename", value); } - - - public string Nicename - { get => Accessor.GetString("nicename"); set => Accessor.SetString("nicename", value); } - -} + public CCSUsrMsg_RoundBackupFilenamesImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Count + { get => Accessor.GetInt32("count"); set => Accessor.SetInt32("count", value); } + public int Index + { get => Accessor.GetInt32("index"); set => Accessor.SetInt32("index", value); } + public string Filename + { get => Accessor.GetString("filename"); set => Accessor.SetString("filename", value); } + public string Nicename + { get => Accessor.GetString("nicename"); set => Accessor.SetString("nicename", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RoundEndReportDataImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RoundEndReportDataImpl.cs index c83d04a03..7c35c9d97 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RoundEndReportDataImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RoundEndReportDataImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_RoundEndReportDataImpl : NetMessage, CCSUsrMsg_RoundEndReportData { - public CCSUsrMsg_RoundEndReportDataImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public CCSUsrMsg_RoundEndReportData_InitialConditions InitConditions - { get => new CCSUsrMsg_RoundEndReportData_InitialConditionsImpl(NativeNetMessages.GetNestedMessage(Address, "init_conditions"), false); } - - - public IProtobufRepeatedFieldSubMessageType AllRerEventData - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "all_rer_event_data"); } - -} + public CCSUsrMsg_RoundEndReportDataImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public CCSUsrMsg_RoundEndReportData_InitialConditions InitConditions + { get => new CCSUsrMsg_RoundEndReportData_InitialConditionsImpl(NativeNetMessages.GetNestedMessage(Address, "init_conditions"), false); } + public IProtobufRepeatedFieldSubMessageType AllRerEventData + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "all_rer_event_data"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RoundEndReportData_InitialConditionsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RoundEndReportData_InitialConditionsImpl.cs index 13f27fa81..5e544b6b1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RoundEndReportData_InitialConditionsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RoundEndReportData_InitialConditionsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_RoundEndReportData_InitialConditionsImpl : TypedProtobuf, CCSUsrMsg_RoundEndReportData_InitialConditions { - public CCSUsrMsg_RoundEndReportData_InitialConditionsImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int CtEquipValue - { get => Accessor.GetInt32("ct_equip_value"); set => Accessor.SetInt32("ct_equip_value", value); } - - - public int TEquipValue - { get => Accessor.GetInt32("t_equip_value"); set => Accessor.SetInt32("t_equip_value", value); } - - - public int TerroristOdds - { get => Accessor.GetInt32("terrorist_odds"); set => Accessor.SetInt32("terrorist_odds", value); } - -} + public CCSUsrMsg_RoundEndReportData_InitialConditionsImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int CtEquipValue + { get => Accessor.GetInt32("ct_equip_value"); set => Accessor.SetInt32("ct_equip_value", value); } + public int TEquipValue + { get => Accessor.GetInt32("t_equip_value"); set => Accessor.SetInt32("t_equip_value", value); } + public int TerroristOdds + { get => Accessor.GetInt32("terrorist_odds"); set => Accessor.SetInt32("terrorist_odds", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RoundEndReportData_RerEventImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RoundEndReportData_RerEventImpl.cs index 8fbd8bcbc..26b744b58 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RoundEndReportData_RerEventImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RoundEndReportData_RerEventImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,36 +8,22 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_RoundEndReportData_RerEventImpl : TypedProtobuf, CCSUsrMsg_RoundEndReportData_RerEvent { - public CCSUsrMsg_RoundEndReportData_RerEventImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public float Timestamp - { get => Accessor.GetFloat("timestamp"); set => Accessor.SetFloat("timestamp", value); } - - - public int TerroristOdds - { get => Accessor.GetInt32("terrorist_odds"); set => Accessor.SetInt32("terrorist_odds", value); } - - - public int CtAlive - { get => Accessor.GetInt32("ct_alive"); set => Accessor.SetInt32("ct_alive", value); } - - - public int TAlive - { get => Accessor.GetInt32("t_alive"); set => Accessor.SetInt32("t_alive", value); } - - - public CCSUsrMsg_RoundEndReportData_RerEvent_Victim VictimData - { get => new CCSUsrMsg_RoundEndReportData_RerEvent_VictimImpl(NativeNetMessages.GetNestedMessage(Address, "victim_data"), false); } - - - public CCSUsrMsg_RoundEndReportData_RerEvent_Objective ObjectiveData - { get => new CCSUsrMsg_RoundEndReportData_RerEvent_ObjectiveImpl(NativeNetMessages.GetNestedMessage(Address, "objective_data"), false); } - - - public IProtobufRepeatedFieldSubMessageType AllDamageData - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "all_damage_data"); } - -} + public CCSUsrMsg_RoundEndReportData_RerEventImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public float Timestamp + { get => Accessor.GetFloat("timestamp"); set => Accessor.SetFloat("timestamp", value); } + public int TerroristOdds + { get => Accessor.GetInt32("terrorist_odds"); set => Accessor.SetInt32("terrorist_odds", value); } + public int CtAlive + { get => Accessor.GetInt32("ct_alive"); set => Accessor.SetInt32("ct_alive", value); } + public int TAlive + { get => Accessor.GetInt32("t_alive"); set => Accessor.SetInt32("t_alive", value); } + public CCSUsrMsg_RoundEndReportData_RerEvent_Victim VictimData + { get => new CCSUsrMsg_RoundEndReportData_RerEvent_VictimImpl(NativeNetMessages.GetNestedMessage(Address, "victim_data"), false); } + public CCSUsrMsg_RoundEndReportData_RerEvent_Objective ObjectiveData + { get => new CCSUsrMsg_RoundEndReportData_RerEvent_ObjectiveImpl(NativeNetMessages.GetNestedMessage(Address, "objective_data"), false); } + public IProtobufRepeatedFieldSubMessageType AllDamageData + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "all_damage_data"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RoundEndReportData_RerEvent_DamageImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RoundEndReportData_RerEvent_DamageImpl.cs index ac74eb21c..4dc21f062 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RoundEndReportData_RerEvent_DamageImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RoundEndReportData_RerEvent_DamageImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,32 +8,20 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_RoundEndReportData_RerEvent_DamageImpl : TypedProtobuf, CCSUsrMsg_RoundEndReportData_RerEvent_Damage { - public CCSUsrMsg_RoundEndReportData_RerEvent_DamageImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int OtherPlayerslot - { get => Accessor.GetInt32("other_playerslot"); set => Accessor.SetInt32("other_playerslot", value); } - - - public ulong OtherXuid - { get => Accessor.GetUInt64("other_xuid"); set => Accessor.SetUInt64("other_xuid", value); } - - - public int HealthRemoved - { get => Accessor.GetInt32("health_removed"); set => Accessor.SetInt32("health_removed", value); } - - - public int NumHits - { get => Accessor.GetInt32("num_hits"); set => Accessor.SetInt32("num_hits", value); } - - - public int ReturnHealthRemoved - { get => Accessor.GetInt32("return_health_removed"); set => Accessor.SetInt32("return_health_removed", value); } - - - public int ReturnNumHits - { get => Accessor.GetInt32("return_num_hits"); set => Accessor.SetInt32("return_num_hits", value); } - -} + public CCSUsrMsg_RoundEndReportData_RerEvent_DamageImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int OtherPlayerslot + { get => Accessor.GetInt32("other_playerslot"); set => Accessor.SetInt32("other_playerslot", value); } + public ulong OtherXuid + { get => Accessor.GetUInt64("other_xuid"); set => Accessor.SetUInt64("other_xuid", value); } + public int HealthRemoved + { get => Accessor.GetInt32("health_removed"); set => Accessor.SetInt32("health_removed", value); } + public int NumHits + { get => Accessor.GetInt32("num_hits"); set => Accessor.SetInt32("num_hits", value); } + public int ReturnHealthRemoved + { get => Accessor.GetInt32("return_health_removed"); set => Accessor.SetInt32("return_health_removed", value); } + public int ReturnNumHits + { get => Accessor.GetInt32("return_num_hits"); set => Accessor.SetInt32("return_num_hits", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RoundEndReportData_RerEvent_ObjectiveImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RoundEndReportData_RerEvent_ObjectiveImpl.cs index 4c2e83149..e913502e8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RoundEndReportData_RerEvent_ObjectiveImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RoundEndReportData_RerEvent_ObjectiveImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_RoundEndReportData_RerEvent_ObjectiveImpl : TypedProtobuf, CCSUsrMsg_RoundEndReportData_RerEvent_Objective { - public CCSUsrMsg_RoundEndReportData_RerEvent_ObjectiveImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Type - { get => Accessor.GetInt32("type"); set => Accessor.SetInt32("type", value); } + public CCSUsrMsg_RoundEndReportData_RerEvent_ObjectiveImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public int Type + { get => Accessor.GetInt32("type"); set => Accessor.SetInt32("type", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RoundEndReportData_RerEvent_VictimImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RoundEndReportData_RerEvent_VictimImpl.cs index 10d468b87..e8ad7a40e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RoundEndReportData_RerEvent_VictimImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RoundEndReportData_RerEvent_VictimImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,32 +8,20 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_RoundEndReportData_RerEvent_VictimImpl : TypedProtobuf, CCSUsrMsg_RoundEndReportData_RerEvent_Victim { - public CCSUsrMsg_RoundEndReportData_RerEvent_VictimImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int TeamNumber - { get => Accessor.GetInt32("team_number"); set => Accessor.SetInt32("team_number", value); } - - - public int Playerslot - { get => Accessor.GetInt32("playerslot"); set => Accessor.SetInt32("playerslot", value); } - - - public ulong Xuid - { get => Accessor.GetUInt64("xuid"); set => Accessor.SetUInt64("xuid", value); } - - - public int Color - { get => Accessor.GetInt32("color"); set => Accessor.SetInt32("color", value); } - - - public bool IsBot - { get => Accessor.GetBool("is_bot"); set => Accessor.SetBool("is_bot", value); } - - - public bool IsDead - { get => Accessor.GetBool("is_dead"); set => Accessor.SetBool("is_dead", value); } - -} + public CCSUsrMsg_RoundEndReportData_RerEvent_VictimImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int TeamNumber + { get => Accessor.GetInt32("team_number"); set => Accessor.SetInt32("team_number", value); } + public int Playerslot + { get => Accessor.GetInt32("playerslot"); set => Accessor.SetInt32("playerslot", value); } + public ulong Xuid + { get => Accessor.GetUInt64("xuid"); set => Accessor.SetUInt64("xuid", value); } + public int Color + { get => Accessor.GetInt32("color"); set => Accessor.SetInt32("color", value); } + public bool IsBot + { get => Accessor.GetBool("is_bot"); set => Accessor.SetBool("is_bot", value); } + public bool IsDead + { get => Accessor.GetBool("is_dead"); set => Accessor.SetBool("is_dead", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RumbleImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RumbleImpl.cs index d0a041413..9c5003d4c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RumbleImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_RumbleImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_RumbleImpl : NetMessage, CCSUsrMsg_Rumble { - public CCSUsrMsg_RumbleImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Index - { get => Accessor.GetInt32("index"); set => Accessor.SetInt32("index", value); } - - - public int Data - { get => Accessor.GetInt32("data"); set => Accessor.SetInt32("data", value); } - - - public int Flags - { get => Accessor.GetInt32("flags"); set => Accessor.SetInt32("flags", value); } - -} + public CCSUsrMsg_RumbleImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Index + { get => Accessor.GetInt32("index"); set => Accessor.SetInt32("index", value); } + public int Data + { get => Accessor.GetInt32("data"); set => Accessor.SetInt32("data", value); } + public int Flags + { get => Accessor.GetInt32("flags"); set => Accessor.SetInt32("flags", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SSUIImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SSUIImpl.cs index 17d46c821..a8965cc0b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SSUIImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SSUIImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_SSUIImpl : NetMessage, CCSUsrMsg_SSUI { - public CCSUsrMsg_SSUIImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public bool Show - { get => Accessor.GetBool("show"); set => Accessor.SetBool("show", value); } - - - public float StartTime - { get => Accessor.GetFloat("start_time"); set => Accessor.SetFloat("start_time", value); } - - - public float EndTime - { get => Accessor.GetFloat("end_time"); set => Accessor.SetFloat("end_time", value); } - -} + public CCSUsrMsg_SSUIImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public bool Show + { get => Accessor.GetBool("show"); set => Accessor.SetBool("show", value); } + public float StartTime + { get => Accessor.GetFloat("start_time"); set => Accessor.SetFloat("start_time", value); } + public float EndTime + { get => Accessor.GetFloat("end_time"); set => Accessor.SetFloat("end_time", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ScoreLeaderboardDataImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ScoreLeaderboardDataImpl.cs index 3a1f6d244..4a23a2e97 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ScoreLeaderboardDataImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ScoreLeaderboardDataImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_ScoreLeaderboardDataImpl : NetMessage, CCSUsrMsg_ScoreLeaderboardData { - public CCSUsrMsg_ScoreLeaderboardDataImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public ScoreLeaderboardData Data - { get => new ScoreLeaderboardDataImpl(NativeNetMessages.GetNestedMessage(Address, "data"), false); } + public CCSUsrMsg_ScoreLeaderboardDataImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public ScoreLeaderboardData Data + { get => new ScoreLeaderboardDataImpl(NativeNetMessages.GetNestedMessage(Address, "data"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SendAudioImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SendAudioImpl.cs index 59e6b74a2..bea5289ab 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SendAudioImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SendAudioImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_SendAudioImpl : NetMessage, CCSUsrMsg_SendAudio { - public CCSUsrMsg_SendAudioImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public string RadioSound - { get => Accessor.GetString("radio_sound"); set => Accessor.SetString("radio_sound", value); } + public CCSUsrMsg_SendAudioImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public string RadioSound + { get => Accessor.GetString("radio_sound"); set => Accessor.SetString("radio_sound", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SendLastKillerDamageToClientImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SendLastKillerDamageToClientImpl.cs index f63455183..24fb26cec 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SendLastKillerDamageToClientImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SendLastKillerDamageToClientImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,32 +8,20 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_SendLastKillerDamageToClientImpl : NetMessage, CCSUsrMsg_SendLastKillerDamageToClient { - public CCSUsrMsg_SendLastKillerDamageToClientImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int NumHitsGiven - { get => Accessor.GetInt32("num_hits_given"); set => Accessor.SetInt32("num_hits_given", value); } - - - public int DamageGiven - { get => Accessor.GetInt32("damage_given"); set => Accessor.SetInt32("damage_given", value); } - - - public int NumHitsTaken - { get => Accessor.GetInt32("num_hits_taken"); set => Accessor.SetInt32("num_hits_taken", value); } - - - public int DamageTaken - { get => Accessor.GetInt32("damage_taken"); set => Accessor.SetInt32("damage_taken", value); } - - - public int ActualDamageGiven - { get => Accessor.GetInt32("actual_damage_given"); set => Accessor.SetInt32("actual_damage_given", value); } - - - public int ActualDamageTaken - { get => Accessor.GetInt32("actual_damage_taken"); set => Accessor.SetInt32("actual_damage_taken", value); } - -} + public CCSUsrMsg_SendLastKillerDamageToClientImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int NumHitsGiven + { get => Accessor.GetInt32("num_hits_given"); set => Accessor.SetInt32("num_hits_given", value); } + public int DamageGiven + { get => Accessor.GetInt32("damage_given"); set => Accessor.SetInt32("damage_given", value); } + public int NumHitsTaken + { get => Accessor.GetInt32("num_hits_taken"); set => Accessor.SetInt32("num_hits_taken", value); } + public int DamageTaken + { get => Accessor.GetInt32("damage_taken"); set => Accessor.SetInt32("damage_taken", value); } + public int ActualDamageGiven + { get => Accessor.GetInt32("actual_damage_given"); set => Accessor.SetInt32("actual_damage_given", value); } + public int ActualDamageTaken + { get => Accessor.GetInt32("actual_damage_taken"); set => Accessor.SetInt32("actual_damage_taken", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SendPlayerItemDropsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SendPlayerItemDropsImpl.cs index c82c1e398..b8a01a27d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SendPlayerItemDropsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SendPlayerItemDropsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_SendPlayerItemDropsImpl : NetMessage, CCSUsrMsg_SendPlayerItemDrops { - public CCSUsrMsg_SendPlayerItemDropsImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public IProtobufRepeatedFieldSubMessageType EntityUpdates - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "entity_updates"); } + public CCSUsrMsg_SendPlayerItemDropsImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public IProtobufRepeatedFieldSubMessageType EntityUpdates + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "entity_updates"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SendPlayerItemFoundImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SendPlayerItemFoundImpl.cs index 170426519..30ae5b3c7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SendPlayerItemFoundImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SendPlayerItemFoundImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_SendPlayerItemFoundImpl : NetMessage, CCSUsrMsg_SendPlayerItemFound { - public CCSUsrMsg_SendPlayerItemFoundImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public CEconItemPreviewDataBlock Iteminfo - { get => new CEconItemPreviewDataBlockImpl(NativeNetMessages.GetNestedMessage(Address, "iteminfo"), false); } - - - public int Playerslot - { get => Accessor.GetInt32("playerslot"); set => Accessor.SetInt32("playerslot", value); } - -} + public CCSUsrMsg_SendPlayerItemFoundImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public CEconItemPreviewDataBlock Iteminfo + { get => new CEconItemPreviewDataBlockImpl(NativeNetMessages.GetNestedMessage(Address, "iteminfo"), false); } + public int Playerslot + { get => Accessor.GetInt32("playerslot"); set => Accessor.SetInt32("playerslot", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SendPlayerLoadoutImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SendPlayerLoadoutImpl.cs index ef485f70e..e4aab881d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SendPlayerLoadoutImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SendPlayerLoadoutImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_SendPlayerLoadoutImpl : NetMessage, CCSUsrMsg_SendPlayerLoadout { - public CCSUsrMsg_SendPlayerLoadoutImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public IProtobufRepeatedFieldSubMessageType Loadout - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "loadout"); } - - - public int Playerslot - { get => Accessor.GetInt32("playerslot"); set => Accessor.SetInt32("playerslot", value); } - -} + public CCSUsrMsg_SendPlayerLoadoutImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public IProtobufRepeatedFieldSubMessageType Loadout + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "loadout"); } + public int Playerslot + { get => Accessor.GetInt32("playerslot"); set => Accessor.SetInt32("playerslot", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SendPlayerLoadout_LoadoutItemImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SendPlayerLoadout_LoadoutItemImpl.cs index 23ef5e5b4..3f3a4d576 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SendPlayerLoadout_LoadoutItemImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SendPlayerLoadout_LoadoutItemImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_SendPlayerLoadout_LoadoutItemImpl : TypedProtobuf, CCSUsrMsg_SendPlayerLoadout_LoadoutItem { - public CCSUsrMsg_SendPlayerLoadout_LoadoutItemImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public CEconItemPreviewDataBlock EconItem - { get => new CEconItemPreviewDataBlockImpl(NativeNetMessages.GetNestedMessage(Address, "econ_item"), false); } - - - public int Team - { get => Accessor.GetInt32("team"); set => Accessor.SetInt32("team", value); } - - - public int Slot - { get => Accessor.GetInt32("slot"); set => Accessor.SetInt32("slot", value); } - -} + public CCSUsrMsg_SendPlayerLoadout_LoadoutItemImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public CEconItemPreviewDataBlock EconItem + { get => new CEconItemPreviewDataBlockImpl(NativeNetMessages.GetNestedMessage(Address, "econ_item"), false); } + public int Team + { get => Accessor.GetInt32("team"); set => Accessor.SetInt32("team", value); } + public int Slot + { get => Accessor.GetInt32("slot"); set => Accessor.SetInt32("slot", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ServerRankRevealAllImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ServerRankRevealAllImpl.cs index 7e86c3e5d..e934cd622 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ServerRankRevealAllImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ServerRankRevealAllImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_ServerRankRevealAllImpl : NetMessage, CCSUsrMsg_ServerRankRevealAll { - public CCSUsrMsg_ServerRankRevealAllImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int SecondsTillShutdown - { get => Accessor.GetInt32("seconds_till_shutdown"); set => Accessor.SetInt32("seconds_till_shutdown", value); } - - - public CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve Reservation - { get => new CMsgGCCStrike15_v2_MatchmakingGC2ServerReserveImpl(NativeNetMessages.GetNestedMessage(Address, "reservation"), false); } - -} + public CCSUsrMsg_ServerRankRevealAllImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int SecondsTillShutdown + { get => Accessor.GetInt32("seconds_till_shutdown"); set => Accessor.SetInt32("seconds_till_shutdown", value); } + public CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve Reservation + { get => new CMsgGCCStrike15_v2_MatchmakingGC2ServerReserveImpl(NativeNetMessages.GetNestedMessage(Address, "reservation"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ServerRankUpdateImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ServerRankUpdateImpl.cs index 9ef4ed51d..2d10f5cba 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ServerRankUpdateImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ServerRankUpdateImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_ServerRankUpdateImpl : NetMessage, CCSUsrMsg_ServerRankUpdate { - public CCSUsrMsg_ServerRankUpdateImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public IProtobufRepeatedFieldSubMessageType RankUpdate - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "rank_update"); } + public CCSUsrMsg_ServerRankUpdateImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public IProtobufRepeatedFieldSubMessageType RankUpdate + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "rank_update"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ServerRankUpdate_RankUpdateImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ServerRankUpdate_RankUpdateImpl.cs index 40e53f92f..cb4eaaf77 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ServerRankUpdate_RankUpdateImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ServerRankUpdate_RankUpdateImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,32 +8,20 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_ServerRankUpdate_RankUpdateImpl : TypedProtobuf, CCSUsrMsg_ServerRankUpdate_RankUpdate { - public CCSUsrMsg_ServerRankUpdate_RankUpdateImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int AccountId - { get => Accessor.GetInt32("account_id"); set => Accessor.SetInt32("account_id", value); } - - - public int RankOld - { get => Accessor.GetInt32("rank_old"); set => Accessor.SetInt32("rank_old", value); } - - - public int RankNew - { get => Accessor.GetInt32("rank_new"); set => Accessor.SetInt32("rank_new", value); } - - - public int NumWins - { get => Accessor.GetInt32("num_wins"); set => Accessor.SetInt32("num_wins", value); } - - - public float RankChange - { get => Accessor.GetFloat("rank_change"); set => Accessor.SetFloat("rank_change", value); } - - - public int RankTypeId - { get => Accessor.GetInt32("rank_type_id"); set => Accessor.SetInt32("rank_type_id", value); } - -} + public CCSUsrMsg_ServerRankUpdate_RankUpdateImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int AccountId + { get => Accessor.GetInt32("account_id"); set => Accessor.SetInt32("account_id", value); } + public int RankOld + { get => Accessor.GetInt32("rank_old"); set => Accessor.SetInt32("rank_old", value); } + public int RankNew + { get => Accessor.GetInt32("rank_new"); set => Accessor.SetInt32("rank_new", value); } + public int NumWins + { get => Accessor.GetInt32("num_wins"); set => Accessor.SetInt32("num_wins", value); } + public float RankChange + { get => Accessor.GetFloat("rank_change"); set => Accessor.SetFloat("rank_change", value); } + public int RankTypeId + { get => Accessor.GetInt32("rank_type_id"); set => Accessor.SetInt32("rank_type_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ShakeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ShakeImpl.cs index 24ea260d5..705a56ff9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ShakeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ShakeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_ShakeImpl : NetMessage, CCSUsrMsg_Shake { - public CCSUsrMsg_ShakeImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Command - { get => Accessor.GetInt32("command"); set => Accessor.SetInt32("command", value); } - - - public float LocalAmplitude - { get => Accessor.GetFloat("local_amplitude"); set => Accessor.SetFloat("local_amplitude", value); } - - - public float Frequency - { get => Accessor.GetFloat("frequency"); set => Accessor.SetFloat("frequency", value); } - - - public float Duration - { get => Accessor.GetFloat("duration"); set => Accessor.SetFloat("duration", value); } - -} + public CCSUsrMsg_ShakeImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Command + { get => Accessor.GetInt32("command"); set => Accessor.SetInt32("command", value); } + public float LocalAmplitude + { get => Accessor.GetFloat("local_amplitude"); set => Accessor.SetFloat("local_amplitude", value); } + public float Frequency + { get => Accessor.GetFloat("frequency"); set => Accessor.SetFloat("frequency", value); } + public float Duration + { get => Accessor.GetFloat("duration"); set => Accessor.SetFloat("duration", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ShootInfoImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ShootInfoImpl.cs index b67afab63..bf5b5b37c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ShootInfoImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ShootInfoImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_ShootInfoImpl : NetMessage, CCSUsrMsg_ShootInfo { - public CCSUsrMsg_ShootInfoImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int FrameNumber - { get => Accessor.GetInt32("frame_number"); set => Accessor.SetInt32("frame_number", value); } - - - public IProtobufRepeatedFieldSubMessageType HitboxTransforms - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "hitbox_transforms"); } - - - public Vector ShootPos - { get => Accessor.GetVector("shoot_pos"); set => Accessor.SetVector("shoot_pos", value); } - - - public QAngle ShootDir - { get => Accessor.GetQAngle("shoot_dir"); set => Accessor.SetQAngle("shoot_dir", value); } - -} + public CCSUsrMsg_ShootInfoImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int FrameNumber + { get => Accessor.GetInt32("frame_number"); set => Accessor.SetInt32("frame_number", value); } + public IProtobufRepeatedFieldSubMessageType HitboxTransforms + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "hitbox_transforms"); } + public Vector ShootPos + { get => Accessor.GetVector("shoot_pos"); set => Accessor.SetVector("shoot_pos", value); } + public QAngle ShootDir + { get => Accessor.GetQAngle("shoot_dir"); set => Accessor.SetQAngle("shoot_dir", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ShowMenuImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ShowMenuImpl.cs index d3085f3c0..a47bd4e8f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ShowMenuImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_ShowMenuImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_ShowMenuImpl : NetMessage, CCSUsrMsg_ShowMenu { - public CCSUsrMsg_ShowMenuImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int BitsValidSlots - { get => Accessor.GetInt32("bits_valid_slots"); set => Accessor.SetInt32("bits_valid_slots", value); } - - - public int DisplayTime - { get => Accessor.GetInt32("display_time"); set => Accessor.SetInt32("display_time", value); } - - - public string MenuString - { get => Accessor.GetString("menu_string"); set => Accessor.SetString("menu_string", value); } - -} + public CCSUsrMsg_ShowMenuImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int BitsValidSlots + { get => Accessor.GetInt32("bits_valid_slots"); set => Accessor.SetInt32("bits_valid_slots", value); } + public int DisplayTime + { get => Accessor.GetInt32("display_time"); set => Accessor.SetInt32("display_time", value); } + public string MenuString + { get => Accessor.GetString("menu_string"); set => Accessor.SetString("menu_string", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_StopSpectatorModeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_StopSpectatorModeImpl.cs index 43b5c591d..5fd002489 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_StopSpectatorModeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_StopSpectatorModeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_StopSpectatorModeImpl : NetMessage, CCSUsrMsg_StopSpectatorMode { - public CCSUsrMsg_StopSpectatorModeImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Dummy - { get => Accessor.GetInt32("dummy"); set => Accessor.SetInt32("dummy", value); } + public CCSUsrMsg_StopSpectatorModeImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public int Dummy + { get => Accessor.GetInt32("dummy"); set => Accessor.SetInt32("dummy", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SurvivalStatsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SurvivalStatsImpl.cs index 27e42aade..8c9d0df81 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SurvivalStatsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SurvivalStatsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_SurvivalStatsImpl : NetMessage, CCSUsrMsg_SurvivalStats { - public CCSUsrMsg_SurvivalStatsImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public ulong Xuid - { get => Accessor.GetUInt64("xuid"); set => Accessor.SetUInt64("xuid", value); } - - - public IProtobufRepeatedFieldSubMessageType Facts - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "facts"); } - - - public IProtobufRepeatedFieldSubMessageType Users - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "users"); } - - - public IProtobufRepeatedFieldSubMessageType Damages - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "damages"); } - - - public int Ticknumber - { get => Accessor.GetInt32("ticknumber"); set => Accessor.SetInt32("ticknumber", value); } - -} + public CCSUsrMsg_SurvivalStatsImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public ulong Xuid + { get => Accessor.GetUInt64("xuid"); set => Accessor.SetUInt64("xuid", value); } + public IProtobufRepeatedFieldSubMessageType Facts + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "facts"); } + public IProtobufRepeatedFieldSubMessageType Users + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "users"); } + public IProtobufRepeatedFieldSubMessageType Damages + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "damages"); } + public int Ticknumber + { get => Accessor.GetInt32("ticknumber"); set => Accessor.SetInt32("ticknumber", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SurvivalStats_DamageImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SurvivalStats_DamageImpl.cs index 2ec7281bd..c6fb29f3b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SurvivalStats_DamageImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SurvivalStats_DamageImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_SurvivalStats_DamageImpl : TypedProtobuf, CCSUsrMsg_SurvivalStats_Damage { - public CCSUsrMsg_SurvivalStats_DamageImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Xuid - { get => Accessor.GetUInt64("xuid"); set => Accessor.SetUInt64("xuid", value); } - - - public int To - { get => Accessor.GetInt32("to"); set => Accessor.SetInt32("to", value); } - - - public int ToHits - { get => Accessor.GetInt32("to_hits"); set => Accessor.SetInt32("to_hits", value); } - - - public int From - { get => Accessor.GetInt32("from"); set => Accessor.SetInt32("from", value); } - - - public int FromHits - { get => Accessor.GetInt32("from_hits"); set => Accessor.SetInt32("from_hits", value); } - -} + public CCSUsrMsg_SurvivalStats_DamageImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong Xuid + { get => Accessor.GetUInt64("xuid"); set => Accessor.SetUInt64("xuid", value); } + public int To + { get => Accessor.GetInt32("to"); set => Accessor.SetInt32("to", value); } + public int ToHits + { get => Accessor.GetInt32("to_hits"); set => Accessor.SetInt32("to_hits", value); } + public int From + { get => Accessor.GetInt32("from"); set => Accessor.SetInt32("from", value); } + public int FromHits + { get => Accessor.GetInt32("from_hits"); set => Accessor.SetInt32("from_hits", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SurvivalStats_FactImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SurvivalStats_FactImpl.cs index 3b57f07c5..6a7079cdf 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SurvivalStats_FactImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SurvivalStats_FactImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_SurvivalStats_FactImpl : TypedProtobuf, CCSUsrMsg_SurvivalStats_Fact { - public CCSUsrMsg_SurvivalStats_FactImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Type - { get => Accessor.GetInt32("type"); set => Accessor.SetInt32("type", value); } - - - public int Display - { get => Accessor.GetInt32("display"); set => Accessor.SetInt32("display", value); } - - - public int Value - { get => Accessor.GetInt32("value"); set => Accessor.SetInt32("value", value); } - - - public float Interestingness - { get => Accessor.GetFloat("interestingness"); set => Accessor.SetFloat("interestingness", value); } - -} + public CCSUsrMsg_SurvivalStats_FactImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Type + { get => Accessor.GetInt32("type"); set => Accessor.SetInt32("type", value); } + public int Display + { get => Accessor.GetInt32("display"); set => Accessor.SetInt32("display", value); } + public int Value + { get => Accessor.GetInt32("value"); set => Accessor.SetInt32("value", value); } + public float Interestingness + { get => Accessor.GetFloat("interestingness"); set => Accessor.SetFloat("interestingness", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SurvivalStats_PlacementImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SurvivalStats_PlacementImpl.cs index 18332b1fb..4454ab349 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SurvivalStats_PlacementImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_SurvivalStats_PlacementImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_SurvivalStats_PlacementImpl : TypedProtobuf, CCSUsrMsg_SurvivalStats_Placement { - public CCSUsrMsg_SurvivalStats_PlacementImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Xuid - { get => Accessor.GetUInt64("xuid"); set => Accessor.SetUInt64("xuid", value); } - - - public int Teamnumber - { get => Accessor.GetInt32("teamnumber"); set => Accessor.SetInt32("teamnumber", value); } - - - public int Placement - { get => Accessor.GetInt32("placement"); set => Accessor.SetInt32("placement", value); } - -} + public CCSUsrMsg_SurvivalStats_PlacementImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong Xuid + { get => Accessor.GetUInt64("xuid"); set => Accessor.SetUInt64("xuid", value); } + public int Teamnumber + { get => Accessor.GetInt32("teamnumber"); set => Accessor.SetInt32("teamnumber", value); } + public int Placement + { get => Accessor.GetInt32("placement"); set => Accessor.SetInt32("placement", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_TrainImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_TrainImpl.cs index fd1b927a8..18681b104 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_TrainImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_TrainImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_TrainImpl : NetMessage, CCSUsrMsg_Train { - public CCSUsrMsg_TrainImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Train - { get => Accessor.GetInt32("train"); set => Accessor.SetInt32("train", value); } + public CCSUsrMsg_TrainImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public int Train + { get => Accessor.GetInt32("train"); set => Accessor.SetInt32("train", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_UpdateScreenHealthBarImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_UpdateScreenHealthBarImpl.cs index d13e899d3..02b25b8d6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_UpdateScreenHealthBarImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_UpdateScreenHealthBarImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_UpdateScreenHealthBarImpl : NetMessage, CCSUsrMsg_UpdateScreenHealthBar { - public CCSUsrMsg_UpdateScreenHealthBarImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Entidx - { get => Accessor.GetInt32("entidx"); set => Accessor.SetInt32("entidx", value); } - - - public float HealthratioOld - { get => Accessor.GetFloat("healthratio_old"); set => Accessor.SetFloat("healthratio_old", value); } - - - public float HealthratioNew - { get => Accessor.GetFloat("healthratio_new"); set => Accessor.SetFloat("healthratio_new", value); } - - - public int Style - { get => Accessor.GetInt32("style"); set => Accessor.SetInt32("style", value); } - -} + public CCSUsrMsg_UpdateScreenHealthBarImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Entidx + { get => Accessor.GetInt32("entidx"); set => Accessor.SetInt32("entidx", value); } + public float HealthratioOld + { get => Accessor.GetFloat("healthratio_old"); set => Accessor.SetFloat("healthratio_old", value); } + public float HealthratioNew + { get => Accessor.GetFloat("healthratio_new"); set => Accessor.SetFloat("healthratio_new", value); } + public int Style + { get => Accessor.GetInt32("style"); set => Accessor.SetInt32("style", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VGUIMenuImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VGUIMenuImpl.cs index 33166b875..5e2ce8b92 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VGUIMenuImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VGUIMenuImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_VGUIMenuImpl : NetMessage, CCSUsrMsg_VGUIMenu { - public CCSUsrMsg_VGUIMenuImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public string Name - { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } - - - public bool Show - { get => Accessor.GetBool("show"); set => Accessor.SetBool("show", value); } - - - public IProtobufRepeatedFieldSubMessageType Keys - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "keys"); } - -} + public CCSUsrMsg_VGUIMenuImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public string Name + { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } + public bool Show + { get => Accessor.GetBool("show"); set => Accessor.SetBool("show", value); } + public IProtobufRepeatedFieldSubMessageType Keys + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "keys"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VGUIMenu_KeysImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VGUIMenu_KeysImpl.cs index 3fc991fb0..88a0a3f92 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VGUIMenu_KeysImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VGUIMenu_KeysImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_VGUIMenu_KeysImpl : TypedProtobuf, CCSUsrMsg_VGUIMenu_Keys { - public CCSUsrMsg_VGUIMenu_KeysImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string Name - { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } - - - public string Value - { get => Accessor.GetString("value"); set => Accessor.SetString("value", value); } - -} + public CCSUsrMsg_VGUIMenu_KeysImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string Name + { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } + public string Value + { get => Accessor.GetString("value"); set => Accessor.SetString("value", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VoiceMaskImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VoiceMaskImpl.cs index a6eb1531e..8a31ede09 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VoiceMaskImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VoiceMaskImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_VoiceMaskImpl : NetMessage, CCSUsrMsg_VoiceMask { - public CCSUsrMsg_VoiceMaskImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public IProtobufRepeatedFieldSubMessageType PlayerMasks - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "player_masks"); } - - - public bool PlayerModEnable - { get => Accessor.GetBool("player_mod_enable"); set => Accessor.SetBool("player_mod_enable", value); } - -} + public CCSUsrMsg_VoiceMaskImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public IProtobufRepeatedFieldSubMessageType PlayerMasks + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "player_masks"); } + public bool PlayerModEnable + { get => Accessor.GetBool("player_mod_enable"); set => Accessor.SetBool("player_mod_enable", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VoiceMask_PlayerMaskImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VoiceMask_PlayerMaskImpl.cs index 4e9c6c2cc..f7f43cb74 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VoiceMask_PlayerMaskImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VoiceMask_PlayerMaskImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_VoiceMask_PlayerMaskImpl : TypedProtobuf, CCSUsrMsg_VoiceMask_PlayerMask { - public CCSUsrMsg_VoiceMask_PlayerMaskImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int GameRulesMask - { get => Accessor.GetInt32("game_rules_mask"); set => Accessor.SetInt32("game_rules_mask", value); } - - - public int BanMasks - { get => Accessor.GetInt32("ban_masks"); set => Accessor.SetInt32("ban_masks", value); } - -} + public CCSUsrMsg_VoiceMask_PlayerMaskImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int GameRulesMask + { get => Accessor.GetInt32("game_rules_mask"); set => Accessor.SetInt32("game_rules_mask", value); } + public int BanMasks + { get => Accessor.GetInt32("ban_masks"); set => Accessor.SetInt32("ban_masks", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VoteFailedImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VoteFailedImpl.cs index 805db3406..d80f85c46 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VoteFailedImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VoteFailedImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -7,18 +6,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; -internal class CCSUsrMsg_VoteFailedImpl : NetMessage, CCSUsrMsg_VoteFailed +internal class CCSUsrMsg_VoteFailedImpl : TypedProtobuf, CCSUsrMsg_VoteFailed { - public CCSUsrMsg_VoteFailedImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Team - { get => Accessor.GetInt32("team"); set => Accessor.SetInt32("team", value); } - - - public int Reason - { get => Accessor.GetInt32("reason"); set => Accessor.SetInt32("reason", value); } - -} + public CCSUsrMsg_VoteFailedImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Team + { get => Accessor.GetInt32("team"); set => Accessor.SetInt32("team", value); } + public int Reason + { get => Accessor.GetInt32("reason"); set => Accessor.SetInt32("reason", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VotePassImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VotePassImpl.cs index 6cef919c6..4627381c3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VotePassImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VotePassImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_VotePassImpl : NetMessage, CCSUsrMsg_VotePass { - public CCSUsrMsg_VotePassImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Team - { get => Accessor.GetInt32("team"); set => Accessor.SetInt32("team", value); } - - - public int VoteType - { get => Accessor.GetInt32("vote_type"); set => Accessor.SetInt32("vote_type", value); } - - - public string DispStr - { get => Accessor.GetString("disp_str"); set => Accessor.SetString("disp_str", value); } - - - public string DetailsStr - { get => Accessor.GetString("details_str"); set => Accessor.SetString("details_str", value); } - -} + public CCSUsrMsg_VotePassImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Team + { get => Accessor.GetInt32("team"); set => Accessor.SetInt32("team", value); } + public int VoteType + { get => Accessor.GetInt32("vote_type"); set => Accessor.SetInt32("vote_type", value); } + public string DispStr + { get => Accessor.GetString("disp_str"); set => Accessor.SetString("disp_str", value); } + public string DetailsStr + { get => Accessor.GetString("details_str"); set => Accessor.SetString("details_str", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VoteSetupImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VoteSetupImpl.cs index d57c53825..fd7920adf 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VoteSetupImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VoteSetupImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_VoteSetupImpl : NetMessage, CCSUsrMsg_VoteSetup { - public CCSUsrMsg_VoteSetupImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public IProtobufRepeatedFieldValueType PotentialIssues - { get => new ProtobufRepeatedFieldValueType(Accessor, "potential_issues"); } + public CCSUsrMsg_VoteSetupImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public IProtobufRepeatedFieldValueType PotentialIssues + { get => new ProtobufRepeatedFieldValueType(Accessor, "potential_issues"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VoteStartImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VoteStartImpl.cs index fcc4aaaba..5deacb1c1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VoteStartImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_VoteStartImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,40 +8,24 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_VoteStartImpl : NetMessage, CCSUsrMsg_VoteStart { - public CCSUsrMsg_VoteStartImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Team - { get => Accessor.GetInt32("team"); set => Accessor.SetInt32("team", value); } - - - public int PlayerSlot - { get => Accessor.GetInt32("player_slot"); set => Accessor.SetInt32("player_slot", value); } - - - public int VoteType - { get => Accessor.GetInt32("vote_type"); set => Accessor.SetInt32("vote_type", value); } - - - public string DispStr - { get => Accessor.GetString("disp_str"); set => Accessor.SetString("disp_str", value); } - - - public string DetailsStr - { get => Accessor.GetString("details_str"); set => Accessor.SetString("details_str", value); } - - - public string OtherTeamStr - { get => Accessor.GetString("other_team_str"); set => Accessor.SetString("other_team_str", value); } - - - public bool IsYesNoVote - { get => Accessor.GetBool("is_yes_no_vote"); set => Accessor.SetBool("is_yes_no_vote", value); } - - - public int PlayerSlotTarget - { get => Accessor.GetInt32("player_slot_target"); set => Accessor.SetInt32("player_slot_target", value); } - -} + public CCSUsrMsg_VoteStartImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Team + { get => Accessor.GetInt32("team"); set => Accessor.SetInt32("team", value); } + public int PlayerSlot + { get => Accessor.GetInt32("player_slot"); set => Accessor.SetInt32("player_slot", value); } + public int VoteType + { get => Accessor.GetInt32("vote_type"); set => Accessor.SetInt32("vote_type", value); } + public string DispStr + { get => Accessor.GetString("disp_str"); set => Accessor.SetString("disp_str", value); } + public string DetailsStr + { get => Accessor.GetString("details_str"); set => Accessor.SetString("details_str", value); } + public string OtherTeamStr + { get => Accessor.GetString("other_team_str"); set => Accessor.SetString("other_team_str", value); } + public bool IsYesNoVote + { get => Accessor.GetBool("is_yes_no_vote"); set => Accessor.SetBool("is_yes_no_vote", value); } + public int PlayerSlotTarget + { get => Accessor.GetInt32("player_slot_target"); set => Accessor.SetInt32("player_slot_target", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_WeaponSoundImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_WeaponSoundImpl.cs index d22ba8c3d..b0d20cc80 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_WeaponSoundImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_WeaponSoundImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,36 +8,22 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_WeaponSoundImpl : NetMessage, CCSUsrMsg_WeaponSound { - public CCSUsrMsg_WeaponSoundImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Entidx - { get => Accessor.GetInt32("entidx"); set => Accessor.SetInt32("entidx", value); } - - - public float OriginX - { get => Accessor.GetFloat("origin_x"); set => Accessor.SetFloat("origin_x", value); } - - - public float OriginY - { get => Accessor.GetFloat("origin_y"); set => Accessor.SetFloat("origin_y", value); } - - - public float OriginZ - { get => Accessor.GetFloat("origin_z"); set => Accessor.SetFloat("origin_z", value); } - - - public string Sound - { get => Accessor.GetString("sound"); set => Accessor.SetString("sound", value); } - - - public float GameTimestamp - { get => Accessor.GetFloat("game_timestamp"); set => Accessor.SetFloat("game_timestamp", value); } - - - public uint SourceSoundscapeid - { get => Accessor.GetUInt32("source_soundscapeid"); set => Accessor.SetUInt32("source_soundscapeid", value); } - -} + public CCSUsrMsg_WeaponSoundImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Entidx + { get => Accessor.GetInt32("entidx"); set => Accessor.SetInt32("entidx", value); } + public float OriginX + { get => Accessor.GetFloat("origin_x"); set => Accessor.SetFloat("origin_x", value); } + public float OriginY + { get => Accessor.GetFloat("origin_y"); set => Accessor.SetFloat("origin_y", value); } + public float OriginZ + { get => Accessor.GetFloat("origin_z"); set => Accessor.SetFloat("origin_z", value); } + public string Sound + { get => Accessor.GetString("sound"); set => Accessor.SetString("sound", value); } + public float GameTimestamp + { get => Accessor.GetFloat("game_timestamp"); set => Accessor.SetFloat("game_timestamp", value); } + public uint SourceSoundscapeid + { get => Accessor.GetUInt32("source_soundscapeid"); set => Accessor.SetUInt32("source_soundscapeid", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_XRankGetImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_XRankGetImpl.cs index 74cee830f..4cebb9d20 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_XRankGetImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_XRankGetImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_XRankGetImpl : NetMessage, CCSUsrMsg_XRankGet { - public CCSUsrMsg_XRankGetImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int ModeIdx - { get => Accessor.GetInt32("mode_idx"); set => Accessor.SetInt32("mode_idx", value); } - - - public int Controller - { get => Accessor.GetInt32("controller"); set => Accessor.SetInt32("controller", value); } - -} + public CCSUsrMsg_XRankGetImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int ModeIdx + { get => Accessor.GetInt32("mode_idx"); set => Accessor.SetInt32("mode_idx", value); } + public int Controller + { get => Accessor.GetInt32("controller"); set => Accessor.SetInt32("controller", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_XRankUpdImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_XRankUpdImpl.cs index 0b7325224..d252fc73d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_XRankUpdImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_XRankUpdImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_XRankUpdImpl : NetMessage, CCSUsrMsg_XRankUpd { - public CCSUsrMsg_XRankUpdImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int ModeIdx - { get => Accessor.GetInt32("mode_idx"); set => Accessor.SetInt32("mode_idx", value); } - - - public int Controller - { get => Accessor.GetInt32("controller"); set => Accessor.SetInt32("controller", value); } - - - public int Ranking - { get => Accessor.GetInt32("ranking"); set => Accessor.SetInt32("ranking", value); } - -} + public CCSUsrMsg_XRankUpdImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int ModeIdx + { get => Accessor.GetInt32("mode_idx"); set => Accessor.SetInt32("mode_idx", value); } + public int Controller + { get => Accessor.GetInt32("controller"); set => Accessor.SetInt32("controller", value); } + public int Ranking + { get => Accessor.GetInt32("ranking"); set => Accessor.SetInt32("ranking", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_XpUpdateImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_XpUpdateImpl.cs index 5cac1f678..11c8682e5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_XpUpdateImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCSUsrMsg_XpUpdateImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCSUsrMsg_XpUpdateImpl : NetMessage, CCSUsrMsg_XpUpdate { - public CCSUsrMsg_XpUpdateImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public CMsgGCCstrike15_v2_GC2ServerNotifyXPRewarded Data - { get => new CMsgGCCstrike15_v2_GC2ServerNotifyXPRewardedImpl(NativeNetMessages.GetNestedMessage(Address, "data"), false); } + public CCSUsrMsg_XpUpdateImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public CMsgGCCstrike15_v2_GC2ServerNotifyXPRewarded Data + { get => new CMsgGCCstrike15_v2_GC2ServerNotifyXPRewardedImpl(NativeNetMessages.GetNestedMessage(Address, "data"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CChinaAgreementSessions_StartAgreementSessionInGame_RequestImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CChinaAgreementSessions_StartAgreementSessionInGame_RequestImpl.cs new file mode 100644 index 000000000..52f14d476 --- /dev/null +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CChinaAgreementSessions_StartAgreementSessionInGame_RequestImpl.cs @@ -0,0 +1,21 @@ +using SwiftlyS2.Core.Natives; +using SwiftlyS2.Core.NetMessages; +using SwiftlyS2.Shared.Natives; +using SwiftlyS2.Shared.NetMessages; +using SwiftlyS2.Shared.ProtobufDefinitions; + +namespace SwiftlyS2.Core.ProtobufDefinitions; + +internal class CChinaAgreementSessions_StartAgreementSessionInGame_RequestImpl : TypedProtobuf, CChinaAgreementSessions_StartAgreementSessionInGame_Request +{ + public CChinaAgreementSessions_StartAgreementSessionInGame_RequestImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Appid + { get => Accessor.GetUInt32("appid"); set => Accessor.SetUInt32("appid", value); } + public ulong Steamid + { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } + public string ClientIpaddress + { get => Accessor.GetString("client_ipaddress"); set => Accessor.SetString("client_ipaddress", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CChinaAgreementSessions_StartAgreementSessionInGame_ResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CChinaAgreementSessions_StartAgreementSessionInGame_ResponseImpl.cs new file mode 100644 index 000000000..3e72bbef2 --- /dev/null +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CChinaAgreementSessions_StartAgreementSessionInGame_ResponseImpl.cs @@ -0,0 +1,17 @@ +using SwiftlyS2.Core.Natives; +using SwiftlyS2.Core.NetMessages; +using SwiftlyS2.Shared.Natives; +using SwiftlyS2.Shared.NetMessages; +using SwiftlyS2.Shared.ProtobufDefinitions; + +namespace SwiftlyS2.Core.ProtobufDefinitions; + +internal class CChinaAgreementSessions_StartAgreementSessionInGame_ResponseImpl : TypedProtobuf, CChinaAgreementSessions_StartAgreementSessionInGame_Response +{ + public CChinaAgreementSessions_StartAgreementSessionInGame_ResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string AgreementUrl + { get => Accessor.GetString("agreement_url"); set => Accessor.SetString("agreement_url", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientHeaderOverwatchEvidenceImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientHeaderOverwatchEvidenceImpl.cs index 3ea419c90..3d062157e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientHeaderOverwatchEvidenceImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientHeaderOverwatchEvidenceImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CClientHeaderOverwatchEvidenceImpl : TypedProtobuf, CClientHeaderOverwatchEvidence { - public CClientHeaderOverwatchEvidenceImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Accountid - { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } - - - public ulong Caseid - { get => Accessor.GetUInt64("caseid"); set => Accessor.SetUInt64("caseid", value); } - -} + public CClientHeaderOverwatchEvidenceImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Accountid + { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } + public ulong Caseid + { get => Accessor.GetUInt64("caseid"); set => Accessor.SetUInt64("caseid", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientMsg_ClientUIEventImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientMsg_ClientUIEventImpl.cs index 9b245a765..406ee7a86 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientMsg_ClientUIEventImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientMsg_ClientUIEventImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CClientMsg_ClientUIEventImpl : TypedProtobuf, CClientMsg_ClientUIEvent { - public CClientMsg_ClientUIEventImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public EClientUIEvent Event - { get => (EClientUIEvent)Accessor.GetInt32("event"); set => Accessor.SetInt32("event", (int)value); } - - - public uint EntEhandle - { get => Accessor.GetUInt32("ent_ehandle"); set => Accessor.SetUInt32("ent_ehandle", value); } - - - public uint ClientEhandle - { get => Accessor.GetUInt32("client_ehandle"); set => Accessor.SetUInt32("client_ehandle", value); } - - - public string Data1 - { get => Accessor.GetString("data1"); set => Accessor.SetString("data1", value); } - - - public string Data2 - { get => Accessor.GetString("data2"); set => Accessor.SetString("data2", value); } - -} + public CClientMsg_ClientUIEventImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public EClientUIEvent Event + { get => (EClientUIEvent)Accessor.GetInt32("event"); set => Accessor.SetInt32("event", (int)value); } + public uint EntEhandle + { get => Accessor.GetUInt32("ent_ehandle"); set => Accessor.SetUInt32("ent_ehandle", value); } + public uint ClientEhandle + { get => Accessor.GetUInt32("client_ehandle"); set => Accessor.SetUInt32("client_ehandle", value); } + public string Data1 + { get => Accessor.GetString("data1"); set => Accessor.SetString("data1", value); } + public string Data2 + { get => Accessor.GetString("data2"); set => Accessor.SetString("data2", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientMsg_CustomGameEventBounceImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientMsg_CustomGameEventBounceImpl.cs index 864433f87..99f0297e5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientMsg_CustomGameEventBounceImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientMsg_CustomGameEventBounceImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CClientMsg_CustomGameEventBounceImpl : TypedProtobuf, CClientMsg_CustomGameEventBounce { - public CClientMsg_CustomGameEventBounceImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string EventName - { get => Accessor.GetString("event_name"); set => Accessor.SetString("event_name", value); } - - - public byte[] Data - { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } - - - public int PlayerSlot - { get => Accessor.GetInt32("player_slot"); set => Accessor.SetInt32("player_slot", value); } - -} + public CClientMsg_CustomGameEventBounceImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string EventName + { get => Accessor.GetString("event_name"); set => Accessor.SetString("event_name", value); } + public byte[] Data + { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } + public int PlayerSlot + { get => Accessor.GetInt32("player_slot"); set => Accessor.SetInt32("player_slot", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientMsg_CustomGameEventImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientMsg_CustomGameEventImpl.cs index eb53aed49..751cf7887 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientMsg_CustomGameEventImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientMsg_CustomGameEventImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CClientMsg_CustomGameEventImpl : TypedProtobuf, CClientMsg_CustomGameEvent { - public CClientMsg_CustomGameEventImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string EventName - { get => Accessor.GetString("event_name"); set => Accessor.SetString("event_name", value); } - - - public byte[] Data - { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } - -} + public CClientMsg_CustomGameEventImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string EventName + { get => Accessor.GetString("event_name"); set => Accessor.SetString("event_name", value); } + public byte[] Data + { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientMsg_DevPaletteVisibilityChangedEventImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientMsg_DevPaletteVisibilityChangedEventImpl.cs index c03dbdc57..a1056b291 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientMsg_DevPaletteVisibilityChangedEventImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientMsg_DevPaletteVisibilityChangedEventImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CClientMsg_DevPaletteVisibilityChangedEventImpl : TypedProtobuf, CClientMsg_DevPaletteVisibilityChangedEvent { - public CClientMsg_DevPaletteVisibilityChangedEventImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public bool Visible - { get => Accessor.GetBool("visible"); set => Accessor.SetBool("visible", value); } + public CClientMsg_DevPaletteVisibilityChangedEventImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public bool Visible + { get => Accessor.GetBool("visible"); set => Accessor.SetBool("visible", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientMsg_ListenForResponseFoundImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientMsg_ListenForResponseFoundImpl.cs index 8647226e0..342c36e4e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientMsg_ListenForResponseFoundImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientMsg_ListenForResponseFoundImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CClientMsg_ListenForResponseFoundImpl : TypedProtobuf, CClientMsg_ListenForResponseFound { - public CClientMsg_ListenForResponseFoundImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int PlayerSlot - { get => Accessor.GetInt32("player_slot"); set => Accessor.SetInt32("player_slot", value); } + public CClientMsg_ListenForResponseFoundImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public int PlayerSlot + { get => Accessor.GetInt32("player_slot"); set => Accessor.SetInt32("player_slot", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientMsg_RotateAnchorImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientMsg_RotateAnchorImpl.cs index 632c9b2b3..505c0434a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientMsg_RotateAnchorImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientMsg_RotateAnchorImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CClientMsg_RotateAnchorImpl : TypedProtobuf, CClientMsg_RotateAnchor { - public CClientMsg_RotateAnchorImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public float Angle - { get => Accessor.GetFloat("angle"); set => Accessor.SetFloat("angle", value); } + public CClientMsg_RotateAnchorImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public float Angle + { get => Accessor.GetFloat("angle"); set => Accessor.SetFloat("angle", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientMsg_WorldUIControllerHasPanelChangedEventImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientMsg_WorldUIControllerHasPanelChangedEventImpl.cs index fd5dc6d83..83dbd2c28 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientMsg_WorldUIControllerHasPanelChangedEventImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CClientMsg_WorldUIControllerHasPanelChangedEventImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CClientMsg_WorldUIControllerHasPanelChangedEventImpl : TypedProtobuf, CClientMsg_WorldUIControllerHasPanelChangedEvent { - public CClientMsg_WorldUIControllerHasPanelChangedEventImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public bool HasPanel - { get => Accessor.GetBool("has_panel"); set => Accessor.SetBool("has_panel", value); } - - - public uint ClientEhandle - { get => Accessor.GetUInt32("client_ehandle"); set => Accessor.SetUInt32("client_ehandle", value); } - - - public uint LiteralHandType - { get => Accessor.GetUInt32("literal_hand_type"); set => Accessor.SetUInt32("literal_hand_type", value); } - -} + public CClientMsg_WorldUIControllerHasPanelChangedEventImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public bool HasPanel + { get => Accessor.GetBool("has_panel"); set => Accessor.SetBool("has_panel", value); } + public uint ClientEhandle + { get => Accessor.GetUInt32("client_ehandle"); set => Accessor.SetUInt32("client_ehandle", value); } + public uint LiteralHandType + { get => Accessor.GetUInt32("literal_hand_type"); set => Accessor.SetUInt32("literal_hand_type", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCommunity_GamePersonalDataCategoryInfoImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCommunity_GamePersonalDataCategoryInfoImpl.cs index f29c019bd..99df80caf 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCommunity_GamePersonalDataCategoryInfoImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCommunity_GamePersonalDataCategoryInfoImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCommunity_GamePersonalDataCategoryInfoImpl : TypedProtobuf, CCommunity_GamePersonalDataCategoryInfo { - public CCommunity_GamePersonalDataCategoryInfoImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string Type - { get => Accessor.GetString("type"); set => Accessor.SetString("type", value); } - - - public string LocalizationToken - { get => Accessor.GetString("localization_token"); set => Accessor.SetString("localization_token", value); } - - - public string TemplateFile - { get => Accessor.GetString("template_file"); set => Accessor.SetString("template_file", value); } - -} + public CCommunity_GamePersonalDataCategoryInfoImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string Type + { get => Accessor.GetString("type"); set => Accessor.SetString("type", value); } + public string LocalizationToken + { get => Accessor.GetString("localization_token"); set => Accessor.SetString("localization_token", value); } + public string TemplateFile + { get => Accessor.GetString("template_file"); set => Accessor.SetString("template_file", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCommunity_GetGamePersonalDataCategories_RequestImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCommunity_GetGamePersonalDataCategories_RequestImpl.cs index d29977d6e..5daf5296c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCommunity_GetGamePersonalDataCategories_RequestImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCommunity_GetGamePersonalDataCategories_RequestImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCommunity_GetGamePersonalDataCategories_RequestImpl : TypedProtobuf, CCommunity_GetGamePersonalDataCategories_Request { - public CCommunity_GetGamePersonalDataCategories_RequestImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Appid - { get => Accessor.GetUInt32("appid"); set => Accessor.SetUInt32("appid", value); } + public CCommunity_GetGamePersonalDataCategories_RequestImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public uint Appid + { get => Accessor.GetUInt32("appid"); set => Accessor.SetUInt32("appid", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCommunity_GetGamePersonalDataCategories_ResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCommunity_GetGamePersonalDataCategories_ResponseImpl.cs index aadc3d65f..714532b02 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCommunity_GetGamePersonalDataCategories_ResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCommunity_GetGamePersonalDataCategories_ResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCommunity_GetGamePersonalDataCategories_ResponseImpl : TypedProtobuf, CCommunity_GetGamePersonalDataCategories_Response { - public CCommunity_GetGamePersonalDataCategories_ResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldSubMessageType Categories - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "categories"); } - - - public string AppAssetsBasename - { get => Accessor.GetString("app_assets_basename"); set => Accessor.SetString("app_assets_basename", value); } - -} + public CCommunity_GetGamePersonalDataCategories_ResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public IProtobufRepeatedFieldSubMessageType Categories + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "categories"); } + public string AppAssetsBasename + { get => Accessor.GetString("app_assets_basename"); set => Accessor.SetString("app_assets_basename", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCommunity_GetGamePersonalDataEntries_RequestImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCommunity_GetGamePersonalDataEntries_RequestImpl.cs index f200d173d..9f74f602e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCommunity_GetGamePersonalDataEntries_RequestImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCommunity_GetGamePersonalDataEntries_RequestImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCommunity_GetGamePersonalDataEntries_RequestImpl : TypedProtobuf, CCommunity_GetGamePersonalDataEntries_Request { - public CCommunity_GetGamePersonalDataEntries_RequestImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Appid - { get => Accessor.GetUInt32("appid"); set => Accessor.SetUInt32("appid", value); } - - - public ulong Steamid - { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } - - - public string Type - { get => Accessor.GetString("type"); set => Accessor.SetString("type", value); } - - - public string ContinueToken - { get => Accessor.GetString("continue_token"); set => Accessor.SetString("continue_token", value); } - -} + public CCommunity_GetGamePersonalDataEntries_RequestImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Appid + { get => Accessor.GetUInt32("appid"); set => Accessor.SetUInt32("appid", value); } + public ulong Steamid + { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } + public string Type + { get => Accessor.GetString("type"); set => Accessor.SetString("type", value); } + public string ContinueToken + { get => Accessor.GetString("continue_token"); set => Accessor.SetString("continue_token", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCommunity_GetGamePersonalDataEntries_ResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCommunity_GetGamePersonalDataEntries_ResponseImpl.cs index 910ef27a3..f1dc8974f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCommunity_GetGamePersonalDataEntries_ResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCommunity_GetGamePersonalDataEntries_ResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCommunity_GetGamePersonalDataEntries_ResponseImpl : TypedProtobuf, CCommunity_GetGamePersonalDataEntries_Response { - public CCommunity_GetGamePersonalDataEntries_ResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Gceresult - { get => Accessor.GetUInt32("gceresult"); set => Accessor.SetUInt32("gceresult", value); } - - - public IProtobufRepeatedFieldValueType Entries - { get => new ProtobufRepeatedFieldValueType(Accessor, "entries"); } - - - public string ContinueToken - { get => Accessor.GetString("continue_token"); set => Accessor.SetString("continue_token", value); } - - - public string ContinueText - { get => Accessor.GetString("continue_text"); set => Accessor.SetString("continue_text", value); } - -} + public CCommunity_GetGamePersonalDataEntries_ResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Gceresult + { get => Accessor.GetUInt32("gceresult"); set => Accessor.SetUInt32("gceresult", value); } + public IProtobufRepeatedFieldValueType Entries + { get => new ProtobufRepeatedFieldValueType(Accessor, "entries"); } + public string ContinueToken + { get => Accessor.GetString("continue_token"); set => Accessor.SetString("continue_token", value); } + public string ContinueText + { get => Accessor.GetString("continue_text"); set => Accessor.SetString("continue_text", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCommunity_TerminateGamePersonalDataEntries_RequestImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCommunity_TerminateGamePersonalDataEntries_RequestImpl.cs index 70cf65453..79796083d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCommunity_TerminateGamePersonalDataEntries_RequestImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCommunity_TerminateGamePersonalDataEntries_RequestImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCommunity_TerminateGamePersonalDataEntries_RequestImpl : TypedProtobuf, CCommunity_TerminateGamePersonalDataEntries_Request { - public CCommunity_TerminateGamePersonalDataEntries_RequestImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Appid - { get => Accessor.GetUInt32("appid"); set => Accessor.SetUInt32("appid", value); } - - - public ulong Steamid - { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } - -} + public CCommunity_TerminateGamePersonalDataEntries_RequestImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Appid + { get => Accessor.GetUInt32("appid"); set => Accessor.SetUInt32("appid", value); } + public ulong Steamid + { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCommunity_TerminateGamePersonalDataEntries_ResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCommunity_TerminateGamePersonalDataEntries_ResponseImpl.cs index e3a06689a..7b46ea125 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCommunity_TerminateGamePersonalDataEntries_ResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CCommunity_TerminateGamePersonalDataEntries_ResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CCommunity_TerminateGamePersonalDataEntries_ResponseImpl : TypedProtobuf, CCommunity_TerminateGamePersonalDataEntries_Response { - public CCommunity_TerminateGamePersonalDataEntries_ResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Gceresult - { get => Accessor.GetUInt32("gceresult"); set => Accessor.SetUInt32("gceresult", value); } + public CCommunity_TerminateGamePersonalDataEntries_ResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public uint Gceresult + { get => Accessor.GetUInt32("gceresult"); set => Accessor.SetUInt32("gceresult", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_MatchInfoImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_MatchInfoImpl.cs index bdbfceba6..1b81867eb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_MatchInfoImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_MatchInfoImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDataGCCStrike15_v2_MatchInfoImpl : TypedProtobuf, CDataGCCStrike15_v2_MatchInfo { - public CDataGCCStrike15_v2_MatchInfoImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Matchid - { get => Accessor.GetUInt64("matchid"); set => Accessor.SetUInt64("matchid", value); } - - - public uint Matchtime - { get => Accessor.GetUInt32("matchtime"); set => Accessor.SetUInt32("matchtime", value); } - - - public WatchableMatchInfo Watchablematchinfo - { get => new WatchableMatchInfoImpl(NativeNetMessages.GetNestedMessage(Address, "watchablematchinfo"), false); } - - - public CMsgGCCStrike15_v2_MatchmakingServerRoundStats RoundstatsLegacy - { get => new CMsgGCCStrike15_v2_MatchmakingServerRoundStatsImpl(NativeNetMessages.GetNestedMessage(Address, "roundstats_legacy"), false); } - - - public IProtobufRepeatedFieldSubMessageType Roundstatsall - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "roundstatsall"); } - -} + public CDataGCCStrike15_v2_MatchInfoImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong Matchid + { get => Accessor.GetUInt64("matchid"); set => Accessor.SetUInt64("matchid", value); } + public uint Matchtime + { get => Accessor.GetUInt32("matchtime"); set => Accessor.SetUInt32("matchtime", value); } + public WatchableMatchInfo Watchablematchinfo + { get => new WatchableMatchInfoImpl(NativeNetMessages.GetNestedMessage(Address, "watchablematchinfo"), false); } + public CMsgGCCStrike15_v2_MatchmakingServerRoundStats RoundstatsLegacy + { get => new CMsgGCCStrike15_v2_MatchmakingServerRoundStatsImpl(NativeNetMessages.GetNestedMessage(Address, "roundstats_legacy"), false); } + public IProtobufRepeatedFieldSubMessageType Roundstatsall + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "roundstatsall"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_TournamentGroupImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_TournamentGroupImpl.cs index de788179f..df4064500 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_TournamentGroupImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_TournamentGroupImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,48 +8,28 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDataGCCStrike15_v2_TournamentGroupImpl : TypedProtobuf, CDataGCCStrike15_v2_TournamentGroup { - public CDataGCCStrike15_v2_TournamentGroupImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Groupid - { get => Accessor.GetUInt32("groupid"); set => Accessor.SetUInt32("groupid", value); } - - - public string Name - { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } - - - public string Desc - { get => Accessor.GetString("desc"); set => Accessor.SetString("desc", value); } - - - public uint PicksDeprecated - { get => Accessor.GetUInt32("picks__deprecated"); set => Accessor.SetUInt32("picks__deprecated", value); } - - - public IProtobufRepeatedFieldSubMessageType Teams - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "teams"); } - - - public IProtobufRepeatedFieldValueType StageIds - { get => new ProtobufRepeatedFieldValueType(Accessor, "stage_ids"); } - - - public uint Picklockuntiltime - { get => Accessor.GetUInt32("picklockuntiltime"); set => Accessor.SetUInt32("picklockuntiltime", value); } - - - public uint Pickableteams - { get => Accessor.GetUInt32("pickableteams"); set => Accessor.SetUInt32("pickableteams", value); } - - - public uint PointsPerPick - { get => Accessor.GetUInt32("points_per_pick"); set => Accessor.SetUInt32("points_per_pick", value); } - - - public IProtobufRepeatedFieldSubMessageType Picks - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "picks"); } - -} + public CDataGCCStrike15_v2_TournamentGroupImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Groupid + { get => Accessor.GetUInt32("groupid"); set => Accessor.SetUInt32("groupid", value); } + public string Name + { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } + public string Desc + { get => Accessor.GetString("desc"); set => Accessor.SetString("desc", value); } + public uint PicksDeprecated + { get => Accessor.GetUInt32("picks__deprecated"); set => Accessor.SetUInt32("picks__deprecated", value); } + public IProtobufRepeatedFieldSubMessageType Teams + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "teams"); } + public IProtobufRepeatedFieldValueType StageIds + { get => new ProtobufRepeatedFieldValueType(Accessor, "stage_ids"); } + public uint Picklockuntiltime + { get => Accessor.GetUInt32("picklockuntiltime"); set => Accessor.SetUInt32("picklockuntiltime", value); } + public uint Pickableteams + { get => Accessor.GetUInt32("pickableteams"); set => Accessor.SetUInt32("pickableteams", value); } + public uint PointsPerPick + { get => Accessor.GetUInt32("points_per_pick"); set => Accessor.SetUInt32("points_per_pick", value); } + public IProtobufRepeatedFieldSubMessageType Picks + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "picks"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_TournamentGroupTeamImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_TournamentGroupTeamImpl.cs index 22d2764e6..ac523c407 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_TournamentGroupTeamImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_TournamentGroupTeamImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDataGCCStrike15_v2_TournamentGroupTeamImpl : TypedProtobuf, CDataGCCStrike15_v2_TournamentGroupTeam { - public CDataGCCStrike15_v2_TournamentGroupTeamImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int TeamId - { get => Accessor.GetInt32("team_id"); set => Accessor.SetInt32("team_id", value); } - - - public int Score - { get => Accessor.GetInt32("score"); set => Accessor.SetInt32("score", value); } - - - public bool Correctpick - { get => Accessor.GetBool("correctpick"); set => Accessor.SetBool("correctpick", value); } - -} + public CDataGCCStrike15_v2_TournamentGroupTeamImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int TeamId + { get => Accessor.GetInt32("team_id"); set => Accessor.SetInt32("team_id", value); } + public int Score + { get => Accessor.GetInt32("score"); set => Accessor.SetInt32("score", value); } + public bool Correctpick + { get => Accessor.GetBool("correctpick"); set => Accessor.SetBool("correctpick", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_TournamentGroup_PicksImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_TournamentGroup_PicksImpl.cs index 54d64c040..81008027a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_TournamentGroup_PicksImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_TournamentGroup_PicksImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDataGCCStrike15_v2_TournamentGroup_PicksImpl : TypedProtobuf, CDataGCCStrike15_v2_TournamentGroup_Picks { - public CDataGCCStrike15_v2_TournamentGroup_PicksImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldValueType Pickids - { get => new ProtobufRepeatedFieldValueType(Accessor, "pickids"); } + public CDataGCCStrike15_v2_TournamentGroup_PicksImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public IProtobufRepeatedFieldValueType Pickids + { get => new ProtobufRepeatedFieldValueType(Accessor, "pickids"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_TournamentInfoImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_TournamentInfoImpl.cs index d85726c84..a4cf37bf9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_TournamentInfoImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_TournamentInfoImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDataGCCStrike15_v2_TournamentInfoImpl : TypedProtobuf, CDataGCCStrike15_v2_TournamentInfo { - public CDataGCCStrike15_v2_TournamentInfoImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldSubMessageType Sections - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "sections"); } - - - public TournamentEvent TournamentEvent - { get => new TournamentEventImpl(NativeNetMessages.GetNestedMessage(Address, "tournament_event"), false); } - - - public IProtobufRepeatedFieldSubMessageType TournamentTeams - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "tournament_teams"); } - -} + public CDataGCCStrike15_v2_TournamentInfoImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public IProtobufRepeatedFieldSubMessageType Sections + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "sections"); } + public TournamentEvent TournamentEvent + { get => new TournamentEventImpl(NativeNetMessages.GetNestedMessage(Address, "tournament_event"), false); } + public IProtobufRepeatedFieldSubMessageType TournamentTeams + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "tournament_teams"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_TournamentMatchDraftImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_TournamentMatchDraftImpl.cs index 661a760bc..89bf18d5b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_TournamentMatchDraftImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_TournamentMatchDraftImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,88 +8,48 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDataGCCStrike15_v2_TournamentMatchDraftImpl : TypedProtobuf, CDataGCCStrike15_v2_TournamentMatchDraft { - public CDataGCCStrike15_v2_TournamentMatchDraftImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int EventId - { get => Accessor.GetInt32("event_id"); set => Accessor.SetInt32("event_id", value); } - - - public int EventStageId - { get => Accessor.GetInt32("event_stage_id"); set => Accessor.SetInt32("event_stage_id", value); } - - - public int TeamId0 - { get => Accessor.GetInt32("team_id_0"); set => Accessor.SetInt32("team_id_0", value); } - - - public int TeamId1 - { get => Accessor.GetInt32("team_id_1"); set => Accessor.SetInt32("team_id_1", value); } - - - public int MapsCount - { get => Accessor.GetInt32("maps_count"); set => Accessor.SetInt32("maps_count", value); } - - - public int MapsCurrent - { get => Accessor.GetInt32("maps_current"); set => Accessor.SetInt32("maps_current", value); } - - - public int TeamIdStart - { get => Accessor.GetInt32("team_id_start"); set => Accessor.SetInt32("team_id_start", value); } - - - public int TeamIdVeto1 - { get => Accessor.GetInt32("team_id_veto1"); set => Accessor.SetInt32("team_id_veto1", value); } - - - public int TeamIdPickn - { get => Accessor.GetInt32("team_id_pickn"); set => Accessor.SetInt32("team_id_pickn", value); } - - - public IProtobufRepeatedFieldSubMessageType Drafts - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "drafts"); } - - - public IProtobufRepeatedFieldValueType VoteMapid0 - { get => new ProtobufRepeatedFieldValueType(Accessor, "vote_mapid_0"); } - - - public IProtobufRepeatedFieldValueType VoteMapid1 - { get => new ProtobufRepeatedFieldValueType(Accessor, "vote_mapid_1"); } - - - public IProtobufRepeatedFieldValueType VoteMapid2 - { get => new ProtobufRepeatedFieldValueType(Accessor, "vote_mapid_2"); } - - - public IProtobufRepeatedFieldValueType VoteMapid3 - { get => new ProtobufRepeatedFieldValueType(Accessor, "vote_mapid_3"); } - - - public IProtobufRepeatedFieldValueType VoteMapid4 - { get => new ProtobufRepeatedFieldValueType(Accessor, "vote_mapid_4"); } - - - public IProtobufRepeatedFieldValueType VoteMapid5 - { get => new ProtobufRepeatedFieldValueType(Accessor, "vote_mapid_5"); } - - - public IProtobufRepeatedFieldValueType VoteStartingSide - { get => new ProtobufRepeatedFieldValueType(Accessor, "vote_starting_side"); } - - - public int VotePhase - { get => Accessor.GetInt32("vote_phase"); set => Accessor.SetInt32("vote_phase", value); } - - - public float VotePhaseStart - { get => Accessor.GetFloat("vote_phase_start"); set => Accessor.SetFloat("vote_phase_start", value); } - - - public float VotePhaseLength - { get => Accessor.GetFloat("vote_phase_length"); set => Accessor.SetFloat("vote_phase_length", value); } - -} + public CDataGCCStrike15_v2_TournamentMatchDraftImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int EventId + { get => Accessor.GetInt32("event_id"); set => Accessor.SetInt32("event_id", value); } + public int EventStageId + { get => Accessor.GetInt32("event_stage_id"); set => Accessor.SetInt32("event_stage_id", value); } + public int TeamId0 + { get => Accessor.GetInt32("team_id_0"); set => Accessor.SetInt32("team_id_0", value); } + public int TeamId1 + { get => Accessor.GetInt32("team_id_1"); set => Accessor.SetInt32("team_id_1", value); } + public int MapsCount + { get => Accessor.GetInt32("maps_count"); set => Accessor.SetInt32("maps_count", value); } + public int MapsCurrent + { get => Accessor.GetInt32("maps_current"); set => Accessor.SetInt32("maps_current", value); } + public int TeamIdStart + { get => Accessor.GetInt32("team_id_start"); set => Accessor.SetInt32("team_id_start", value); } + public int TeamIdVeto1 + { get => Accessor.GetInt32("team_id_veto1"); set => Accessor.SetInt32("team_id_veto1", value); } + public int TeamIdPickn + { get => Accessor.GetInt32("team_id_pickn"); set => Accessor.SetInt32("team_id_pickn", value); } + public IProtobufRepeatedFieldSubMessageType Drafts + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "drafts"); } + public IProtobufRepeatedFieldValueType VoteMapid0 + { get => new ProtobufRepeatedFieldValueType(Accessor, "vote_mapid_0"); } + public IProtobufRepeatedFieldValueType VoteMapid1 + { get => new ProtobufRepeatedFieldValueType(Accessor, "vote_mapid_1"); } + public IProtobufRepeatedFieldValueType VoteMapid2 + { get => new ProtobufRepeatedFieldValueType(Accessor, "vote_mapid_2"); } + public IProtobufRepeatedFieldValueType VoteMapid3 + { get => new ProtobufRepeatedFieldValueType(Accessor, "vote_mapid_3"); } + public IProtobufRepeatedFieldValueType VoteMapid4 + { get => new ProtobufRepeatedFieldValueType(Accessor, "vote_mapid_4"); } + public IProtobufRepeatedFieldValueType VoteMapid5 + { get => new ProtobufRepeatedFieldValueType(Accessor, "vote_mapid_5"); } + public IProtobufRepeatedFieldValueType VoteStartingSide + { get => new ProtobufRepeatedFieldValueType(Accessor, "vote_starting_side"); } + public int VotePhase + { get => Accessor.GetInt32("vote_phase"); set => Accessor.SetInt32("vote_phase", value); } + public float VotePhaseStart + { get => Accessor.GetFloat("vote_phase_start"); set => Accessor.SetFloat("vote_phase_start", value); } + public float VotePhaseLength + { get => Accessor.GetFloat("vote_phase_length"); set => Accessor.SetFloat("vote_phase_length", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_TournamentMatchDraft_EntryImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_TournamentMatchDraft_EntryImpl.cs index 1a8bd3c43..7712d7b7d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_TournamentMatchDraft_EntryImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_TournamentMatchDraft_EntryImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDataGCCStrike15_v2_TournamentMatchDraft_EntryImpl : TypedProtobuf, CDataGCCStrike15_v2_TournamentMatchDraft_Entry { - public CDataGCCStrike15_v2_TournamentMatchDraft_EntryImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Mapid - { get => Accessor.GetInt32("mapid"); set => Accessor.SetInt32("mapid", value); } - - - public int TeamIdCt - { get => Accessor.GetInt32("team_id_ct"); set => Accessor.SetInt32("team_id_ct", value); } - -} + public CDataGCCStrike15_v2_TournamentMatchDraft_EntryImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Mapid + { get => Accessor.GetInt32("mapid"); set => Accessor.SetInt32("mapid", value); } + public int TeamIdCt + { get => Accessor.GetInt32("team_id_ct"); set => Accessor.SetInt32("team_id_ct", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_TournamentSectionImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_TournamentSectionImpl.cs index 77efc89c6..55ad7b56e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_TournamentSectionImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDataGCCStrike15_v2_TournamentSectionImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDataGCCStrike15_v2_TournamentSectionImpl : TypedProtobuf, CDataGCCStrike15_v2_TournamentSection { - public CDataGCCStrike15_v2_TournamentSectionImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Sectionid - { get => Accessor.GetUInt32("sectionid"); set => Accessor.SetUInt32("sectionid", value); } - - - public string Name - { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } - - - public string Desc - { get => Accessor.GetString("desc"); set => Accessor.SetString("desc", value); } - - - public IProtobufRepeatedFieldSubMessageType Groups - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "groups"); } - -} + public CDataGCCStrike15_v2_TournamentSectionImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Sectionid + { get => Accessor.GetUInt32("sectionid"); set => Accessor.SetUInt32("sectionid", value); } + public string Name + { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } + public string Desc + { get => Accessor.GetString("desc"); set => Accessor.SetString("desc", value); } + public IProtobufRepeatedFieldSubMessageType Groups + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "groups"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoAnimationDataImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoAnimationDataImpl.cs index ab619dafa..1046e46d0 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoAnimationDataImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoAnimationDataImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDemoAnimationDataImpl : TypedProtobuf, CDemoAnimationData { - public CDemoAnimationDataImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int EntityId - { get => Accessor.GetInt32("entity_id"); set => Accessor.SetInt32("entity_id", value); } - - - public int StartTick - { get => Accessor.GetInt32("start_tick"); set => Accessor.SetInt32("start_tick", value); } - - - public int EndTick - { get => Accessor.GetInt32("end_tick"); set => Accessor.SetInt32("end_tick", value); } - - - public byte[] Data - { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } - - - public long DataChecksum - { get => Accessor.GetInt64("data_checksum"); set => Accessor.SetInt64("data_checksum", value); } - -} + public CDemoAnimationDataImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int EntityId + { get => Accessor.GetInt32("entity_id"); set => Accessor.SetInt32("entity_id", value); } + public int StartTick + { get => Accessor.GetInt32("start_tick"); set => Accessor.SetInt32("start_tick", value); } + public int EndTick + { get => Accessor.GetInt32("end_tick"); set => Accessor.SetInt32("end_tick", value); } + public byte[] Data + { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } + public long DataChecksum + { get => Accessor.GetInt64("data_checksum"); set => Accessor.SetInt64("data_checksum", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoAnimationHeaderImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoAnimationHeaderImpl.cs index 47e67f1ce..dfdf2e725 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoAnimationHeaderImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoAnimationHeaderImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDemoAnimationHeaderImpl : TypedProtobuf, CDemoAnimationHeader { - public CDemoAnimationHeaderImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int EntityId - { get => Accessor.GetInt32("entity_id"); set => Accessor.SetInt32("entity_id", value); } - - - public int Tick - { get => Accessor.GetInt32("tick"); set => Accessor.SetInt32("tick", value); } - - - public byte[] Data - { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } - -} + public CDemoAnimationHeaderImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int EntityId + { get => Accessor.GetInt32("entity_id"); set => Accessor.SetInt32("entity_id", value); } + public int Tick + { get => Accessor.GetInt32("tick"); set => Accessor.SetInt32("tick", value); } + public byte[] Data + { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoClassInfoImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoClassInfoImpl.cs index b502be82d..d4d909b58 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoClassInfoImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoClassInfoImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDemoClassInfoImpl : TypedProtobuf, CDemoClassInfo { - public CDemoClassInfoImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldSubMessageType Classes - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "classes"); } + public CDemoClassInfoImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public IProtobufRepeatedFieldSubMessageType Classes + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "classes"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoClassInfo_class_tImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoClassInfo_class_tImpl.cs index b14fb1179..bdc6b25b3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoClassInfo_class_tImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoClassInfo_class_tImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDemoClassInfo_class_tImpl : TypedProtobuf, CDemoClassInfo_class_t { - public CDemoClassInfo_class_tImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int ClassId - { get => Accessor.GetInt32("class_id"); set => Accessor.SetInt32("class_id", value); } - - - public string NetworkName - { get => Accessor.GetString("network_name"); set => Accessor.SetString("network_name", value); } - - - public string TableName - { get => Accessor.GetString("table_name"); set => Accessor.SetString("table_name", value); } - -} + public CDemoClassInfo_class_tImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int ClassId + { get => Accessor.GetInt32("class_id"); set => Accessor.SetInt32("class_id", value); } + public string NetworkName + { get => Accessor.GetString("network_name"); set => Accessor.SetString("network_name", value); } + public string TableName + { get => Accessor.GetString("table_name"); set => Accessor.SetString("table_name", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoConsoleCmdImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoConsoleCmdImpl.cs index 607b2ba69..5c78ee264 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoConsoleCmdImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoConsoleCmdImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDemoConsoleCmdImpl : TypedProtobuf, CDemoConsoleCmd { - public CDemoConsoleCmdImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string Cmdstring - { get => Accessor.GetString("cmdstring"); set => Accessor.SetString("cmdstring", value); } + public CDemoConsoleCmdImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public string Cmdstring + { get => Accessor.GetString("cmdstring"); set => Accessor.SetString("cmdstring", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoCustomDataCallbacksImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoCustomDataCallbacksImpl.cs index 3dbf90a45..a70a465f7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoCustomDataCallbacksImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoCustomDataCallbacksImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDemoCustomDataCallbacksImpl : TypedProtobuf, CDemoCustomDataCallbacks { - public CDemoCustomDataCallbacksImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldValueType SaveId - { get => new ProtobufRepeatedFieldValueType(Accessor, "save_id"); } + public CDemoCustomDataCallbacksImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public IProtobufRepeatedFieldValueType SaveId + { get => new ProtobufRepeatedFieldValueType(Accessor, "save_id"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoCustomDataImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoCustomDataImpl.cs index 2d4d0369f..b582dbbc4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoCustomDataImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoCustomDataImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDemoCustomDataImpl : TypedProtobuf, CDemoCustomData { - public CDemoCustomDataImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int CallbackIndex - { get => Accessor.GetInt32("callback_index"); set => Accessor.SetInt32("callback_index", value); } - - - public byte[] Data - { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } - -} + public CDemoCustomDataImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int CallbackIndex + { get => Accessor.GetInt32("callback_index"); set => Accessor.SetInt32("callback_index", value); } + public byte[] Data + { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoFileHeaderImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoFileHeaderImpl.cs index fec4a0b35..97ff80629 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoFileHeaderImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoFileHeaderImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,68 +8,38 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDemoFileHeaderImpl : TypedProtobuf, CDemoFileHeader { - public CDemoFileHeaderImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string DemoFileStamp - { get => Accessor.GetString("demo_file_stamp"); set => Accessor.SetString("demo_file_stamp", value); } - - - public int PatchVersion - { get => Accessor.GetInt32("patch_version"); set => Accessor.SetInt32("patch_version", value); } - - - public string ServerName - { get => Accessor.GetString("server_name"); set => Accessor.SetString("server_name", value); } - - - public string ClientName - { get => Accessor.GetString("client_name"); set => Accessor.SetString("client_name", value); } - - - public string MapName - { get => Accessor.GetString("map_name"); set => Accessor.SetString("map_name", value); } - - - public string GameDirectory - { get => Accessor.GetString("game_directory"); set => Accessor.SetString("game_directory", value); } - - - public int FullpacketsVersion - { get => Accessor.GetInt32("fullpackets_version"); set => Accessor.SetInt32("fullpackets_version", value); } - - - public bool AllowClientsideEntities - { get => Accessor.GetBool("allow_clientside_entities"); set => Accessor.SetBool("allow_clientside_entities", value); } - - - public bool AllowClientsideParticles - { get => Accessor.GetBool("allow_clientside_particles"); set => Accessor.SetBool("allow_clientside_particles", value); } - - - public string Addons - { get => Accessor.GetString("addons"); set => Accessor.SetString("addons", value); } - - - public string DemoVersionName - { get => Accessor.GetString("demo_version_name"); set => Accessor.SetString("demo_version_name", value); } - - - public string DemoVersionGuid - { get => Accessor.GetString("demo_version_guid"); set => Accessor.SetString("demo_version_guid", value); } - - - public int BuildNum - { get => Accessor.GetInt32("build_num"); set => Accessor.SetInt32("build_num", value); } - - - public string Game - { get => Accessor.GetString("game"); set => Accessor.SetString("game", value); } - - - public int ServerStartTick - { get => Accessor.GetInt32("server_start_tick"); set => Accessor.SetInt32("server_start_tick", value); } - -} + public CDemoFileHeaderImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string DemoFileStamp + { get => Accessor.GetString("demo_file_stamp"); set => Accessor.SetString("demo_file_stamp", value); } + public int PatchVersion + { get => Accessor.GetInt32("patch_version"); set => Accessor.SetInt32("patch_version", value); } + public string ServerName + { get => Accessor.GetString("server_name"); set => Accessor.SetString("server_name", value); } + public string ClientName + { get => Accessor.GetString("client_name"); set => Accessor.SetString("client_name", value); } + public string MapName + { get => Accessor.GetString("map_name"); set => Accessor.SetString("map_name", value); } + public string GameDirectory + { get => Accessor.GetString("game_directory"); set => Accessor.SetString("game_directory", value); } + public int FullpacketsVersion + { get => Accessor.GetInt32("fullpackets_version"); set => Accessor.SetInt32("fullpackets_version", value); } + public bool AllowClientsideEntities + { get => Accessor.GetBool("allow_clientside_entities"); set => Accessor.SetBool("allow_clientside_entities", value); } + public bool AllowClientsideParticles + { get => Accessor.GetBool("allow_clientside_particles"); set => Accessor.SetBool("allow_clientside_particles", value); } + public string Addons + { get => Accessor.GetString("addons"); set => Accessor.SetString("addons", value); } + public string DemoVersionName + { get => Accessor.GetString("demo_version_name"); set => Accessor.SetString("demo_version_name", value); } + public string DemoVersionGuid + { get => Accessor.GetString("demo_version_guid"); set => Accessor.SetString("demo_version_guid", value); } + public int BuildNum + { get => Accessor.GetInt32("build_num"); set => Accessor.SetInt32("build_num", value); } + public string Game + { get => Accessor.GetString("game"); set => Accessor.SetString("game", value); } + public int ServerStartTick + { get => Accessor.GetInt32("server_start_tick"); set => Accessor.SetInt32("server_start_tick", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoFileInfoImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoFileInfoImpl.cs index 88ef6a71d..178598925 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoFileInfoImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoFileInfoImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDemoFileInfoImpl : TypedProtobuf, CDemoFileInfo { - public CDemoFileInfoImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public float PlaybackTime - { get => Accessor.GetFloat("playback_time"); set => Accessor.SetFloat("playback_time", value); } - - - public int PlaybackTicks - { get => Accessor.GetInt32("playback_ticks"); set => Accessor.SetInt32("playback_ticks", value); } - - - public int PlaybackFrames - { get => Accessor.GetInt32("playback_frames"); set => Accessor.SetInt32("playback_frames", value); } - - - public CGameInfo GameInfo - { get => new CGameInfoImpl(NativeNetMessages.GetNestedMessage(Address, "game_info"), false); } - -} + public CDemoFileInfoImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public float PlaybackTime + { get => Accessor.GetFloat("playback_time"); set => Accessor.SetFloat("playback_time", value); } + public int PlaybackTicks + { get => Accessor.GetInt32("playback_ticks"); set => Accessor.SetInt32("playback_ticks", value); } + public int PlaybackFrames + { get => Accessor.GetInt32("playback_frames"); set => Accessor.SetInt32("playback_frames", value); } + public CGameInfo GameInfo + { get => new CGameInfoImpl(NativeNetMessages.GetNestedMessage(Address, "game_info"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoFullPacketImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoFullPacketImpl.cs index 5dee460d4..70533b476 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoFullPacketImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoFullPacketImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDemoFullPacketImpl : TypedProtobuf, CDemoFullPacket { - public CDemoFullPacketImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public CDemoStringTables StringTable - { get => new CDemoStringTablesImpl(NativeNetMessages.GetNestedMessage(Address, "string_table"), false); } - - - public CDemoPacket Packet - { get => new CDemoPacketImpl(NativeNetMessages.GetNestedMessage(Address, "packet"), false); } - -} + public CDemoFullPacketImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public CDemoStringTables StringTable + { get => new CDemoStringTablesImpl(NativeNetMessages.GetNestedMessage(Address, "string_table"), false); } + public CDemoPacket Packet + { get => new CDemoPacketImpl(NativeNetMessages.GetNestedMessage(Address, "packet"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoPacketImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoPacketImpl.cs index 6ddb6af42..0d6e8d753 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoPacketImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoPacketImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDemoPacketImpl : TypedProtobuf, CDemoPacket { - public CDemoPacketImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public byte[] Data - { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } + public CDemoPacketImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public byte[] Data + { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoRecoveryImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoRecoveryImpl.cs index 5e54619b4..0009b3a81 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoRecoveryImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoRecoveryImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDemoRecoveryImpl : TypedProtobuf, CDemoRecovery { - public CDemoRecoveryImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public CDemoRecovery_DemoInitialSpawnGroupEntry InitialSpawnGroup - { get => new CDemoRecovery_DemoInitialSpawnGroupEntryImpl(NativeNetMessages.GetNestedMessage(Address, "initial_spawn_group"), false); } - - - public byte[] SpawnGroupMessage - { get => Accessor.GetBytes("spawn_group_message"); set => Accessor.SetBytes("spawn_group_message", value); } - -} + public CDemoRecoveryImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public CDemoRecovery_DemoInitialSpawnGroupEntry InitialSpawnGroup + { get => new CDemoRecovery_DemoInitialSpawnGroupEntryImpl(NativeNetMessages.GetNestedMessage(Address, "initial_spawn_group"), false); } + public byte[] SpawnGroupMessage + { get => Accessor.GetBytes("spawn_group_message"); set => Accessor.SetBytes("spawn_group_message", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoRecovery_DemoInitialSpawnGroupEntryImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoRecovery_DemoInitialSpawnGroupEntryImpl.cs index 48cb559e8..4b3340633 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoRecovery_DemoInitialSpawnGroupEntryImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoRecovery_DemoInitialSpawnGroupEntryImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDemoRecovery_DemoInitialSpawnGroupEntryImpl : TypedProtobuf, CDemoRecovery_DemoInitialSpawnGroupEntry { - public CDemoRecovery_DemoInitialSpawnGroupEntryImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Spawngrouphandle - { get => Accessor.GetUInt32("spawngrouphandle"); set => Accessor.SetUInt32("spawngrouphandle", value); } - - - public bool WasCreated - { get => Accessor.GetBool("was_created"); set => Accessor.SetBool("was_created", value); } - -} + public CDemoRecovery_DemoInitialSpawnGroupEntryImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Spawngrouphandle + { get => Accessor.GetUInt32("spawngrouphandle"); set => Accessor.SetUInt32("spawngrouphandle", value); } + public bool WasCreated + { get => Accessor.GetBool("was_created"); set => Accessor.SetBool("was_created", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoSaveGameImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoSaveGameImpl.cs index b6887a917..135ac8a14 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoSaveGameImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoSaveGameImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDemoSaveGameImpl : TypedProtobuf, CDemoSaveGame { - public CDemoSaveGameImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public byte[] Data - { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } - - - public ulong SteamId - { get => Accessor.GetUInt64("steam_id"); set => Accessor.SetUInt64("steam_id", value); } - - - public ulong Signature - { get => Accessor.GetUInt64("signature"); set => Accessor.SetUInt64("signature", value); } - - - public int Version - { get => Accessor.GetInt32("version"); set => Accessor.SetInt32("version", value); } - -} + public CDemoSaveGameImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public byte[] Data + { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } + public ulong SteamId + { get => Accessor.GetUInt64("steam_id"); set => Accessor.SetUInt64("steam_id", value); } + public ulong Signature + { get => Accessor.GetUInt64("signature"); set => Accessor.SetUInt64("signature", value); } + public int Version + { get => Accessor.GetInt32("version"); set => Accessor.SetInt32("version", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoSendTablesImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoSendTablesImpl.cs index ec0c5d329..26d90a7ae 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoSendTablesImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoSendTablesImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDemoSendTablesImpl : TypedProtobuf, CDemoSendTables { - public CDemoSendTablesImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public byte[] Data - { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } + public CDemoSendTablesImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public byte[] Data + { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoSpawnGroupsHLTVBroadcastImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoSpawnGroupsHLTVBroadcastImpl.cs index ed34b03c0..2f53e7adc 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoSpawnGroupsHLTVBroadcastImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoSpawnGroupsHLTVBroadcastImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDemoSpawnGroupsHLTVBroadcastImpl : TypedProtobuf, CDemoSpawnGroupsHLTVBroadcast { - public CDemoSpawnGroupsHLTVBroadcastImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public byte[] Data - { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } + public CDemoSpawnGroupsHLTVBroadcastImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public byte[] Data + { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoSpawnGroupsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoSpawnGroupsImpl.cs index e649cfa6f..17f095ae9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoSpawnGroupsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoSpawnGroupsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDemoSpawnGroupsImpl : TypedProtobuf, CDemoSpawnGroups { - public CDemoSpawnGroupsImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldValueType Msgs - { get => new ProtobufRepeatedFieldValueType(Accessor, "msgs"); } + public CDemoSpawnGroupsImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public IProtobufRepeatedFieldValueType Msgs + { get => new ProtobufRepeatedFieldValueType(Accessor, "msgs"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoStopImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoStopImpl.cs index 9cf7b7dde..e247ab22e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoStopImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoStopImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,9 +8,8 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDemoStopImpl : TypedProtobuf, CDemoStop { - public CDemoStopImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - + public CDemoStopImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoStringTablesImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoStringTablesImpl.cs index 7364ca609..d0f512be6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoStringTablesImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoStringTablesImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDemoStringTablesImpl : TypedProtobuf, CDemoStringTables { - public CDemoStringTablesImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldSubMessageType Tables - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "tables"); } + public CDemoStringTablesImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public IProtobufRepeatedFieldSubMessageType Tables + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "tables"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoStringTables_items_tImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoStringTables_items_tImpl.cs index 5a355a5c8..9d9e63a5f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoStringTables_items_tImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoStringTables_items_tImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDemoStringTables_items_tImpl : TypedProtobuf, CDemoStringTables_items_t { - public CDemoStringTables_items_tImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string Str - { get => Accessor.GetString("str"); set => Accessor.SetString("str", value); } - - - public byte[] Data - { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } - -} + public CDemoStringTables_items_tImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string Str + { get => Accessor.GetString("str"); set => Accessor.SetString("str", value); } + public byte[] Data + { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoStringTables_table_tImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoStringTables_table_tImpl.cs index b3ffef42e..7797112fd 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoStringTables_table_tImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoStringTables_table_tImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDemoStringTables_table_tImpl : TypedProtobuf, CDemoStringTables_table_t { - public CDemoStringTables_table_tImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string TableName - { get => Accessor.GetString("table_name"); set => Accessor.SetString("table_name", value); } - - - public IProtobufRepeatedFieldSubMessageType Items - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "items"); } - - - public IProtobufRepeatedFieldSubMessageType ItemsClientside - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "items_clientside"); } - - - public int TableFlags - { get => Accessor.GetInt32("table_flags"); set => Accessor.SetInt32("table_flags", value); } - -} + public CDemoStringTables_table_tImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string TableName + { get => Accessor.GetString("table_name"); set => Accessor.SetString("table_name", value); } + public IProtobufRepeatedFieldSubMessageType Items + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "items"); } + public IProtobufRepeatedFieldSubMessageType ItemsClientside + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "items_clientside"); } + public int TableFlags + { get => Accessor.GetInt32("table_flags"); set => Accessor.SetInt32("table_flags", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoSyncTickImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoSyncTickImpl.cs index 1913fe56a..9ea54be10 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoSyncTickImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoSyncTickImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,9 +8,8 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDemoSyncTickImpl : TypedProtobuf, CDemoSyncTick { - public CDemoSyncTickImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - + public CDemoSyncTickImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoUserCmdImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoUserCmdImpl.cs index 7ba873d3c..d83fa70c0 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoUserCmdImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CDemoUserCmdImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CDemoUserCmdImpl : TypedProtobuf, CDemoUserCmd { - public CDemoUserCmdImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int CmdNumber - { get => Accessor.GetInt32("cmd_number"); set => Accessor.SetInt32("cmd_number", value); } - - - public byte[] Data - { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } - -} + public CDemoUserCmdImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int CmdNumber + { get => Accessor.GetInt32("cmd_number"); set => Accessor.SetInt32("cmd_number", value); } + public byte[] Data + { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEconItemPreviewDataBlockImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEconItemPreviewDataBlockImpl.cs index 9c404ac95..779d2d27c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEconItemPreviewDataBlockImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEconItemPreviewDataBlockImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,100 +8,54 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CEconItemPreviewDataBlockImpl : TypedProtobuf, CEconItemPreviewDataBlock { - public CEconItemPreviewDataBlockImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Accountid - { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } - - - public ulong Itemid - { get => Accessor.GetUInt64("itemid"); set => Accessor.SetUInt64("itemid", value); } - - - public uint Defindex - { get => Accessor.GetUInt32("defindex"); set => Accessor.SetUInt32("defindex", value); } - - - public uint Paintindex - { get => Accessor.GetUInt32("paintindex"); set => Accessor.SetUInt32("paintindex", value); } - - - public uint Rarity - { get => Accessor.GetUInt32("rarity"); set => Accessor.SetUInt32("rarity", value); } - - - public uint Quality - { get => Accessor.GetUInt32("quality"); set => Accessor.SetUInt32("quality", value); } - - - public uint Paintwear - { get => Accessor.GetUInt32("paintwear"); set => Accessor.SetUInt32("paintwear", value); } - - - public uint Paintseed - { get => Accessor.GetUInt32("paintseed"); set => Accessor.SetUInt32("paintseed", value); } - - - public uint Killeaterscoretype - { get => Accessor.GetUInt32("killeaterscoretype"); set => Accessor.SetUInt32("killeaterscoretype", value); } - - - public uint Killeatervalue - { get => Accessor.GetUInt32("killeatervalue"); set => Accessor.SetUInt32("killeatervalue", value); } - - - public string Customname - { get => Accessor.GetString("customname"); set => Accessor.SetString("customname", value); } - - - public IProtobufRepeatedFieldSubMessageType Stickers - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "stickers"); } - - - public uint Inventory - { get => Accessor.GetUInt32("inventory"); set => Accessor.SetUInt32("inventory", value); } - - - public uint Origin - { get => Accessor.GetUInt32("origin"); set => Accessor.SetUInt32("origin", value); } - - - public uint Questid - { get => Accessor.GetUInt32("questid"); set => Accessor.SetUInt32("questid", value); } - - - public uint Dropreason - { get => Accessor.GetUInt32("dropreason"); set => Accessor.SetUInt32("dropreason", value); } - - - public uint Musicindex - { get => Accessor.GetUInt32("musicindex"); set => Accessor.SetUInt32("musicindex", value); } - - - public int Entindex - { get => Accessor.GetInt32("entindex"); set => Accessor.SetInt32("entindex", value); } - - - public uint Petindex - { get => Accessor.GetUInt32("petindex"); set => Accessor.SetUInt32("petindex", value); } - - - public IProtobufRepeatedFieldSubMessageType Keychains - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "keychains"); } - - - public uint Style - { get => Accessor.GetUInt32("style"); set => Accessor.SetUInt32("style", value); } - - - public IProtobufRepeatedFieldSubMessageType Variations - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "variations"); } - - - public uint UpgradeLevel - { get => Accessor.GetUInt32("upgrade_level"); set => Accessor.SetUInt32("upgrade_level", value); } - -} + public CEconItemPreviewDataBlockImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Accountid + { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } + public ulong Itemid + { get => Accessor.GetUInt64("itemid"); set => Accessor.SetUInt64("itemid", value); } + public uint Defindex + { get => Accessor.GetUInt32("defindex"); set => Accessor.SetUInt32("defindex", value); } + public uint Paintindex + { get => Accessor.GetUInt32("paintindex"); set => Accessor.SetUInt32("paintindex", value); } + public uint Rarity + { get => Accessor.GetUInt32("rarity"); set => Accessor.SetUInt32("rarity", value); } + public uint Quality + { get => Accessor.GetUInt32("quality"); set => Accessor.SetUInt32("quality", value); } + public uint Paintwear + { get => Accessor.GetUInt32("paintwear"); set => Accessor.SetUInt32("paintwear", value); } + public uint Paintseed + { get => Accessor.GetUInt32("paintseed"); set => Accessor.SetUInt32("paintseed", value); } + public uint Killeaterscoretype + { get => Accessor.GetUInt32("killeaterscoretype"); set => Accessor.SetUInt32("killeaterscoretype", value); } + public uint Killeatervalue + { get => Accessor.GetUInt32("killeatervalue"); set => Accessor.SetUInt32("killeatervalue", value); } + public string Customname + { get => Accessor.GetString("customname"); set => Accessor.SetString("customname", value); } + public IProtobufRepeatedFieldSubMessageType Stickers + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "stickers"); } + public uint Inventory + { get => Accessor.GetUInt32("inventory"); set => Accessor.SetUInt32("inventory", value); } + public uint Origin + { get => Accessor.GetUInt32("origin"); set => Accessor.SetUInt32("origin", value); } + public uint Questid + { get => Accessor.GetUInt32("questid"); set => Accessor.SetUInt32("questid", value); } + public uint Dropreason + { get => Accessor.GetUInt32("dropreason"); set => Accessor.SetUInt32("dropreason", value); } + public uint Musicindex + { get => Accessor.GetUInt32("musicindex"); set => Accessor.SetUInt32("musicindex", value); } + public int Entindex + { get => Accessor.GetInt32("entindex"); set => Accessor.SetInt32("entindex", value); } + public uint Petindex + { get => Accessor.GetUInt32("petindex"); set => Accessor.SetUInt32("petindex", value); } + public IProtobufRepeatedFieldSubMessageType Keychains + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "keychains"); } + public uint Style + { get => Accessor.GetUInt32("style"); set => Accessor.SetUInt32("style", value); } + public IProtobufRepeatedFieldSubMessageType Variations + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "variations"); } + public uint UpgradeLevel + { get => Accessor.GetUInt32("upgrade_level"); set => Accessor.SetUInt32("upgrade_level", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEconItemPreviewDataBlock_StickerImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEconItemPreviewDataBlock_StickerImpl.cs index 378af5faa..a2137aa76 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEconItemPreviewDataBlock_StickerImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEconItemPreviewDataBlock_StickerImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,56 +8,32 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CEconItemPreviewDataBlock_StickerImpl : TypedProtobuf, CEconItemPreviewDataBlock_Sticker { - public CEconItemPreviewDataBlock_StickerImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Slot - { get => Accessor.GetUInt32("slot"); set => Accessor.SetUInt32("slot", value); } - - - public uint StickerId - { get => Accessor.GetUInt32("sticker_id"); set => Accessor.SetUInt32("sticker_id", value); } - - - public float Wear - { get => Accessor.GetFloat("wear"); set => Accessor.SetFloat("wear", value); } - - - public float Scale - { get => Accessor.GetFloat("scale"); set => Accessor.SetFloat("scale", value); } - - - public float Rotation - { get => Accessor.GetFloat("rotation"); set => Accessor.SetFloat("rotation", value); } - - - public uint TintId - { get => Accessor.GetUInt32("tint_id"); set => Accessor.SetUInt32("tint_id", value); } - - - public float OffsetX - { get => Accessor.GetFloat("offset_x"); set => Accessor.SetFloat("offset_x", value); } - - - public float OffsetY - { get => Accessor.GetFloat("offset_y"); set => Accessor.SetFloat("offset_y", value); } - - - public float OffsetZ - { get => Accessor.GetFloat("offset_z"); set => Accessor.SetFloat("offset_z", value); } - - - public uint Pattern - { get => Accessor.GetUInt32("pattern"); set => Accessor.SetUInt32("pattern", value); } - - - public uint HighlightReel - { get => Accessor.GetUInt32("highlight_reel"); set => Accessor.SetUInt32("highlight_reel", value); } - - - public uint WrappedSticker - { get => Accessor.GetUInt32("wrapped_sticker"); set => Accessor.SetUInt32("wrapped_sticker", value); } - -} + public CEconItemPreviewDataBlock_StickerImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Slot + { get => Accessor.GetUInt32("slot"); set => Accessor.SetUInt32("slot", value); } + public uint StickerId + { get => Accessor.GetUInt32("sticker_id"); set => Accessor.SetUInt32("sticker_id", value); } + public float Wear + { get => Accessor.GetFloat("wear"); set => Accessor.SetFloat("wear", value); } + public float Scale + { get => Accessor.GetFloat("scale"); set => Accessor.SetFloat("scale", value); } + public float Rotation + { get => Accessor.GetFloat("rotation"); set => Accessor.SetFloat("rotation", value); } + public uint TintId + { get => Accessor.GetUInt32("tint_id"); set => Accessor.SetUInt32("tint_id", value); } + public float OffsetX + { get => Accessor.GetFloat("offset_x"); set => Accessor.SetFloat("offset_x", value); } + public float OffsetY + { get => Accessor.GetFloat("offset_y"); set => Accessor.SetFloat("offset_y", value); } + public float OffsetZ + { get => Accessor.GetFloat("offset_z"); set => Accessor.SetFloat("offset_z", value); } + public uint Pattern + { get => Accessor.GetUInt32("pattern"); set => Accessor.SetUInt32("pattern", value); } + public uint HighlightReel + { get => Accessor.GetUInt32("highlight_reel"); set => Accessor.SetUInt32("highlight_reel", value); } + public uint WrappedSticker + { get => Accessor.GetUInt32("wrapped_sticker"); set => Accessor.SetUInt32("wrapped_sticker", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEngineGotvSyncPacketImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEngineGotvSyncPacketImpl.cs index ad084da64..5efce62da 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEngineGotvSyncPacketImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEngineGotvSyncPacketImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,48 +8,28 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CEngineGotvSyncPacketImpl : TypedProtobuf, CEngineGotvSyncPacket { - public CEngineGotvSyncPacketImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong MatchId - { get => Accessor.GetUInt64("match_id"); set => Accessor.SetUInt64("match_id", value); } - - - public uint InstanceId - { get => Accessor.GetUInt32("instance_id"); set => Accessor.SetUInt32("instance_id", value); } - - - public uint Signupfragment - { get => Accessor.GetUInt32("signupfragment"); set => Accessor.SetUInt32("signupfragment", value); } - - - public uint Currentfragment - { get => Accessor.GetUInt32("currentfragment"); set => Accessor.SetUInt32("currentfragment", value); } - - - public float Tickrate - { get => Accessor.GetFloat("tickrate"); set => Accessor.SetFloat("tickrate", value); } - - - public uint Tick - { get => Accessor.GetUInt32("tick"); set => Accessor.SetUInt32("tick", value); } - - - public float Rtdelay - { get => Accessor.GetFloat("rtdelay"); set => Accessor.SetFloat("rtdelay", value); } - - - public float Rcvage - { get => Accessor.GetFloat("rcvage"); set => Accessor.SetFloat("rcvage", value); } - - - public float KeyframeInterval - { get => Accessor.GetFloat("keyframe_interval"); set => Accessor.SetFloat("keyframe_interval", value); } - - - public uint Cdndelay - { get => Accessor.GetUInt32("cdndelay"); set => Accessor.SetUInt32("cdndelay", value); } - -} + public CEngineGotvSyncPacketImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong MatchId + { get => Accessor.GetUInt64("match_id"); set => Accessor.SetUInt64("match_id", value); } + public uint InstanceId + { get => Accessor.GetUInt32("instance_id"); set => Accessor.SetUInt32("instance_id", value); } + public uint Signupfragment + { get => Accessor.GetUInt32("signupfragment"); set => Accessor.SetUInt32("signupfragment", value); } + public uint Currentfragment + { get => Accessor.GetUInt32("currentfragment"); set => Accessor.SetUInt32("currentfragment", value); } + public float Tickrate + { get => Accessor.GetFloat("tickrate"); set => Accessor.SetFloat("tickrate", value); } + public uint Tick + { get => Accessor.GetUInt32("tick"); set => Accessor.SetUInt32("tick", value); } + public float Rtdelay + { get => Accessor.GetFloat("rtdelay"); set => Accessor.SetFloat("rtdelay", value); } + public float Rcvage + { get => Accessor.GetFloat("rcvage"); set => Accessor.SetFloat("rcvage", value); } + public float KeyframeInterval + { get => Accessor.GetFloat("keyframe_interval"); set => Accessor.SetFloat("keyframe_interval", value); } + public uint Cdndelay + { get => Accessor.GetUInt32("cdndelay"); set => Accessor.SetUInt32("cdndelay", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEntityMessageDoSparkImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEntityMessageDoSparkImpl.cs index 1f601ea79..6b27e1375 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEntityMessageDoSparkImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEntityMessageDoSparkImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,40 +8,24 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CEntityMessageDoSparkImpl : TypedProtobuf, CEntityMessageDoSpark { - public CEntityMessageDoSparkImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public Vector Origin - { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } - - - public int Entityindex - { get => Accessor.GetInt32("entityindex"); set => Accessor.SetInt32("entityindex", value); } - - - public float Radius - { get => Accessor.GetFloat("radius"); set => Accessor.SetFloat("radius", value); } - - - public uint Color - { get => Accessor.GetUInt32("color"); set => Accessor.SetUInt32("color", value); } - - - public uint Beams - { get => Accessor.GetUInt32("beams"); set => Accessor.SetUInt32("beams", value); } - - - public float Thick - { get => Accessor.GetFloat("thick"); set => Accessor.SetFloat("thick", value); } - - - public float Duration - { get => Accessor.GetFloat("duration"); set => Accessor.SetFloat("duration", value); } - - - public CEntityMsg EntityMsg - { get => new CEntityMsgImpl(NativeNetMessages.GetNestedMessage(Address, "entity_msg"), false); } - -} + public CEntityMessageDoSparkImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public Vector Origin + { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } + public int Entityindex + { get => Accessor.GetInt32("entityindex"); set => Accessor.SetInt32("entityindex", value); } + public float Radius + { get => Accessor.GetFloat("radius"); set => Accessor.SetFloat("radius", value); } + public uint Color + { get => Accessor.GetUInt32("color"); set => Accessor.SetUInt32("color", value); } + public uint Beams + { get => Accessor.GetUInt32("beams"); set => Accessor.SetUInt32("beams", value); } + public float Thick + { get => Accessor.GetFloat("thick"); set => Accessor.SetFloat("thick", value); } + public float Duration + { get => Accessor.GetFloat("duration"); set => Accessor.SetFloat("duration", value); } + public CEntityMsg EntityMsg + { get => new CEntityMsgImpl(NativeNetMessages.GetNestedMessage(Address, "entity_msg"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEntityMessageFixAngleImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEntityMessageFixAngleImpl.cs index e4503be94..40da04817 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEntityMessageFixAngleImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEntityMessageFixAngleImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CEntityMessageFixAngleImpl : TypedProtobuf, CEntityMessageFixAngle { - public CEntityMessageFixAngleImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public bool Relative - { get => Accessor.GetBool("relative"); set => Accessor.SetBool("relative", value); } - - - public QAngle Angle - { get => Accessor.GetQAngle("angle"); set => Accessor.SetQAngle("angle", value); } - - - public CEntityMsg EntityMsg - { get => new CEntityMsgImpl(NativeNetMessages.GetNestedMessage(Address, "entity_msg"), false); } - -} + public CEntityMessageFixAngleImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public bool Relative + { get => Accessor.GetBool("relative"); set => Accessor.SetBool("relative", value); } + public QAngle Angle + { get => Accessor.GetQAngle("angle"); set => Accessor.SetQAngle("angle", value); } + public CEntityMsg EntityMsg + { get => new CEntityMsgImpl(NativeNetMessages.GetNestedMessage(Address, "entity_msg"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEntityMessagePlayJingleImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEntityMessagePlayJingleImpl.cs index ea3cccf73..d262113f1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEntityMessagePlayJingleImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEntityMessagePlayJingleImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CEntityMessagePlayJingleImpl : TypedProtobuf, CEntityMessagePlayJingle { - public CEntityMessagePlayJingleImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public CEntityMsg EntityMsg - { get => new CEntityMsgImpl(NativeNetMessages.GetNestedMessage(Address, "entity_msg"), false); } + public CEntityMessagePlayJingleImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public CEntityMsg EntityMsg + { get => new CEntityMsgImpl(NativeNetMessages.GetNestedMessage(Address, "entity_msg"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEntityMessagePropagateForceImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEntityMessagePropagateForceImpl.cs index 9a0fd002f..2f77f3d7e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEntityMessagePropagateForceImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEntityMessagePropagateForceImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CEntityMessagePropagateForceImpl : TypedProtobuf, CEntityMessagePropagateForce { - public CEntityMessagePropagateForceImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public Vector Impulse - { get => Accessor.GetVector("impulse"); set => Accessor.SetVector("impulse", value); } - - - public CEntityMsg EntityMsg - { get => new CEntityMsgImpl(NativeNetMessages.GetNestedMessage(Address, "entity_msg"), false); } - -} + public CEntityMessagePropagateForceImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public Vector Impulse + { get => Accessor.GetVector("impulse"); set => Accessor.SetVector("impulse", value); } + public CEntityMsg EntityMsg + { get => new CEntityMsgImpl(NativeNetMessages.GetNestedMessage(Address, "entity_msg"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEntityMessageRemoveAllDecalsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEntityMessageRemoveAllDecalsImpl.cs index e65c5ef6e..a4c8c4367 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEntityMessageRemoveAllDecalsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEntityMessageRemoveAllDecalsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CEntityMessageRemoveAllDecalsImpl : TypedProtobuf, CEntityMessageRemoveAllDecals { - public CEntityMessageRemoveAllDecalsImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public bool RemoveDecals - { get => Accessor.GetBool("remove_decals"); set => Accessor.SetBool("remove_decals", value); } - - - public CEntityMsg EntityMsg - { get => new CEntityMsgImpl(NativeNetMessages.GetNestedMessage(Address, "entity_msg"), false); } - -} + public CEntityMessageRemoveAllDecalsImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public bool RemoveDecals + { get => Accessor.GetBool("remove_decals"); set => Accessor.SetBool("remove_decals", value); } + public CEntityMsg EntityMsg + { get => new CEntityMsgImpl(NativeNetMessages.GetNestedMessage(Address, "entity_msg"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEntityMessageScreenOverlayImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEntityMessageScreenOverlayImpl.cs index b5346d270..853f9c14a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEntityMessageScreenOverlayImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEntityMessageScreenOverlayImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CEntityMessageScreenOverlayImpl : TypedProtobuf, CEntityMessageScreenOverlay { - public CEntityMessageScreenOverlayImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public bool StartEffect - { get => Accessor.GetBool("start_effect"); set => Accessor.SetBool("start_effect", value); } - - - public CEntityMsg EntityMsg - { get => new CEntityMsgImpl(NativeNetMessages.GetNestedMessage(Address, "entity_msg"), false); } - -} + public CEntityMessageScreenOverlayImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public bool StartEffect + { get => Accessor.GetBool("start_effect"); set => Accessor.SetBool("start_effect", value); } + public CEntityMsg EntityMsg + { get => new CEntityMsgImpl(NativeNetMessages.GetNestedMessage(Address, "entity_msg"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEntityMsgImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEntityMsgImpl.cs index 6a169873c..60cb623ac 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEntityMsgImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CEntityMsgImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CEntityMsgImpl : TypedProtobuf, CEntityMsg { - public CEntityMsgImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint TargetEntity - { get => Accessor.GetUInt32("target_entity"); set => Accessor.SetUInt32("target_entity", value); } + public CEntityMsgImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public uint TargetEntity + { get => Accessor.GetUInt32("target_entity"); set => Accessor.SetUInt32("target_entity", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGCStorePurchaseInit_LineItemImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGCStorePurchaseInit_LineItemImpl.cs index 65bc6c7aa..b3209fbe9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGCStorePurchaseInit_LineItemImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGCStorePurchaseInit_LineItemImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CGCStorePurchaseInit_LineItemImpl : TypedProtobuf, CGCStorePurchaseInit_LineItem { - public CGCStorePurchaseInit_LineItemImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint ItemDefId - { get => Accessor.GetUInt32("item_def_id"); set => Accessor.SetUInt32("item_def_id", value); } - - - public uint Quantity - { get => Accessor.GetUInt32("quantity"); set => Accessor.SetUInt32("quantity", value); } - - - public ulong CostInLocalCurrency - { get => Accessor.GetUInt64("cost_in_local_currency"); set => Accessor.SetUInt64("cost_in_local_currency", value); } - - - public uint PurchaseType - { get => Accessor.GetUInt32("purchase_type"); set => Accessor.SetUInt32("purchase_type", value); } - - - public ulong SupplementalData - { get => Accessor.GetUInt64("supplemental_data"); set => Accessor.SetUInt64("supplemental_data", value); } - -} + public CGCStorePurchaseInit_LineItemImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint ItemDefId + { get => Accessor.GetUInt32("item_def_id"); set => Accessor.SetUInt32("item_def_id", value); } + public uint Quantity + { get => Accessor.GetUInt32("quantity"); set => Accessor.SetUInt32("quantity", value); } + public ulong CostInLocalCurrency + { get => Accessor.GetUInt64("cost_in_local_currency"); set => Accessor.SetUInt64("cost_in_local_currency", value); } + public uint PurchaseType + { get => Accessor.GetUInt32("purchase_type"); set => Accessor.SetUInt32("purchase_type", value); } + public ulong SupplementalData + { get => Accessor.GetUInt64("supplemental_data"); set => Accessor.SetUInt64("supplemental_data", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGCToGCMsgMasterAckImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGCToGCMsgMasterAckImpl.cs index 0ac560e23..399aa3725 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGCToGCMsgMasterAckImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGCToGCMsgMasterAckImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CGCToGCMsgMasterAckImpl : TypedProtobuf, CGCToGCMsgMasterAck { - public CGCToGCMsgMasterAckImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint DirIndex - { get => Accessor.GetUInt32("dir_index"); set => Accessor.SetUInt32("dir_index", value); } - - - public uint GcType - { get => Accessor.GetUInt32("gc_type"); set => Accessor.SetUInt32("gc_type", value); } - -} + public CGCToGCMsgMasterAckImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint DirIndex + { get => Accessor.GetUInt32("dir_index"); set => Accessor.SetUInt32("dir_index", value); } + public uint GcType + { get => Accessor.GetUInt32("gc_type"); set => Accessor.SetUInt32("gc_type", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGCToGCMsgMasterAck_ResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGCToGCMsgMasterAck_ResponseImpl.cs index b99ef84d4..ff0a56baa 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGCToGCMsgMasterAck_ResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGCToGCMsgMasterAck_ResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CGCToGCMsgMasterAck_ResponseImpl : TypedProtobuf, CGCToGCMsgMasterAck_Response { - public CGCToGCMsgMasterAck_ResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Eresult - { get => Accessor.GetInt32("eresult"); set => Accessor.SetInt32("eresult", value); } + public CGCToGCMsgMasterAck_ResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public int Eresult + { get => Accessor.GetInt32("eresult"); set => Accessor.SetInt32("eresult", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGCToGCMsgMasterStartupCompleteImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGCToGCMsgMasterStartupCompleteImpl.cs index f73779d82..b1bdff9d2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGCToGCMsgMasterStartupCompleteImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGCToGCMsgMasterStartupCompleteImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,9 +8,8 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CGCToGCMsgMasterStartupCompleteImpl : TypedProtobuf, CGCToGCMsgMasterStartupComplete { - public CGCToGCMsgMasterStartupCompleteImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - + public CGCToGCMsgMasterStartupCompleteImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGCToGCMsgRoutedImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGCToGCMsgRoutedImpl.cs index 3bc35264d..83565674c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGCToGCMsgRoutedImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGCToGCMsgRoutedImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CGCToGCMsgRoutedImpl : TypedProtobuf, CGCToGCMsgRouted { - public CGCToGCMsgRoutedImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint MsgType - { get => Accessor.GetUInt32("msg_type"); set => Accessor.SetUInt32("msg_type", value); } - - - public ulong SenderId - { get => Accessor.GetUInt64("sender_id"); set => Accessor.SetUInt64("sender_id", value); } - - - public byte[] NetMessage - { get => Accessor.GetBytes("net_message"); set => Accessor.SetBytes("net_message", value); } - - - public uint Ip - { get => Accessor.GetUInt32("ip"); set => Accessor.SetUInt32("ip", value); } - -} + public CGCToGCMsgRoutedImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint MsgType + { get => Accessor.GetUInt32("msg_type"); set => Accessor.SetUInt32("msg_type", value); } + public ulong SenderId + { get => Accessor.GetUInt64("sender_id"); set => Accessor.SetUInt64("sender_id", value); } + public byte[] NetMessage + { get => Accessor.GetBytes("net_message"); set => Accessor.SetBytes("net_message", value); } + public uint Ip + { get => Accessor.GetUInt32("ip"); set => Accessor.SetUInt32("ip", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGCToGCMsgRoutedReplyImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGCToGCMsgRoutedReplyImpl.cs index 67272b579..59e0fc13c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGCToGCMsgRoutedReplyImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGCToGCMsgRoutedReplyImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CGCToGCMsgRoutedReplyImpl : TypedProtobuf, CGCToGCMsgRoutedReply { - public CGCToGCMsgRoutedReplyImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint MsgType - { get => Accessor.GetUInt32("msg_type"); set => Accessor.SetUInt32("msg_type", value); } - - - public byte[] NetMessage - { get => Accessor.GetBytes("net_message"); set => Accessor.SetBytes("net_message", value); } - -} + public CGCToGCMsgRoutedReplyImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint MsgType + { get => Accessor.GetUInt32("msg_type"); set => Accessor.SetUInt32("msg_type", value); } + public byte[] NetMessage + { get => Accessor.GetBytes("net_message"); set => Accessor.SetBytes("net_message", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameInfoImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameInfoImpl.cs index 6bca46a68..068597476 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameInfoImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameInfoImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CGameInfoImpl : TypedProtobuf, CGameInfo { - public CGameInfoImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public CGameInfo_CDotaGameInfo Dota - { get => new CGameInfo_CDotaGameInfoImpl(NativeNetMessages.GetNestedMessage(Address, "dota"), false); } - - - public CGameInfo_CCSGameInfo Cs - { get => new CGameInfo_CCSGameInfoImpl(NativeNetMessages.GetNestedMessage(Address, "cs"), false); } - -} + public CGameInfoImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public CGameInfo_CDotaGameInfo Dota + { get => new CGameInfo_CDotaGameInfoImpl(NativeNetMessages.GetNestedMessage(Address, "dota"), false); } + public CGameInfo_CCSGameInfo Cs + { get => new CGameInfo_CCSGameInfoImpl(NativeNetMessages.GetNestedMessage(Address, "cs"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameInfo_CCSGameInfoImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameInfo_CCSGameInfoImpl.cs index 1ce811c7c..6bc4a2b54 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameInfo_CCSGameInfoImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameInfo_CCSGameInfoImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CGameInfo_CCSGameInfoImpl : TypedProtobuf, CGameInfo_CCSGameInfo { - public CGameInfo_CCSGameInfoImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldValueType RoundStartTicks - { get => new ProtobufRepeatedFieldValueType(Accessor, "round_start_ticks"); } + public CGameInfo_CCSGameInfoImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public IProtobufRepeatedFieldValueType RoundStartTicks + { get => new ProtobufRepeatedFieldValueType(Accessor, "round_start_ticks"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameInfo_CDotaGameInfoImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameInfo_CDotaGameInfoImpl.cs index 85510b85e..6964cbc5b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameInfo_CDotaGameInfoImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameInfo_CDotaGameInfoImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,52 +8,30 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CGameInfo_CDotaGameInfoImpl : TypedProtobuf, CGameInfo_CDotaGameInfo { - public CGameInfo_CDotaGameInfoImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong MatchId - { get => Accessor.GetUInt64("match_id"); set => Accessor.SetUInt64("match_id", value); } - - - public int GameMode - { get => Accessor.GetInt32("game_mode"); set => Accessor.SetInt32("game_mode", value); } - - - public int GameWinner - { get => Accessor.GetInt32("game_winner"); set => Accessor.SetInt32("game_winner", value); } - - - public IProtobufRepeatedFieldSubMessageType PlayerInfo - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "player_info"); } - - - public uint Leagueid - { get => Accessor.GetUInt32("leagueid"); set => Accessor.SetUInt32("leagueid", value); } - - - public IProtobufRepeatedFieldSubMessageType PicksBans - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "picks_bans"); } - - - public uint RadiantTeamId - { get => Accessor.GetUInt32("radiant_team_id"); set => Accessor.SetUInt32("radiant_team_id", value); } - - - public uint DireTeamId - { get => Accessor.GetUInt32("dire_team_id"); set => Accessor.SetUInt32("dire_team_id", value); } - - - public string RadiantTeamTag - { get => Accessor.GetString("radiant_team_tag"); set => Accessor.SetString("radiant_team_tag", value); } - - - public string DireTeamTag - { get => Accessor.GetString("dire_team_tag"); set => Accessor.SetString("dire_team_tag", value); } - - - public uint EndTime - { get => Accessor.GetUInt32("end_time"); set => Accessor.SetUInt32("end_time", value); } - -} + public CGameInfo_CDotaGameInfoImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong MatchId + { get => Accessor.GetUInt64("match_id"); set => Accessor.SetUInt64("match_id", value); } + public int GameMode + { get => Accessor.GetInt32("game_mode"); set => Accessor.SetInt32("game_mode", value); } + public int GameWinner + { get => Accessor.GetInt32("game_winner"); set => Accessor.SetInt32("game_winner", value); } + public IProtobufRepeatedFieldSubMessageType PlayerInfo + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "player_info"); } + public uint Leagueid + { get => Accessor.GetUInt32("leagueid"); set => Accessor.SetUInt32("leagueid", value); } + public IProtobufRepeatedFieldSubMessageType PicksBans + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "picks_bans"); } + public uint RadiantTeamId + { get => Accessor.GetUInt32("radiant_team_id"); set => Accessor.SetUInt32("radiant_team_id", value); } + public uint DireTeamId + { get => Accessor.GetUInt32("dire_team_id"); set => Accessor.SetUInt32("dire_team_id", value); } + public string RadiantTeamTag + { get => Accessor.GetString("radiant_team_tag"); set => Accessor.SetString("radiant_team_tag", value); } + public string DireTeamTag + { get => Accessor.GetString("dire_team_tag"); set => Accessor.SetString("dire_team_tag", value); } + public uint EndTime + { get => Accessor.GetUInt32("end_time"); set => Accessor.SetUInt32("end_time", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameInfo_CDotaGameInfo_CHeroSelectEventImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameInfo_CDotaGameInfo_CHeroSelectEventImpl.cs index b0398e0f9..c714b1ea8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameInfo_CDotaGameInfo_CHeroSelectEventImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameInfo_CDotaGameInfo_CHeroSelectEventImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CGameInfo_CDotaGameInfo_CHeroSelectEventImpl : TypedProtobuf, CGameInfo_CDotaGameInfo_CHeroSelectEvent { - public CGameInfo_CDotaGameInfo_CHeroSelectEventImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public bool IsPick - { get => Accessor.GetBool("is_pick"); set => Accessor.SetBool("is_pick", value); } - - - public uint Team - { get => Accessor.GetUInt32("team"); set => Accessor.SetUInt32("team", value); } - - - public int HeroId - { get => Accessor.GetInt32("hero_id"); set => Accessor.SetInt32("hero_id", value); } - -} + public CGameInfo_CDotaGameInfo_CHeroSelectEventImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public bool IsPick + { get => Accessor.GetBool("is_pick"); set => Accessor.SetBool("is_pick", value); } + public uint Team + { get => Accessor.GetUInt32("team"); set => Accessor.SetUInt32("team", value); } + public int HeroId + { get => Accessor.GetInt32("hero_id"); set => Accessor.SetInt32("hero_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameInfo_CDotaGameInfo_CPlayerInfoImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameInfo_CDotaGameInfo_CPlayerInfoImpl.cs index d83a7831d..5ce283e5e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameInfo_CDotaGameInfo_CPlayerInfoImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameInfo_CDotaGameInfo_CPlayerInfoImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CGameInfo_CDotaGameInfo_CPlayerInfoImpl : TypedProtobuf, CGameInfo_CDotaGameInfo_CPlayerInfo { - public CGameInfo_CDotaGameInfo_CPlayerInfoImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string HeroName - { get => Accessor.GetString("hero_name"); set => Accessor.SetString("hero_name", value); } - - - public string PlayerName - { get => Accessor.GetString("player_name"); set => Accessor.SetString("player_name", value); } - - - public bool IsFakeClient - { get => Accessor.GetBool("is_fake_client"); set => Accessor.SetBool("is_fake_client", value); } - - - public ulong Steamid - { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } - - - public int GameTeam - { get => Accessor.GetInt32("game_team"); set => Accessor.SetInt32("game_team", value); } - -} + public CGameInfo_CDotaGameInfo_CPlayerInfoImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string HeroName + { get => Accessor.GetString("hero_name"); set => Accessor.SetString("hero_name", value); } + public string PlayerName + { get => Accessor.GetString("player_name"); set => Accessor.SetString("player_name", value); } + public bool IsFakeClient + { get => Accessor.GetBool("is_fake_client"); set => Accessor.SetBool("is_fake_client", value); } + public ulong Steamid + { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } + public int GameTeam + { get => Accessor.GetInt32("game_team"); set => Accessor.SetInt32("game_team", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameServers_AggregationQuery_RequestImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameServers_AggregationQuery_RequestImpl.cs index cd893ed39..a60adc6a1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameServers_AggregationQuery_RequestImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameServers_AggregationQuery_RequestImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CGameServers_AggregationQuery_RequestImpl : TypedProtobuf, CGameServers_AggregationQuery_Request { - public CGameServers_AggregationQuery_RequestImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string Filter - { get => Accessor.GetString("filter"); set => Accessor.SetString("filter", value); } - - - public IProtobufRepeatedFieldValueType GroupFields - { get => new ProtobufRepeatedFieldValueType(Accessor, "group_fields"); } - -} + public CGameServers_AggregationQuery_RequestImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string Filter + { get => Accessor.GetString("filter"); set => Accessor.SetString("filter", value); } + public IProtobufRepeatedFieldValueType GroupFields + { get => new ProtobufRepeatedFieldValueType(Accessor, "group_fields"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameServers_AggregationQuery_ResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameServers_AggregationQuery_ResponseImpl.cs index 678374c23..3974647aa 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameServers_AggregationQuery_ResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameServers_AggregationQuery_ResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CGameServers_AggregationQuery_ResponseImpl : TypedProtobuf, CGameServers_AggregationQuery_Response { - public CGameServers_AggregationQuery_ResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldSubMessageType Groups - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "groups"); } + public CGameServers_AggregationQuery_ResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public IProtobufRepeatedFieldSubMessageType Groups + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "groups"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameServers_AggregationQuery_Response_GroupImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameServers_AggregationQuery_Response_GroupImpl.cs index dd1fbaa0b..9a2bd4cdb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameServers_AggregationQuery_Response_GroupImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CGameServers_AggregationQuery_Response_GroupImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,36 +8,22 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CGameServers_AggregationQuery_Response_GroupImpl : TypedProtobuf, CGameServers_AggregationQuery_Response_Group { - public CGameServers_AggregationQuery_Response_GroupImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldValueType GroupValues - { get => new ProtobufRepeatedFieldValueType(Accessor, "group_values"); } - - - public uint ServersEmpty - { get => Accessor.GetUInt32("servers_empty"); set => Accessor.SetUInt32("servers_empty", value); } - - - public uint ServersFull - { get => Accessor.GetUInt32("servers_full"); set => Accessor.SetUInt32("servers_full", value); } - - - public uint ServersTotal - { get => Accessor.GetUInt32("servers_total"); set => Accessor.SetUInt32("servers_total", value); } - - - public uint PlayersHumans - { get => Accessor.GetUInt32("players_humans"); set => Accessor.SetUInt32("players_humans", value); } - - - public uint PlayersBots - { get => Accessor.GetUInt32("players_bots"); set => Accessor.SetUInt32("players_bots", value); } - - - public uint PlayerCapacity - { get => Accessor.GetUInt32("player_capacity"); set => Accessor.SetUInt32("player_capacity", value); } - -} + public CGameServers_AggregationQuery_Response_GroupImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public IProtobufRepeatedFieldValueType GroupValues + { get => new ProtobufRepeatedFieldValueType(Accessor, "group_values"); } + public uint ServersEmpty + { get => Accessor.GetUInt32("servers_empty"); set => Accessor.SetUInt32("servers_empty", value); } + public uint ServersFull + { get => Accessor.GetUInt32("servers_full"); set => Accessor.SetUInt32("servers_full", value); } + public uint ServersTotal + { get => Accessor.GetUInt32("servers_total"); set => Accessor.SetUInt32("servers_total", value); } + public uint PlayersHumans + { get => Accessor.GetUInt32("players_humans"); set => Accessor.SetUInt32("players_humans", value); } + public uint PlayersBots + { get => Accessor.GetUInt32("players_bots"); set => Accessor.SetUInt32("players_bots", value); } + public uint PlayerCapacity + { get => Accessor.GetUInt32("player_capacity"); set => Accessor.SetUInt32("player_capacity", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CInButtonStatePBImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CInButtonStatePBImpl.cs index f41f04a91..29f6484ff 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CInButtonStatePBImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CInButtonStatePBImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CInButtonStatePBImpl : TypedProtobuf, CInButtonStatePB { - public CInButtonStatePBImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Buttonstate1 - { get => Accessor.GetUInt64("buttonstate1"); set => Accessor.SetUInt64("buttonstate1", value); } - - - public ulong Buttonstate2 - { get => Accessor.GetUInt64("buttonstate2"); set => Accessor.SetUInt64("buttonstate2", value); } - - - public ulong Buttonstate3 - { get => Accessor.GetUInt64("buttonstate3"); set => Accessor.SetUInt64("buttonstate3", value); } - -} + public CInButtonStatePBImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong Buttonstate1 + { get => Accessor.GetUInt64("buttonstate1"); set => Accessor.SetUInt64("buttonstate1", value); } + public ulong Buttonstate2 + { get => Accessor.GetUInt64("buttonstate2"); set => Accessor.SetUInt64("buttonstate2", value); } + public ulong Buttonstate3 + { get => Accessor.GetUInt64("buttonstate3"); set => Accessor.SetUInt64("buttonstate3", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgAccountDetailsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgAccountDetailsImpl.cs index 8bc25a01c..7f53d5028 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgAccountDetailsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgAccountDetailsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,80 +8,44 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgAccountDetailsImpl : TypedProtobuf, CMsgAccountDetails { - public CMsgAccountDetailsImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public bool Valid - { get => Accessor.GetBool("valid"); set => Accessor.SetBool("valid", value); } - - - public string AccountName - { get => Accessor.GetString("account_name"); set => Accessor.SetString("account_name", value); } - - - public bool PublicProfile - { get => Accessor.GetBool("public_profile"); set => Accessor.SetBool("public_profile", value); } - - - public bool PublicInventory - { get => Accessor.GetBool("public_inventory"); set => Accessor.SetBool("public_inventory", value); } - - - public bool VacBanned - { get => Accessor.GetBool("vac_banned"); set => Accessor.SetBool("vac_banned", value); } - - - public bool CyberCafe - { get => Accessor.GetBool("cyber_cafe"); set => Accessor.SetBool("cyber_cafe", value); } - - - public bool SchoolAccount - { get => Accessor.GetBool("school_account"); set => Accessor.SetBool("school_account", value); } - - - public bool FreeTrialAccount - { get => Accessor.GetBool("free_trial_account"); set => Accessor.SetBool("free_trial_account", value); } - - - public bool Subscribed - { get => Accessor.GetBool("subscribed"); set => Accessor.SetBool("subscribed", value); } - - - public bool LowViolence - { get => Accessor.GetBool("low_violence"); set => Accessor.SetBool("low_violence", value); } - - - public bool Limited - { get => Accessor.GetBool("limited"); set => Accessor.SetBool("limited", value); } - - - public bool Trusted - { get => Accessor.GetBool("trusted"); set => Accessor.SetBool("trusted", value); } - - - public uint Package - { get => Accessor.GetUInt32("package"); set => Accessor.SetUInt32("package", value); } - - - public uint TimeCached - { get => Accessor.GetUInt32("time_cached"); set => Accessor.SetUInt32("time_cached", value); } - - - public bool AccountLocked - { get => Accessor.GetBool("account_locked"); set => Accessor.SetBool("account_locked", value); } - - - public bool CommunityBanned - { get => Accessor.GetBool("community_banned"); set => Accessor.SetBool("community_banned", value); } - - - public bool TradeBanned - { get => Accessor.GetBool("trade_banned"); set => Accessor.SetBool("trade_banned", value); } - - - public bool EligibleForCommunityMarket - { get => Accessor.GetBool("eligible_for_community_market"); set => Accessor.SetBool("eligible_for_community_market", value); } - -} + public CMsgAccountDetailsImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public bool Valid + { get => Accessor.GetBool("valid"); set => Accessor.SetBool("valid", value); } + public string AccountName + { get => Accessor.GetString("account_name"); set => Accessor.SetString("account_name", value); } + public bool PublicProfile + { get => Accessor.GetBool("public_profile"); set => Accessor.SetBool("public_profile", value); } + public bool PublicInventory + { get => Accessor.GetBool("public_inventory"); set => Accessor.SetBool("public_inventory", value); } + public bool VacBanned + { get => Accessor.GetBool("vac_banned"); set => Accessor.SetBool("vac_banned", value); } + public bool CyberCafe + { get => Accessor.GetBool("cyber_cafe"); set => Accessor.SetBool("cyber_cafe", value); } + public bool SchoolAccount + { get => Accessor.GetBool("school_account"); set => Accessor.SetBool("school_account", value); } + public bool FreeTrialAccount + { get => Accessor.GetBool("free_trial_account"); set => Accessor.SetBool("free_trial_account", value); } + public bool Subscribed + { get => Accessor.GetBool("subscribed"); set => Accessor.SetBool("subscribed", value); } + public bool LowViolence + { get => Accessor.GetBool("low_violence"); set => Accessor.SetBool("low_violence", value); } + public bool Limited + { get => Accessor.GetBool("limited"); set => Accessor.SetBool("limited", value); } + public bool Trusted + { get => Accessor.GetBool("trusted"); set => Accessor.SetBool("trusted", value); } + public uint Package + { get => Accessor.GetUInt32("package"); set => Accessor.SetUInt32("package", value); } + public uint TimeCached + { get => Accessor.GetUInt32("time_cached"); set => Accessor.SetUInt32("time_cached", value); } + public bool AccountLocked + { get => Accessor.GetBool("account_locked"); set => Accessor.SetBool("account_locked", value); } + public bool CommunityBanned + { get => Accessor.GetBool("community_banned"); set => Accessor.SetBool("community_banned", value); } + public bool TradeBanned + { get => Accessor.GetBool("trade_banned"); set => Accessor.SetBool("trade_banned", value); } + public bool EligibleForCommunityMarket + { get => Accessor.GetBool("eligible_for_community_market"); set => Accessor.SetBool("eligible_for_community_market", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgAcknowledgeRentalExpirationImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgAcknowledgeRentalExpirationImpl.cs index 978a1983f..944a2b486 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgAcknowledgeRentalExpirationImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgAcknowledgeRentalExpirationImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgAcknowledgeRentalExpirationImpl : TypedProtobuf, CMsgAcknowledgeRentalExpiration { - public CMsgAcknowledgeRentalExpirationImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong CrateItemId - { get => Accessor.GetUInt64("crate_item_id"); set => Accessor.SetUInt64("crate_item_id", value); } + public CMsgAcknowledgeRentalExpirationImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public ulong CrateItemId + { get => Accessor.GetUInt64("crate_item_id"); set => Accessor.SetUInt64("crate_item_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgAdjustEquipSlotImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgAdjustEquipSlotImpl.cs index 5e48c0fcb..e7b3497c8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgAdjustEquipSlotImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgAdjustEquipSlotImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgAdjustEquipSlotImpl : TypedProtobuf, CMsgAdjustEquipSlot { - public CMsgAdjustEquipSlotImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint ClassId - { get => Accessor.GetUInt32("class_id"); set => Accessor.SetUInt32("class_id", value); } - - - public uint SlotId - { get => Accessor.GetUInt32("slot_id"); set => Accessor.SetUInt32("slot_id", value); } - - - public ulong ItemId - { get => Accessor.GetUInt64("item_id"); set => Accessor.SetUInt64("item_id", value); } - -} + public CMsgAdjustEquipSlotImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint ClassId + { get => Accessor.GetUInt32("class_id"); set => Accessor.SetUInt32("class_id", value); } + public uint SlotId + { get => Accessor.GetUInt32("slot_id"); set => Accessor.SetUInt32("slot_id", value); } + public ulong ItemId + { get => Accessor.GetUInt64("item_id"); set => Accessor.SetUInt64("item_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgAdjustEquipSlotsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgAdjustEquipSlotsImpl.cs index 0cd810c14..3baffd4c4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgAdjustEquipSlotsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgAdjustEquipSlotsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgAdjustEquipSlotsImpl : TypedProtobuf, CMsgAdjustEquipSlots { - public CMsgAdjustEquipSlotsImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldSubMessageType Slots - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "slots"); } - - - public uint ChangeNum - { get => Accessor.GetUInt32("change_num"); set => Accessor.SetUInt32("change_num", value); } - -} + public CMsgAdjustEquipSlotsImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public IProtobufRepeatedFieldSubMessageType Slots + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "slots"); } + public uint ChangeNum + { get => Accessor.GetUInt32("change_num"); set => Accessor.SetUInt32("change_num", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgAdjustItemEquippedStateImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgAdjustItemEquippedStateImpl.cs deleted file mode 100644 index 81f171f40..000000000 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgAdjustItemEquippedStateImpl.cs +++ /dev/null @@ -1,32 +0,0 @@ - -using SwiftlyS2.Core.Natives; -using SwiftlyS2.Core.NetMessages; -using SwiftlyS2.Shared.Natives; -using SwiftlyS2.Shared.NetMessages; -using SwiftlyS2.Shared.ProtobufDefinitions; - -namespace SwiftlyS2.Core.ProtobufDefinitions; - -internal class CMsgAdjustItemEquippedStateImpl : TypedProtobuf, CMsgAdjustItemEquippedState -{ - public CMsgAdjustItemEquippedStateImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong ItemId - { get => Accessor.GetUInt64("item_id"); set => Accessor.SetUInt64("item_id", value); } - - - public uint NewClass - { get => Accessor.GetUInt32("new_class"); set => Accessor.SetUInt32("new_class", value); } - - - public uint NewSlot - { get => Accessor.GetUInt32("new_slot"); set => Accessor.SetUInt32("new_slot", value); } - - - public bool Swap - { get => Accessor.GetBool("swap"); set => Accessor.SetBool("swap", value); } - -} diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgAdjustItemEquippedStateMultiImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgAdjustItemEquippedStateMultiImpl.cs deleted file mode 100644 index 07d994614..000000000 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgAdjustItemEquippedStateMultiImpl.cs +++ /dev/null @@ -1,28 +0,0 @@ - -using SwiftlyS2.Core.Natives; -using SwiftlyS2.Core.NetMessages; -using SwiftlyS2.Shared.Natives; -using SwiftlyS2.Shared.NetMessages; -using SwiftlyS2.Shared.ProtobufDefinitions; - -namespace SwiftlyS2.Core.ProtobufDefinitions; - -internal class CMsgAdjustItemEquippedStateMultiImpl : TypedProtobuf, CMsgAdjustItemEquippedStateMulti -{ - public CMsgAdjustItemEquippedStateMultiImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldValueType TEquips - { get => new ProtobufRepeatedFieldValueType(Accessor, "t_equips"); } - - - public IProtobufRepeatedFieldValueType CtEquips - { get => new ProtobufRepeatedFieldValueType(Accessor, "ct_equips"); } - - - public IProtobufRepeatedFieldValueType NoteamEquips - { get => new ProtobufRepeatedFieldValueType(Accessor, "noteam_equips"); } - -} diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgApplyEggEssenceImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgApplyEggEssenceImpl.cs index 6847df58c..b32dcc558 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgApplyEggEssenceImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgApplyEggEssenceImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgApplyEggEssenceImpl : TypedProtobuf, CMsgApplyEggEssence { - public CMsgApplyEggEssenceImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong EssenceItemId - { get => Accessor.GetUInt64("essence_item_id"); set => Accessor.SetUInt64("essence_item_id", value); } - - - public ulong EggItemId - { get => Accessor.GetUInt64("egg_item_id"); set => Accessor.SetUInt64("egg_item_id", value); } - -} + public CMsgApplyEggEssenceImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong EssenceItemId + { get => Accessor.GetUInt64("essence_item_id"); set => Accessor.SetUInt64("essence_item_id", value); } + public ulong EggItemId + { get => Accessor.GetUInt64("egg_item_id"); set => Accessor.SetUInt64("egg_item_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgApplyPennantUpgradeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgApplyPennantUpgradeImpl.cs index ff863854b..f6cd72883 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgApplyPennantUpgradeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgApplyPennantUpgradeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgApplyPennantUpgradeImpl : TypedProtobuf, CMsgApplyPennantUpgrade { - public CMsgApplyPennantUpgradeImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong UpgradeItemId - { get => Accessor.GetUInt64("upgrade_item_id"); set => Accessor.SetUInt64("upgrade_item_id", value); } - - - public ulong PennantItemId - { get => Accessor.GetUInt64("pennant_item_id"); set => Accessor.SetUInt64("pennant_item_id", value); } - -} + public CMsgApplyPennantUpgradeImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong UpgradeItemId + { get => Accessor.GetUInt64("upgrade_item_id"); set => Accessor.SetUInt64("upgrade_item_id", value); } + public ulong PennantItemId + { get => Accessor.GetUInt64("pennant_item_id"); set => Accessor.SetUInt64("pennant_item_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgApplyStatTrakSwapImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgApplyStatTrakSwapImpl.cs index 6cf9b986b..ddc710650 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgApplyStatTrakSwapImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgApplyStatTrakSwapImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgApplyStatTrakSwapImpl : TypedProtobuf, CMsgApplyStatTrakSwap { - public CMsgApplyStatTrakSwapImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong ToolItemId - { get => Accessor.GetUInt64("tool_item_id"); set => Accessor.SetUInt64("tool_item_id", value); } - - - public ulong Item1ItemId - { get => Accessor.GetUInt64("item_1_item_id"); set => Accessor.SetUInt64("item_1_item_id", value); } - - - public ulong Item2ItemId - { get => Accessor.GetUInt64("item_2_item_id"); set => Accessor.SetUInt64("item_2_item_id", value); } - -} + public CMsgApplyStatTrakSwapImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong ToolItemId + { get => Accessor.GetUInt64("tool_item_id"); set => Accessor.SetUInt64("tool_item_id", value); } + public ulong Item1ItemId + { get => Accessor.GetUInt64("item_1_item_id"); set => Accessor.SetUInt64("item_1_item_id", value); } + public ulong Item2ItemId + { get => Accessor.GetUInt64("item_2_item_id"); set => Accessor.SetUInt64("item_2_item_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgApplyStickerImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgApplyStickerImpl.cs index 4ae2d8976..64b57272b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgApplyStickerImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgApplyStickerImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,52 +8,30 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgApplyStickerImpl : TypedProtobuf, CMsgApplySticker { - public CMsgApplyStickerImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong StickerItemId - { get => Accessor.GetUInt64("sticker_item_id"); set => Accessor.SetUInt64("sticker_item_id", value); } - - - public ulong ItemItemId - { get => Accessor.GetUInt64("item_item_id"); set => Accessor.SetUInt64("item_item_id", value); } - - - public uint StickerSlot - { get => Accessor.GetUInt32("sticker_slot"); set => Accessor.SetUInt32("sticker_slot", value); } - - - public uint BaseitemDefidx - { get => Accessor.GetUInt32("baseitem_defidx"); set => Accessor.SetUInt32("baseitem_defidx", value); } - - - public float StickerWear - { get => Accessor.GetFloat("sticker_wear"); set => Accessor.SetFloat("sticker_wear", value); } - - - public float StickerRotation - { get => Accessor.GetFloat("sticker_rotation"); set => Accessor.SetFloat("sticker_rotation", value); } - - - public float StickerScale - { get => Accessor.GetFloat("sticker_scale"); set => Accessor.SetFloat("sticker_scale", value); } - - - public float StickerOffsetX - { get => Accessor.GetFloat("sticker_offset_x"); set => Accessor.SetFloat("sticker_offset_x", value); } - - - public float StickerOffsetY - { get => Accessor.GetFloat("sticker_offset_y"); set => Accessor.SetFloat("sticker_offset_y", value); } - - - public float StickerOffsetZ - { get => Accessor.GetFloat("sticker_offset_z"); set => Accessor.SetFloat("sticker_offset_z", value); } - - - public float StickerWearTarget - { get => Accessor.GetFloat("sticker_wear_target"); set => Accessor.SetFloat("sticker_wear_target", value); } - -} + public CMsgApplyStickerImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong StickerItemId + { get => Accessor.GetUInt64("sticker_item_id"); set => Accessor.SetUInt64("sticker_item_id", value); } + public ulong ItemItemId + { get => Accessor.GetUInt64("item_item_id"); set => Accessor.SetUInt64("item_item_id", value); } + public uint StickerSlot + { get => Accessor.GetUInt32("sticker_slot"); set => Accessor.SetUInt32("sticker_slot", value); } + public uint BaseitemDefidx + { get => Accessor.GetUInt32("baseitem_defidx"); set => Accessor.SetUInt32("baseitem_defidx", value); } + public float StickerWear + { get => Accessor.GetFloat("sticker_wear"); set => Accessor.SetFloat("sticker_wear", value); } + public float StickerRotation + { get => Accessor.GetFloat("sticker_rotation"); set => Accessor.SetFloat("sticker_rotation", value); } + public float StickerScale + { get => Accessor.GetFloat("sticker_scale"); set => Accessor.SetFloat("sticker_scale", value); } + public float StickerOffsetX + { get => Accessor.GetFloat("sticker_offset_x"); set => Accessor.SetFloat("sticker_offset_x", value); } + public float StickerOffsetY + { get => Accessor.GetFloat("sticker_offset_y"); set => Accessor.SetFloat("sticker_offset_y", value); } + public float StickerOffsetZ + { get => Accessor.GetFloat("sticker_offset_z"); set => Accessor.SetFloat("sticker_offset_z", value); } + public float StickerWearTarget + { get => Accessor.GetFloat("sticker_wear_target"); set => Accessor.SetFloat("sticker_wear_target", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgApplyStrangePartImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgApplyStrangePartImpl.cs index d674a6a68..7ac3af3a3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgApplyStrangePartImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgApplyStrangePartImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgApplyStrangePartImpl : TypedProtobuf, CMsgApplyStrangePart { - public CMsgApplyStrangePartImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong StrangePartItemId - { get => Accessor.GetUInt64("strange_part_item_id"); set => Accessor.SetUInt64("strange_part_item_id", value); } - - - public ulong ItemItemId - { get => Accessor.GetUInt64("item_item_id"); set => Accessor.SetUInt64("item_item_id", value); } - -} + public CMsgApplyStrangePartImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong StrangePartItemId + { get => Accessor.GetUInt64("strange_part_item_id"); set => Accessor.SetUInt64("strange_part_item_id", value); } + public ulong ItemItemId + { get => Accessor.GetUInt64("item_item_id"); set => Accessor.SetUInt64("item_item_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgCStrike15WelcomeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgCStrike15WelcomeImpl.cs index 93eb7c199..b5165938a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgCStrike15WelcomeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgCStrike15WelcomeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,36 +8,22 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgCStrike15WelcomeImpl : TypedProtobuf, CMsgCStrike15Welcome { - public CMsgCStrike15WelcomeImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint StoreItemHash - { get => Accessor.GetUInt32("store_item_hash"); set => Accessor.SetUInt32("store_item_hash", value); } - - - public uint Timeplayedconsecutively - { get => Accessor.GetUInt32("timeplayedconsecutively"); set => Accessor.SetUInt32("timeplayedconsecutively", value); } - - - public uint TimeFirstPlayed - { get => Accessor.GetUInt32("time_first_played"); set => Accessor.SetUInt32("time_first_played", value); } - - - public uint LastTimePlayed - { get => Accessor.GetUInt32("last_time_played"); set => Accessor.SetUInt32("last_time_played", value); } - - - public uint LastIpAddress - { get => Accessor.GetUInt32("last_ip_address"); set => Accessor.SetUInt32("last_ip_address", value); } - - - public ulong Gscookieid - { get => Accessor.GetUInt64("gscookieid"); set => Accessor.SetUInt64("gscookieid", value); } - - - public ulong Uniqueid - { get => Accessor.GetUInt64("uniqueid"); set => Accessor.SetUInt64("uniqueid", value); } - -} + public CMsgCStrike15WelcomeImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint StoreItemHash + { get => Accessor.GetUInt32("store_item_hash"); set => Accessor.SetUInt32("store_item_hash", value); } + public uint Timeplayedconsecutively + { get => Accessor.GetUInt32("timeplayedconsecutively"); set => Accessor.SetUInt32("timeplayedconsecutively", value); } + public uint TimeFirstPlayed + { get => Accessor.GetUInt32("time_first_played"); set => Accessor.SetUInt32("time_first_played", value); } + public uint LastTimePlayed + { get => Accessor.GetUInt32("last_time_played"); set => Accessor.SetUInt32("last_time_played", value); } + public uint LastIpAddress + { get => Accessor.GetUInt32("last_ip_address"); set => Accessor.SetUInt32("last_ip_address", value); } + public ulong Gscookieid + { get => Accessor.GetUInt64("gscookieid"); set => Accessor.SetUInt64("gscookieid", value); } + public ulong Uniqueid + { get => Accessor.GetUInt64("uniqueid"); set => Accessor.SetUInt64("uniqueid", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgCasketItemImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgCasketItemImpl.cs index a710d17ce..66736eb99 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgCasketItemImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgCasketItemImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgCasketItemImpl : TypedProtobuf, CMsgCasketItem { - public CMsgCasketItemImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong CasketItemId - { get => Accessor.GetUInt64("casket_item_id"); set => Accessor.SetUInt64("casket_item_id", value); } - - - public ulong ItemItemId - { get => Accessor.GetUInt64("item_item_id"); set => Accessor.SetUInt64("item_item_id", value); } - -} + public CMsgCasketItemImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong CasketItemId + { get => Accessor.GetUInt64("casket_item_id"); set => Accessor.SetUInt64("casket_item_id", value); } + public ulong ItemItemId + { get => Accessor.GetUInt64("item_item_id"); set => Accessor.SetUInt64("item_item_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgClearDecalsForEntityEventImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgClearDecalsForEntityEventImpl.cs index 5427ea632..1b11a9561 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgClearDecalsForEntityEventImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgClearDecalsForEntityEventImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgClearDecalsForEntityEventImpl : NetMessage, CMsgClearDecalsForEntityEvent { - public CMsgClearDecalsForEntityEventImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint Flagstoclear - { get => Accessor.GetUInt32("flagstoclear"); set => Accessor.SetUInt32("flagstoclear", value); } - - - public uint Entityhandle - { get => Accessor.GetUInt32("entityhandle"); set => Accessor.SetUInt32("entityhandle", value); } - -} + public CMsgClearDecalsForEntityEventImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public uint Flagstoclear + { get => Accessor.GetUInt32("flagstoclear"); set => Accessor.SetUInt32("flagstoclear", value); } + public uint Entityhandle + { get => Accessor.GetUInt32("entityhandle"); set => Accessor.SetUInt32("entityhandle", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgClearEntityDecalsEventImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgClearEntityDecalsEventImpl.cs index 00fe30907..9e69bcac8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgClearEntityDecalsEventImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgClearEntityDecalsEventImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgClearEntityDecalsEventImpl : NetMessage, CMsgClearEntityDecalsEvent { - public CMsgClearEntityDecalsEventImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint Flagstoclear - { get => Accessor.GetUInt32("flagstoclear"); set => Accessor.SetUInt32("flagstoclear", value); } + public CMsgClearEntityDecalsEventImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public uint Flagstoclear + { get => Accessor.GetUInt32("flagstoclear"); set => Accessor.SetUInt32("flagstoclear", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgClearWorldDecalsEventImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgClearWorldDecalsEventImpl.cs index 4f248c7fb..a6c6a2586 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgClearWorldDecalsEventImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgClearWorldDecalsEventImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgClearWorldDecalsEventImpl : NetMessage, CMsgClearWorldDecalsEvent { - public CMsgClearWorldDecalsEventImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint Flagstoclear - { get => Accessor.GetUInt32("flagstoclear"); set => Accessor.SetUInt32("flagstoclear", value); } + public CMsgClearWorldDecalsEventImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public uint Flagstoclear + { get => Accessor.GetUInt32("flagstoclear"); set => Accessor.SetUInt32("flagstoclear", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgClientHelloImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgClientHelloImpl.cs index 9bbaaf4a1..d0f0ebcff 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgClientHelloImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgClientHelloImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,44 +8,26 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgClientHelloImpl : TypedProtobuf, CMsgClientHello { - public CMsgClientHelloImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Version - { get => Accessor.GetUInt32("version"); set => Accessor.SetUInt32("version", value); } - - - public IProtobufRepeatedFieldSubMessageType SocacheHaveVersions - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "socache_have_versions"); } - - - public uint ClientSessionNeed - { get => Accessor.GetUInt32("client_session_need"); set => Accessor.SetUInt32("client_session_need", value); } - - - public uint ClientLauncher - { get => Accessor.GetUInt32("client_launcher"); set => Accessor.SetUInt32("client_launcher", value); } - - - public uint PartnerSrcid - { get => Accessor.GetUInt32("partner_srcid"); set => Accessor.SetUInt32("partner_srcid", value); } - - - public uint PartnerAccountid - { get => Accessor.GetUInt32("partner_accountid"); set => Accessor.SetUInt32("partner_accountid", value); } - - - public uint PartnerAccountflags - { get => Accessor.GetUInt32("partner_accountflags"); set => Accessor.SetUInt32("partner_accountflags", value); } - - - public uint PartnerAccountbalance - { get => Accessor.GetUInt32("partner_accountbalance"); set => Accessor.SetUInt32("partner_accountbalance", value); } - - - public uint SteamLauncher - { get => Accessor.GetUInt32("steam_launcher"); set => Accessor.SetUInt32("steam_launcher", value); } - -} + public CMsgClientHelloImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Version + { get => Accessor.GetUInt32("version"); set => Accessor.SetUInt32("version", value); } + public IProtobufRepeatedFieldSubMessageType SocacheHaveVersions + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "socache_have_versions"); } + public uint ClientSessionNeed + { get => Accessor.GetUInt32("client_session_need"); set => Accessor.SetUInt32("client_session_need", value); } + public uint ClientLauncher + { get => Accessor.GetUInt32("client_launcher"); set => Accessor.SetUInt32("client_launcher", value); } + public uint PartnerSrcid + { get => Accessor.GetUInt32("partner_srcid"); set => Accessor.SetUInt32("partner_srcid", value); } + public uint PartnerAccountid + { get => Accessor.GetUInt32("partner_accountid"); set => Accessor.SetUInt32("partner_accountid", value); } + public uint PartnerAccountflags + { get => Accessor.GetUInt32("partner_accountflags"); set => Accessor.SetUInt32("partner_accountflags", value); } + public uint PartnerAccountbalance + { get => Accessor.GetUInt32("partner_accountbalance"); set => Accessor.SetUInt32("partner_accountbalance", value); } + public uint SteamLauncher + { get => Accessor.GetUInt32("steam_launcher"); set => Accessor.SetUInt32("steam_launcher", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgClientWelcomeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgClientWelcomeImpl.cs index f0c4a9448..424c7b942 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgClientWelcomeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgClientWelcomeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,52 +8,30 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgClientWelcomeImpl : TypedProtobuf, CMsgClientWelcome { - public CMsgClientWelcomeImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Version - { get => Accessor.GetUInt32("version"); set => Accessor.SetUInt32("version", value); } - - - public byte[] GameData - { get => Accessor.GetBytes("game_data"); set => Accessor.SetBytes("game_data", value); } - - - public IProtobufRepeatedFieldSubMessageType OutofdateSubscribedCaches - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "outofdate_subscribed_caches"); } - - - public IProtobufRepeatedFieldSubMessageType UptodateSubscribedCaches - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "uptodate_subscribed_caches"); } - - - public CMsgClientWelcome_Location Location - { get => new CMsgClientWelcome_LocationImpl(NativeNetMessages.GetNestedMessage(Address, "location"), false); } - - - public byte[] GameData2 - { get => Accessor.GetBytes("game_data2"); set => Accessor.SetBytes("game_data2", value); } - - - public uint Rtime32GcWelcomeTimestamp - { get => Accessor.GetUInt32("rtime32_gc_welcome_timestamp"); set => Accessor.SetUInt32("rtime32_gc_welcome_timestamp", value); } - - - public uint Currency - { get => Accessor.GetUInt32("currency"); set => Accessor.SetUInt32("currency", value); } - - - public uint Balance - { get => Accessor.GetUInt32("balance"); set => Accessor.SetUInt32("balance", value); } - - - public string BalanceUrl - { get => Accessor.GetString("balance_url"); set => Accessor.SetString("balance_url", value); } - - - public string TxnCountryCode - { get => Accessor.GetString("txn_country_code"); set => Accessor.SetString("txn_country_code", value); } - -} + public CMsgClientWelcomeImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Version + { get => Accessor.GetUInt32("version"); set => Accessor.SetUInt32("version", value); } + public byte[] GameData + { get => Accessor.GetBytes("game_data"); set => Accessor.SetBytes("game_data", value); } + public IProtobufRepeatedFieldSubMessageType OutofdateSubscribedCaches + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "outofdate_subscribed_caches"); } + public IProtobufRepeatedFieldSubMessageType UptodateSubscribedCaches + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "uptodate_subscribed_caches"); } + public CMsgClientWelcome_Location Location + { get => new CMsgClientWelcome_LocationImpl(NativeNetMessages.GetNestedMessage(Address, "location"), false); } + public byte[] GameData2 + { get => Accessor.GetBytes("game_data2"); set => Accessor.SetBytes("game_data2", value); } + public uint Rtime32GcWelcomeTimestamp + { get => Accessor.GetUInt32("rtime32_gc_welcome_timestamp"); set => Accessor.SetUInt32("rtime32_gc_welcome_timestamp", value); } + public uint Currency + { get => Accessor.GetUInt32("currency"); set => Accessor.SetUInt32("currency", value); } + public uint Balance + { get => Accessor.GetUInt32("balance"); set => Accessor.SetUInt32("balance", value); } + public string BalanceUrl + { get => Accessor.GetString("balance_url"); set => Accessor.SetString("balance_url", value); } + public string TxnCountryCode + { get => Accessor.GetString("txn_country_code"); set => Accessor.SetString("txn_country_code", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgClientWelcome_LocationImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgClientWelcome_LocationImpl.cs index 5f7e9cea5..2583c77c0 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgClientWelcome_LocationImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgClientWelcome_LocationImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgClientWelcome_LocationImpl : TypedProtobuf, CMsgClientWelcome_Location { - public CMsgClientWelcome_LocationImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public float Latitude - { get => Accessor.GetFloat("latitude"); set => Accessor.SetFloat("latitude", value); } - - - public float Longitude - { get => Accessor.GetFloat("longitude"); set => Accessor.SetFloat("longitude", value); } - - - public string Country - { get => Accessor.GetString("country"); set => Accessor.SetString("country", value); } - -} + public CMsgClientWelcome_LocationImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public float Latitude + { get => Accessor.GetFloat("latitude"); set => Accessor.SetFloat("latitude", value); } + public float Longitude + { get => Accessor.GetFloat("longitude"); set => Accessor.SetFloat("longitude", value); } + public string Country + { get => Accessor.GetString("country"); set => Accessor.SetString("country", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgConVarValueImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgConVarValueImpl.cs index 0fad421d5..b6d3f92c0 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgConVarValueImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgConVarValueImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgConVarValueImpl : TypedProtobuf, CMsgConVarValue { - public CMsgConVarValueImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string Name - { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } - - - public string Value - { get => Accessor.GetString("value"); set => Accessor.SetString("value", value); } - -} + public CMsgConVarValueImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string Name + { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } + public string Value + { get => Accessor.GetString("value"); set => Accessor.SetString("value", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgConnectionStatusImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgConnectionStatusImpl.cs index 5d9dd6508..7234b61e7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgConnectionStatusImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgConnectionStatusImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,32 +8,20 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgConnectionStatusImpl : TypedProtobuf, CMsgConnectionStatus { - public CMsgConnectionStatusImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public GCConnectionStatus Status - { get => (GCConnectionStatus)Accessor.GetInt32("status"); set => Accessor.SetInt32("status", (int)value); } - - - public uint ClientSessionNeed - { get => Accessor.GetUInt32("client_session_need"); set => Accessor.SetUInt32("client_session_need", value); } - - - public int QueuePosition - { get => Accessor.GetInt32("queue_position"); set => Accessor.SetInt32("queue_position", value); } - - - public int QueueSize - { get => Accessor.GetInt32("queue_size"); set => Accessor.SetInt32("queue_size", value); } - - - public int WaitSeconds - { get => Accessor.GetInt32("wait_seconds"); set => Accessor.SetInt32("wait_seconds", value); } - - - public int EstimatedWaitSecondsRemaining - { get => Accessor.GetInt32("estimated_wait_seconds_remaining"); set => Accessor.SetInt32("estimated_wait_seconds_remaining", value); } - -} + public CMsgConnectionStatusImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public GCConnectionStatus Status + { get => (GCConnectionStatus)Accessor.GetInt32("status"); set => Accessor.SetInt32("status", (int)value); } + public uint ClientSessionNeed + { get => Accessor.GetUInt32("client_session_need"); set => Accessor.SetUInt32("client_session_need", value); } + public int QueuePosition + { get => Accessor.GetInt32("queue_position"); set => Accessor.SetInt32("queue_position", value); } + public int QueueSize + { get => Accessor.GetInt32("queue_size"); set => Accessor.SetInt32("queue_size", value); } + public int WaitSeconds + { get => Accessor.GetInt32("wait_seconds"); set => Accessor.SetInt32("wait_seconds", value); } + public int EstimatedWaitSecondsRemaining + { get => Accessor.GetInt32("estimated_wait_seconds_remaining"); set => Accessor.SetInt32("estimated_wait_seconds_remaining", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgConsumableExhaustedImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgConsumableExhaustedImpl.cs index 4da203083..e9eb26d82 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgConsumableExhaustedImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgConsumableExhaustedImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgConsumableExhaustedImpl : TypedProtobuf, CMsgConsumableExhausted { - public CMsgConsumableExhaustedImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int ItemDefId - { get => Accessor.GetInt32("item_def_id"); set => Accessor.SetInt32("item_def_id", value); } + public CMsgConsumableExhaustedImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public int ItemDefId + { get => Accessor.GetInt32("item_def_id"); set => Accessor.SetInt32("item_def_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgCsgoSteamUserStatChangeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgCsgoSteamUserStatChangeImpl.cs index d1d351951..23a47392b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgCsgoSteamUserStatChangeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgCsgoSteamUserStatChangeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgCsgoSteamUserStatChangeImpl : TypedProtobuf, CMsgCsgoSteamUserStatChange { - public CMsgCsgoSteamUserStatChangeImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Ecsgosteamuserstat - { get => Accessor.GetInt32("ecsgosteamuserstat"); set => Accessor.SetInt32("ecsgosteamuserstat", value); } - - - public int Delta - { get => Accessor.GetInt32("delta"); set => Accessor.SetInt32("delta", value); } - - - public bool Absolute - { get => Accessor.GetBool("absolute"); set => Accessor.SetBool("absolute", value); } - -} + public CMsgCsgoSteamUserStatChangeImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Ecsgosteamuserstat + { get => Accessor.GetInt32("ecsgosteamuserstat"); set => Accessor.SetInt32("ecsgosteamuserstat", value); } + public int Delta + { get => Accessor.GetInt32("delta"); set => Accessor.SetInt32("delta", value); } + public bool Absolute + { get => Accessor.GetBool("absolute"); set => Accessor.SetBool("absolute", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgDevNewItemRequestImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgDevNewItemRequestImpl.cs index b00198f02..871880a96 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgDevNewItemRequestImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgDevNewItemRequestImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgDevNewItemRequestImpl : TypedProtobuf, CMsgDevNewItemRequest { - public CMsgDevNewItemRequestImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Receiver - { get => Accessor.GetUInt64("receiver"); set => Accessor.SetUInt64("receiver", value); } - - - public CSOItemCriteria Criteria - { get => new CSOItemCriteriaImpl(NativeNetMessages.GetNestedMessage(Address, "criteria"), false); } - -} + public CMsgDevNewItemRequestImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong Receiver + { get => Accessor.GetUInt64("receiver"); set => Accessor.SetUInt64("receiver", value); } + public CSOItemCriteria Criteria + { get => new CSOItemCriteriaImpl(NativeNetMessages.GetNestedMessage(Address, "criteria"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgEffectDataImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgEffectDataImpl.cs index f6cebbbc2..16abe675a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgEffectDataImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgEffectDataImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,84 +8,46 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgEffectDataImpl : TypedProtobuf, CMsgEffectData { - public CMsgEffectDataImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public Vector Origin - { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } - - - public Vector Start - { get => Accessor.GetVector("start"); set => Accessor.SetVector("start", value); } - - - public Vector Normal - { get => Accessor.GetVector("normal"); set => Accessor.SetVector("normal", value); } - - - public QAngle Angles - { get => Accessor.GetQAngle("angles"); set => Accessor.SetQAngle("angles", value); } - - - public uint Entity - { get => Accessor.GetUInt32("entity"); set => Accessor.SetUInt32("entity", value); } - - - public uint Otherentity - { get => Accessor.GetUInt32("otherentity"); set => Accessor.SetUInt32("otherentity", value); } - - - public float Scale - { get => Accessor.GetFloat("scale"); set => Accessor.SetFloat("scale", value); } - - - public float Magnitude - { get => Accessor.GetFloat("magnitude"); set => Accessor.SetFloat("magnitude", value); } - - - public float Radius - { get => Accessor.GetFloat("radius"); set => Accessor.SetFloat("radius", value); } - - - public uint Surfaceprop - { get => Accessor.GetUInt32("surfaceprop"); set => Accessor.SetUInt32("surfaceprop", value); } - - - public ulong Effectindex - { get => Accessor.GetUInt64("effectindex"); set => Accessor.SetUInt64("effectindex", value); } - - - public uint Damagetype - { get => Accessor.GetUInt32("damagetype"); set => Accessor.SetUInt32("damagetype", value); } - - - public uint Material - { get => Accessor.GetUInt32("material"); set => Accessor.SetUInt32("material", value); } - - - public uint Hitbox - { get => Accessor.GetUInt32("hitbox"); set => Accessor.SetUInt32("hitbox", value); } - - - public uint Color - { get => Accessor.GetUInt32("color"); set => Accessor.SetUInt32("color", value); } - - - public uint Flags - { get => Accessor.GetUInt32("flags"); set => Accessor.SetUInt32("flags", value); } - - - public int Attachmentindex - { get => Accessor.GetInt32("attachmentindex"); set => Accessor.SetInt32("attachmentindex", value); } - - - public uint Effectname - { get => Accessor.GetUInt32("effectname"); set => Accessor.SetUInt32("effectname", value); } - - - public uint Attachmentname - { get => Accessor.GetUInt32("attachmentname"); set => Accessor.SetUInt32("attachmentname", value); } - -} + public CMsgEffectDataImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public Vector Origin + { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } + public Vector Start + { get => Accessor.GetVector("start"); set => Accessor.SetVector("start", value); } + public Vector Normal + { get => Accessor.GetVector("normal"); set => Accessor.SetVector("normal", value); } + public QAngle Angles + { get => Accessor.GetQAngle("angles"); set => Accessor.SetQAngle("angles", value); } + public uint Entity + { get => Accessor.GetUInt32("entity"); set => Accessor.SetUInt32("entity", value); } + public uint Otherentity + { get => Accessor.GetUInt32("otherentity"); set => Accessor.SetUInt32("otherentity", value); } + public float Scale + { get => Accessor.GetFloat("scale"); set => Accessor.SetFloat("scale", value); } + public float Magnitude + { get => Accessor.GetFloat("magnitude"); set => Accessor.SetFloat("magnitude", value); } + public float Radius + { get => Accessor.GetFloat("radius"); set => Accessor.SetFloat("radius", value); } + public uint Surfaceprop + { get => Accessor.GetUInt32("surfaceprop"); set => Accessor.SetUInt32("surfaceprop", value); } + public ulong Effectindex + { get => Accessor.GetUInt64("effectindex"); set => Accessor.SetUInt64("effectindex", value); } + public uint Damagetype + { get => Accessor.GetUInt32("damagetype"); set => Accessor.SetUInt32("damagetype", value); } + public uint Material + { get => Accessor.GetUInt32("material"); set => Accessor.SetUInt32("material", value); } + public uint Hitbox + { get => Accessor.GetUInt32("hitbox"); set => Accessor.SetUInt32("hitbox", value); } + public uint Color + { get => Accessor.GetUInt32("color"); set => Accessor.SetUInt32("color", value); } + public uint Flags + { get => Accessor.GetUInt32("flags"); set => Accessor.SetUInt32("flags", value); } + public int Attachmentindex + { get => Accessor.GetInt32("attachmentindex"); set => Accessor.SetInt32("attachmentindex", value); } + public uint Effectname + { get => Accessor.GetUInt32("effectname"); set => Accessor.SetUInt32("effectname", value); } + public uint Attachmentname + { get => Accessor.GetUInt32("attachmentname"); set => Accessor.SetUInt32("attachmentname", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCBannedWordImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCBannedWordImpl.cs index e79e0ce77..0f86f6667 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCBannedWordImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCBannedWordImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCBannedWordImpl : TypedProtobuf, CMsgGCBannedWord { - public CMsgGCBannedWordImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint WordId - { get => Accessor.GetUInt32("word_id"); set => Accessor.SetUInt32("word_id", value); } - - - public GC_BannedWordType WordType - { get => (GC_BannedWordType)Accessor.GetInt32("word_type"); set => Accessor.SetInt32("word_type", (int)value); } - - - public string Word - { get => Accessor.GetString("word"); set => Accessor.SetString("word", value); } - -} + public CMsgGCBannedWordImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint WordId + { get => Accessor.GetUInt32("word_id"); set => Accessor.SetUInt32("word_id", value); } + public GC_BannedWordType WordType + { get => (GC_BannedWordType)Accessor.GetInt32("word_type"); set => Accessor.SetInt32("word_type", (int)value); } + public string Word + { get => Accessor.GetString("word"); set => Accessor.SetString("word", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCBannedWordListRequestImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCBannedWordListRequestImpl.cs index fdc1f86ff..a8fad649b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCBannedWordListRequestImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCBannedWordListRequestImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCBannedWordListRequestImpl : TypedProtobuf, CMsgGCBannedWordListRequest { - public CMsgGCBannedWordListRequestImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint BanListGroupId - { get => Accessor.GetUInt32("ban_list_group_id"); set => Accessor.SetUInt32("ban_list_group_id", value); } - - - public uint WordId - { get => Accessor.GetUInt32("word_id"); set => Accessor.SetUInt32("word_id", value); } - -} + public CMsgGCBannedWordListRequestImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint BanListGroupId + { get => Accessor.GetUInt32("ban_list_group_id"); set => Accessor.SetUInt32("ban_list_group_id", value); } + public uint WordId + { get => Accessor.GetUInt32("word_id"); set => Accessor.SetUInt32("word_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCBannedWordListResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCBannedWordListResponseImpl.cs index a8cfcbd2d..72bedd5a8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCBannedWordListResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCBannedWordListResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCBannedWordListResponseImpl : TypedProtobuf, CMsgGCBannedWordListResponse { - public CMsgGCBannedWordListResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint BanListGroupId - { get => Accessor.GetUInt32("ban_list_group_id"); set => Accessor.SetUInt32("ban_list_group_id", value); } - - - public IProtobufRepeatedFieldSubMessageType WordList - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "word_list"); } - -} + public CMsgGCBannedWordListResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint BanListGroupId + { get => Accessor.GetUInt32("ban_list_group_id"); set => Accessor.SetUInt32("ban_list_group_id", value); } + public IProtobufRepeatedFieldSubMessageType WordList + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "word_list"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_ClientDeepStatsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_ClientDeepStatsImpl.cs index 22c100795..dd12f7293 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_ClientDeepStatsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_ClientDeepStatsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_ClientDeepStatsImpl : TypedProtobuf, CMsgGCCStrike15_ClientDeepStats { - public CMsgGCCStrike15_ClientDeepStatsImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint AccountId - { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } - - - public CMsgGCCStrike15_ClientDeepStats_DeepStatsRange Range - { get => new CMsgGCCStrike15_ClientDeepStats_DeepStatsRangeImpl(NativeNetMessages.GetNestedMessage(Address, "range"), false); } - - - public IProtobufRepeatedFieldSubMessageType Matches - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "matches"); } - -} + public CMsgGCCStrike15_ClientDeepStatsImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint AccountId + { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } + public CMsgGCCStrike15_ClientDeepStats_DeepStatsRange Range + { get => new CMsgGCCStrike15_ClientDeepStats_DeepStatsRangeImpl(NativeNetMessages.GetNestedMessage(Address, "range"), false); } + public IProtobufRepeatedFieldSubMessageType Matches + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "matches"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_ClientDeepStats_DeepStatsMatchImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_ClientDeepStats_DeepStatsMatchImpl.cs index cc3d922b2..f60c1c1db 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_ClientDeepStats_DeepStatsMatchImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_ClientDeepStats_DeepStatsMatchImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_ClientDeepStats_DeepStatsMatchImpl : TypedProtobuf, CMsgGCCStrike15_ClientDeepStats_DeepStatsMatch { - public CMsgGCCStrike15_ClientDeepStats_DeepStatsMatchImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public DeepPlayerStatsEntry Player - { get => new DeepPlayerStatsEntryImpl(NativeNetMessages.GetNestedMessage(Address, "player"), false); } - - - public IProtobufRepeatedFieldSubMessageType Events - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "events"); } - -} + public CMsgGCCStrike15_ClientDeepStats_DeepStatsMatchImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public DeepPlayerStatsEntry Player + { get => new DeepPlayerStatsEntryImpl(NativeNetMessages.GetNestedMessage(Address, "player"), false); } + public IProtobufRepeatedFieldSubMessageType Events + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "events"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_ClientDeepStats_DeepStatsRangeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_ClientDeepStats_DeepStatsRangeImpl.cs index 1aeb7fb4e..8d46f7590 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_ClientDeepStats_DeepStatsRangeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_ClientDeepStats_DeepStatsRangeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_ClientDeepStats_DeepStatsRangeImpl : TypedProtobuf, CMsgGCCStrike15_ClientDeepStats_DeepStatsRange { - public CMsgGCCStrike15_ClientDeepStats_DeepStatsRangeImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Begin - { get => Accessor.GetUInt32("begin"); set => Accessor.SetUInt32("begin", value); } - - - public uint End - { get => Accessor.GetUInt32("end"); set => Accessor.SetUInt32("end", value); } - - - public bool Frozen - { get => Accessor.GetBool("frozen"); set => Accessor.SetBool("frozen", value); } - -} + public CMsgGCCStrike15_ClientDeepStats_DeepStatsRangeImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Begin + { get => Accessor.GetUInt32("begin"); set => Accessor.SetUInt32("begin", value); } + public uint End + { get => Accessor.GetUInt32("end"); set => Accessor.SetUInt32("end", value); } + public bool Frozen + { get => Accessor.GetBool("frozen"); set => Accessor.SetBool("frozen", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_GotvSyncPacketImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_GotvSyncPacketImpl.cs index 6a1f5a607..444eae026 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_GotvSyncPacketImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_GotvSyncPacketImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_GotvSyncPacketImpl : TypedProtobuf, CMsgGCCStrike15_GotvSyncPacket { - public CMsgGCCStrike15_GotvSyncPacketImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public CEngineGotvSyncPacket Data - { get => new CEngineGotvSyncPacketImpl(NativeNetMessages.GetNestedMessage(Address, "data"), false); } + public CMsgGCCStrike15_GotvSyncPacketImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public CEngineGotvSyncPacket Data + { get => new CEngineGotvSyncPacketImpl(NativeNetMessages.GetNestedMessage(Address, "data"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_AccountPrivacySettingsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_AccountPrivacySettingsImpl.cs index 6d642d63a..57c175097 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_AccountPrivacySettingsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_AccountPrivacySettingsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_AccountPrivacySettingsImpl : TypedProtobuf, CMsgGCCStrike15_v2_AccountPrivacySettings { - public CMsgGCCStrike15_v2_AccountPrivacySettingsImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldSubMessageType Settings - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "settings"); } + public CMsgGCCStrike15_v2_AccountPrivacySettingsImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public IProtobufRepeatedFieldSubMessageType Settings + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "settings"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_AccountPrivacySettings_SettingImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_AccountPrivacySettings_SettingImpl.cs index df6c47801..6869a6149 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_AccountPrivacySettings_SettingImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_AccountPrivacySettings_SettingImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_AccountPrivacySettings_SettingImpl : TypedProtobuf, CMsgGCCStrike15_v2_AccountPrivacySettings_Setting { - public CMsgGCCStrike15_v2_AccountPrivacySettings_SettingImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint SettingType - { get => Accessor.GetUInt32("setting_type"); set => Accessor.SetUInt32("setting_type", value); } - - - public uint SettingValue - { get => Accessor.GetUInt32("setting_value"); set => Accessor.SetUInt32("setting_value", value); } - -} + public CMsgGCCStrike15_v2_AccountPrivacySettings_SettingImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint SettingType + { get => Accessor.GetUInt32("setting_type"); set => Accessor.SetUInt32("setting_type", value); } + public uint SettingValue + { get => Accessor.GetUInt32("setting_value"); set => Accessor.SetUInt32("setting_value", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Account_RequestCoPlaysImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Account_RequestCoPlaysImpl.cs index 0297dad5a..417d41340 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Account_RequestCoPlaysImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Account_RequestCoPlaysImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_Account_RequestCoPlaysImpl : TypedProtobuf, CMsgGCCStrike15_v2_Account_RequestCoPlays { - public CMsgGCCStrike15_v2_Account_RequestCoPlaysImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldSubMessageType Players - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "players"); } - - - public uint Servertime - { get => Accessor.GetUInt32("servertime"); set => Accessor.SetUInt32("servertime", value); } - -} + public CMsgGCCStrike15_v2_Account_RequestCoPlaysImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public IProtobufRepeatedFieldSubMessageType Players + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "players"); } + public uint Servertime + { get => Accessor.GetUInt32("servertime"); set => Accessor.SetUInt32("servertime", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Account_RequestCoPlays_PlayerImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Account_RequestCoPlays_PlayerImpl.cs index 2af27df67..97746e11a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Account_RequestCoPlays_PlayerImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Account_RequestCoPlays_PlayerImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_Account_RequestCoPlays_PlayerImpl : TypedProtobuf, CMsgGCCStrike15_v2_Account_RequestCoPlays_Player { - public CMsgGCCStrike15_v2_Account_RequestCoPlays_PlayerImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Accountid - { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } - - - public uint Rtcoplay - { get => Accessor.GetUInt32("rtcoplay"); set => Accessor.SetUInt32("rtcoplay", value); } - - - public bool Online - { get => Accessor.GetBool("online"); set => Accessor.SetBool("online", value); } - -} + public CMsgGCCStrike15_v2_Account_RequestCoPlays_PlayerImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Accountid + { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } + public uint Rtcoplay + { get => Accessor.GetUInt32("rtcoplay"); set => Accessor.SetUInt32("rtcoplay", value); } + public bool Online + { get => Accessor.GetBool("online"); set => Accessor.SetBool("online", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_AcknowledgePenaltyImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_AcknowledgePenaltyImpl.cs index 9e4210296..9aa9a184a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_AcknowledgePenaltyImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_AcknowledgePenaltyImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_AcknowledgePenaltyImpl : TypedProtobuf, CMsgGCCStrike15_v2_AcknowledgePenalty { - public CMsgGCCStrike15_v2_AcknowledgePenaltyImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Acknowledged - { get => Accessor.GetInt32("acknowledged"); set => Accessor.SetInt32("acknowledged", value); } + public CMsgGCCStrike15_v2_AcknowledgePenaltyImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public int Acknowledged + { get => Accessor.GetInt32("acknowledged"); set => Accessor.SetInt32("acknowledged", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_BetaEnrollmentImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_BetaEnrollmentImpl.cs index 3de5b8600..07992d32f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_BetaEnrollmentImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_BetaEnrollmentImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_BetaEnrollmentImpl : TypedProtobuf, CMsgGCCStrike15_v2_BetaEnrollment { - public CMsgGCCStrike15_v2_BetaEnrollmentImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Eresult - { get => Accessor.GetUInt32("eresult"); set => Accessor.SetUInt32("eresult", value); } + public CMsgGCCStrike15_v2_BetaEnrollmentImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public uint Eresult + { get => Accessor.GetUInt32("eresult"); set => Accessor.SetUInt32("eresult", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequestImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequestImpl.cs index 436c7ee98..6253c25be 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequestImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequestImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequestImpl : TypedProtobuf, CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequest { - public CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequestImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong ParamS - { get => Accessor.GetUInt64("param_s"); set => Accessor.SetUInt64("param_s", value); } - - - public ulong ParamA - { get => Accessor.GetUInt64("param_a"); set => Accessor.SetUInt64("param_a", value); } - - - public ulong ParamD - { get => Accessor.GetUInt64("param_d"); set => Accessor.SetUInt64("param_d", value); } - - - public ulong ParamM - { get => Accessor.GetUInt64("param_m"); set => Accessor.SetUInt64("param_m", value); } - -} + public CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequestImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong ParamS + { get => Accessor.GetUInt64("param_s"); set => Accessor.SetUInt64("param_s", value); } + public ulong ParamA + { get => Accessor.GetUInt64("param_a"); set => Accessor.SetUInt64("param_a", value); } + public ulong ParamD + { get => Accessor.GetUInt64("param_d"); set => Accessor.SetUInt64("param_d", value); } + public ulong ParamM + { get => Accessor.GetUInt64("param_m"); set => Accessor.SetUInt64("param_m", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponseImpl.cs index e79936efc..229408791 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponseImpl : TypedProtobuf, CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponse { - public CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public CEconItemPreviewDataBlock Iteminfo - { get => new CEconItemPreviewDataBlockImpl(NativeNetMessages.GetNestedMessage(Address, "iteminfo"), false); } + public CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public CEconItemPreviewDataBlock Iteminfo + { get => new CEconItemPreviewDataBlockImpl(NativeNetMessages.GetNestedMessage(Address, "iteminfo"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoinImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoinImpl.cs index 2ed71f6a9..a54c277a0 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoinImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoinImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoinImpl : TypedProtobuf, CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin { - public CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoinImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Defindex - { get => Accessor.GetUInt32("defindex"); set => Accessor.SetUInt32("defindex", value); } - - - public ulong Upgradeid - { get => Accessor.GetUInt64("upgradeid"); set => Accessor.SetUInt64("upgradeid", value); } - - - public uint Hours - { get => Accessor.GetUInt32("hours"); set => Accessor.SetUInt32("hours", value); } - - - public uint Prestigetime - { get => Accessor.GetUInt32("prestigetime"); set => Accessor.SetUInt32("prestigetime", value); } - -} + public CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoinImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Defindex + { get => Accessor.GetUInt32("defindex"); set => Accessor.SetUInt32("defindex", value); } + public ulong Upgradeid + { get => Accessor.GetUInt64("upgradeid"); set => Accessor.SetUInt64("upgradeid", value); } + public uint Hours + { get => Accessor.GetUInt32("hours"); set => Accessor.SetUInt32("hours", value); } + public uint Prestigetime + { get => Accessor.GetUInt32("prestigetime"); set => Accessor.SetUInt32("prestigetime", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Client2GCStreamUnlockImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Client2GCStreamUnlockImpl.cs index 69323373d..ea5e4193a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Client2GCStreamUnlockImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Client2GCStreamUnlockImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_Client2GCStreamUnlockImpl : TypedProtobuf, CMsgGCCStrike15_v2_Client2GCStreamUnlock { - public CMsgGCCStrike15_v2_Client2GCStreamUnlockImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Ticket - { get => Accessor.GetUInt64("ticket"); set => Accessor.SetUInt64("ticket", value); } - - - public int Os - { get => Accessor.GetInt32("os"); set => Accessor.SetInt32("os", value); } - -} + public CMsgGCCStrike15_v2_Client2GCStreamUnlockImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong Ticket + { get => Accessor.GetUInt64("ticket"); set => Accessor.SetUInt64("ticket", value); } + public int Os + { get => Accessor.GetInt32("os"); set => Accessor.SetInt32("os", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Client2GCTextMsgImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Client2GCTextMsgImpl.cs index 7104ebdf4..b8d14c675 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Client2GCTextMsgImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Client2GCTextMsgImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_Client2GCTextMsgImpl : TypedProtobuf, CMsgGCCStrike15_v2_Client2GCTextMsg { - public CMsgGCCStrike15_v2_Client2GCTextMsgImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Id - { get => Accessor.GetUInt32("id"); set => Accessor.SetUInt32("id", value); } - - - public IProtobufRepeatedFieldValueType Args - { get => new ProtobufRepeatedFieldValueType(Accessor, "args"); } - -} + public CMsgGCCStrike15_v2_Client2GCTextMsgImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Id + { get => Accessor.GetUInt32("id"); set => Accessor.SetUInt32("id", value); } + public IProtobufRepeatedFieldValueType Args + { get => new ProtobufRepeatedFieldValueType(Accessor, "args"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Client2GcAckXPShopTracksImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Client2GcAckXPShopTracksImpl.cs index 4842450e6..0023de9eb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Client2GcAckXPShopTracksImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Client2GcAckXPShopTracksImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,9 +8,8 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_Client2GcAckXPShopTracksImpl : TypedProtobuf, CMsgGCCStrike15_v2_Client2GcAckXPShopTracks { - public CMsgGCCStrike15_v2_Client2GcAckXPShopTracksImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - + public CMsgGCCStrike15_v2_Client2GcAckXPShopTracksImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientAccountBalanceImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientAccountBalanceImpl.cs index 29ab810fe..d4ca8eb4d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientAccountBalanceImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientAccountBalanceImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ClientAccountBalanceImpl : TypedProtobuf, CMsgGCCStrike15_v2_ClientAccountBalance { - public CMsgGCCStrike15_v2_ClientAccountBalanceImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Amount - { get => Accessor.GetUInt64("amount"); set => Accessor.SetUInt64("amount", value); } - - - public string Url - { get => Accessor.GetString("url"); set => Accessor.SetString("url", value); } - -} + public CMsgGCCStrike15_v2_ClientAccountBalanceImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong Amount + { get => Accessor.GetUInt64("amount"); set => Accessor.SetUInt64("amount", value); } + public string Url + { get => Accessor.GetString("url"); set => Accessor.SetString("url", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientAuthKeyCodeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientAuthKeyCodeImpl.cs index 53c48098c..5fecdf9fb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientAuthKeyCodeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientAuthKeyCodeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ClientAuthKeyCodeImpl : TypedProtobuf, CMsgGCCStrike15_v2_ClientAuthKeyCode { - public CMsgGCCStrike15_v2_ClientAuthKeyCodeImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Eventid - { get => Accessor.GetUInt32("eventid"); set => Accessor.SetUInt32("eventid", value); } - - - public string Code - { get => Accessor.GetString("code"); set => Accessor.SetString("code", value); } - -} + public CMsgGCCStrike15_v2_ClientAuthKeyCodeImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Eventid + { get => Accessor.GetUInt32("eventid"); set => Accessor.SetUInt32("eventid", value); } + public string Code + { get => Accessor.GetString("code"); set => Accessor.SetString("code", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientCommendPlayerImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientCommendPlayerImpl.cs index d51201da8..c360cb111 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientCommendPlayerImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientCommendPlayerImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ClientCommendPlayerImpl : TypedProtobuf, CMsgGCCStrike15_v2_ClientCommendPlayer { - public CMsgGCCStrike15_v2_ClientCommendPlayerImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint AccountId - { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } - - - public ulong MatchId - { get => Accessor.GetUInt64("match_id"); set => Accessor.SetUInt64("match_id", value); } - - - public PlayerCommendationInfo Commendation - { get => new PlayerCommendationInfoImpl(NativeNetMessages.GetNestedMessage(Address, "commendation"), false); } - - - public uint Tokens - { get => Accessor.GetUInt32("tokens"); set => Accessor.SetUInt32("tokens", value); } - -} + public CMsgGCCStrike15_v2_ClientCommendPlayerImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint AccountId + { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } + public ulong MatchId + { get => Accessor.GetUInt64("match_id"); set => Accessor.SetUInt64("match_id", value); } + public PlayerCommendationInfo Commendation + { get => new PlayerCommendationInfoImpl(NativeNetMessages.GetNestedMessage(Address, "commendation"), false); } + public uint Tokens + { get => Accessor.GetUInt32("tokens"); set => Accessor.SetUInt32("tokens", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientGCRankUpdateImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientGCRankUpdateImpl.cs index 328367a90..786de5d67 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientGCRankUpdateImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientGCRankUpdateImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ClientGCRankUpdateImpl : TypedProtobuf, CMsgGCCStrike15_v2_ClientGCRankUpdate { - public CMsgGCCStrike15_v2_ClientGCRankUpdateImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldSubMessageType Rankings - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "rankings"); } + public CMsgGCCStrike15_v2_ClientGCRankUpdateImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public IProtobufRepeatedFieldSubMessageType Rankings + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "rankings"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientLogonFatalErrorImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientLogonFatalErrorImpl.cs index 7e216c299..880f5c6e3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientLogonFatalErrorImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientLogonFatalErrorImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ClientLogonFatalErrorImpl : TypedProtobuf, CMsgGCCStrike15_v2_ClientLogonFatalError { - public CMsgGCCStrike15_v2_ClientLogonFatalErrorImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Errorcode - { get => Accessor.GetUInt32("errorcode"); set => Accessor.SetUInt32("errorcode", value); } - - - public string Message - { get => Accessor.GetString("message"); set => Accessor.SetString("message", value); } - - - public string Country - { get => Accessor.GetString("country"); set => Accessor.SetString("country", value); } - -} + public CMsgGCCStrike15_v2_ClientLogonFatalErrorImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Errorcode + { get => Accessor.GetUInt32("errorcode"); set => Accessor.SetUInt32("errorcode", value); } + public string Message + { get => Accessor.GetString("message"); set => Accessor.SetString("message", value); } + public string Country + { get => Accessor.GetString("country"); set => Accessor.SetString("country", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientNetworkConfigImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientNetworkConfigImpl.cs index 6abea50c4..c54603459 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientNetworkConfigImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientNetworkConfigImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ClientNetworkConfigImpl : TypedProtobuf, CMsgGCCStrike15_v2_ClientNetworkConfig { - public CMsgGCCStrike15_v2_ClientNetworkConfigImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public byte[] Data - { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } + public CMsgGCCStrike15_v2_ClientNetworkConfigImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public byte[] Data + { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientPartyJoinRelayImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientPartyJoinRelayImpl.cs index 1fc69e0fe..3ad8b5397 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientPartyJoinRelayImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientPartyJoinRelayImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ClientPartyJoinRelayImpl : TypedProtobuf, CMsgGCCStrike15_v2_ClientPartyJoinRelay { - public CMsgGCCStrike15_v2_ClientPartyJoinRelayImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Accountid - { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } - - - public ulong Lobbyid - { get => Accessor.GetUInt64("lobbyid"); set => Accessor.SetUInt64("lobbyid", value); } - -} + public CMsgGCCStrike15_v2_ClientPartyJoinRelayImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Accountid + { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } + public ulong Lobbyid + { get => Accessor.GetUInt64("lobbyid"); set => Accessor.SetUInt64("lobbyid", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientPartyWarningImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientPartyWarningImpl.cs index 19fab3aa0..af588cd22 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientPartyWarningImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientPartyWarningImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ClientPartyWarningImpl : TypedProtobuf, CMsgGCCStrike15_v2_ClientPartyWarning { - public CMsgGCCStrike15_v2_ClientPartyWarningImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldSubMessageType Entries - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "entries"); } + public CMsgGCCStrike15_v2_ClientPartyWarningImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public IProtobufRepeatedFieldSubMessageType Entries + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "entries"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientPartyWarning_EntryImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientPartyWarning_EntryImpl.cs index 0c6fcc34b..a050af8df 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientPartyWarning_EntryImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientPartyWarning_EntryImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ClientPartyWarning_EntryImpl : TypedProtobuf, CMsgGCCStrike15_v2_ClientPartyWarning_Entry { - public CMsgGCCStrike15_v2_ClientPartyWarning_EntryImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Accountid - { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } - - - public uint Warntype - { get => Accessor.GetUInt32("warntype"); set => Accessor.SetUInt32("warntype", value); } - -} + public CMsgGCCStrike15_v2_ClientPartyWarning_EntryImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Accountid + { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } + public uint Warntype + { get => Accessor.GetUInt32("warntype"); set => Accessor.SetUInt32("warntype", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientPerfReportImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientPerfReportImpl.cs index 30e433651..ea7655ddd 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientPerfReportImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientPerfReportImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ClientPerfReportImpl : TypedProtobuf, CMsgGCCStrike15_v2_ClientPerfReport { - public CMsgGCCStrike15_v2_ClientPerfReportImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldSubMessageType Entries - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "entries"); } + public CMsgGCCStrike15_v2_ClientPerfReportImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public IProtobufRepeatedFieldSubMessageType Entries + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "entries"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientPerfReport_EntryImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientPerfReport_EntryImpl.cs index 832de926d..c880ff44f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientPerfReport_EntryImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientPerfReport_EntryImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,32 +8,20 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ClientPerfReport_EntryImpl : TypedProtobuf, CMsgGCCStrike15_v2_ClientPerfReport_Entry { - public CMsgGCCStrike15_v2_ClientPerfReport_EntryImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Perfcounter - { get => Accessor.GetUInt32("perfcounter"); set => Accessor.SetUInt32("perfcounter", value); } - - - public uint Length - { get => Accessor.GetUInt32("length"); set => Accessor.SetUInt32("length", value); } - - - public byte[] Reference - { get => Accessor.GetBytes("reference"); set => Accessor.SetBytes("reference", value); } - - - public byte[] Actual - { get => Accessor.GetBytes("actual"); set => Accessor.SetBytes("actual", value); } - - - public uint Sourceid - { get => Accessor.GetUInt32("sourceid"); set => Accessor.SetUInt32("sourceid", value); } - - - public uint Status - { get => Accessor.GetUInt32("status"); set => Accessor.SetUInt32("status", value); } - -} + public CMsgGCCStrike15_v2_ClientPerfReport_EntryImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Perfcounter + { get => Accessor.GetUInt32("perfcounter"); set => Accessor.SetUInt32("perfcounter", value); } + public uint Length + { get => Accessor.GetUInt32("length"); set => Accessor.SetUInt32("length", value); } + public byte[] Reference + { get => Accessor.GetBytes("reference"); set => Accessor.SetBytes("reference", value); } + public byte[] Actual + { get => Accessor.GetBytes("actual"); set => Accessor.SetBytes("actual", value); } + public uint Sourceid + { get => Accessor.GetUInt32("sourceid"); set => Accessor.SetUInt32("sourceid", value); } + public uint Status + { get => Accessor.GetUInt32("status"); set => Accessor.SetUInt32("status", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientPlayerDecalSignImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientPlayerDecalSignImpl.cs index 2fc85cceb..398cbce07 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientPlayerDecalSignImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientPlayerDecalSignImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ClientPlayerDecalSignImpl : TypedProtobuf, CMsgGCCStrike15_v2_ClientPlayerDecalSign { - public CMsgGCCStrike15_v2_ClientPlayerDecalSignImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public PlayerDecalDigitalSignature Data - { get => new PlayerDecalDigitalSignatureImpl(NativeNetMessages.GetNestedMessage(Address, "data"), false); } - - - public ulong Itemid - { get => Accessor.GetUInt64("itemid"); set => Accessor.SetUInt64("itemid", value); } - -} + public CMsgGCCStrike15_v2_ClientPlayerDecalSignImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public PlayerDecalDigitalSignature Data + { get => new PlayerDecalDigitalSignatureImpl(NativeNetMessages.GetNestedMessage(Address, "data"), false); } + public ulong Itemid + { get => Accessor.GetUInt64("itemid"); set => Accessor.SetUInt64("itemid", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientPollStateImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientPollStateImpl.cs index 869d32d93..675719dc5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientPollStateImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientPollStateImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ClientPollStateImpl : TypedProtobuf, CMsgGCCStrike15_v2_ClientPollState { - public CMsgGCCStrike15_v2_ClientPollStateImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Pollid - { get => Accessor.GetUInt32("pollid"); set => Accessor.SetUInt32("pollid", value); } - - - public IProtobufRepeatedFieldValueType Names - { get => new ProtobufRepeatedFieldValueType(Accessor, "names"); } - - - public IProtobufRepeatedFieldValueType Values - { get => new ProtobufRepeatedFieldValueType(Accessor, "values"); } - -} + public CMsgGCCStrike15_v2_ClientPollStateImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Pollid + { get => Accessor.GetUInt32("pollid"); set => Accessor.SetUInt32("pollid", value); } + public IProtobufRepeatedFieldValueType Names + { get => new ProtobufRepeatedFieldValueType(Accessor, "names"); } + public IProtobufRepeatedFieldValueType Values + { get => new ProtobufRepeatedFieldValueType(Accessor, "values"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientReportPlayerImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientReportPlayerImpl.cs index bf91f658e..34ffbba2c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientReportPlayerImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientReportPlayerImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,44 +8,26 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ClientReportPlayerImpl : TypedProtobuf, CMsgGCCStrike15_v2_ClientReportPlayer { - public CMsgGCCStrike15_v2_ClientReportPlayerImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint AccountId - { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } - - - public uint RptAimbot - { get => Accessor.GetUInt32("rpt_aimbot"); set => Accessor.SetUInt32("rpt_aimbot", value); } - - - public uint RptWallhack - { get => Accessor.GetUInt32("rpt_wallhack"); set => Accessor.SetUInt32("rpt_wallhack", value); } - - - public uint RptSpeedhack - { get => Accessor.GetUInt32("rpt_speedhack"); set => Accessor.SetUInt32("rpt_speedhack", value); } - - - public uint RptTeamharm - { get => Accessor.GetUInt32("rpt_teamharm"); set => Accessor.SetUInt32("rpt_teamharm", value); } - - - public uint RptTextabuse - { get => Accessor.GetUInt32("rpt_textabuse"); set => Accessor.SetUInt32("rpt_textabuse", value); } - - - public uint RptVoiceabuse - { get => Accessor.GetUInt32("rpt_voiceabuse"); set => Accessor.SetUInt32("rpt_voiceabuse", value); } - - - public ulong MatchId - { get => Accessor.GetUInt64("match_id"); set => Accessor.SetUInt64("match_id", value); } - - - public bool ReportFromDemo - { get => Accessor.GetBool("report_from_demo"); set => Accessor.SetBool("report_from_demo", value); } - -} + public CMsgGCCStrike15_v2_ClientReportPlayerImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint AccountId + { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } + public uint RptAimbot + { get => Accessor.GetUInt32("rpt_aimbot"); set => Accessor.SetUInt32("rpt_aimbot", value); } + public uint RptWallhack + { get => Accessor.GetUInt32("rpt_wallhack"); set => Accessor.SetUInt32("rpt_wallhack", value); } + public uint RptSpeedhack + { get => Accessor.GetUInt32("rpt_speedhack"); set => Accessor.SetUInt32("rpt_speedhack", value); } + public uint RptTeamharm + { get => Accessor.GetUInt32("rpt_teamharm"); set => Accessor.SetUInt32("rpt_teamharm", value); } + public uint RptTextabuse + { get => Accessor.GetUInt32("rpt_textabuse"); set => Accessor.SetUInt32("rpt_textabuse", value); } + public uint RptVoiceabuse + { get => Accessor.GetUInt32("rpt_voiceabuse"); set => Accessor.SetUInt32("rpt_voiceabuse", value); } + public ulong MatchId + { get => Accessor.GetUInt64("match_id"); set => Accessor.SetUInt64("match_id", value); } + public bool ReportFromDemo + { get => Accessor.GetBool("report_from_demo"); set => Accessor.SetBool("report_from_demo", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientReportResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientReportResponseImpl.cs index bb2a54c11..4932da17f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientReportResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientReportResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,32 +8,20 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ClientReportResponseImpl : TypedProtobuf, CMsgGCCStrike15_v2_ClientReportResponse { - public CMsgGCCStrike15_v2_ClientReportResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong ConfirmationId - { get => Accessor.GetUInt64("confirmation_id"); set => Accessor.SetUInt64("confirmation_id", value); } - - - public uint AccountId - { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } - - - public uint ServerIp - { get => Accessor.GetUInt32("server_ip"); set => Accessor.SetUInt32("server_ip", value); } - - - public uint ResponseType - { get => Accessor.GetUInt32("response_type"); set => Accessor.SetUInt32("response_type", value); } - - - public uint ResponseResult - { get => Accessor.GetUInt32("response_result"); set => Accessor.SetUInt32("response_result", value); } - - - public uint Tokens - { get => Accessor.GetUInt32("tokens"); set => Accessor.SetUInt32("tokens", value); } - -} + public CMsgGCCStrike15_v2_ClientReportResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong ConfirmationId + { get => Accessor.GetUInt64("confirmation_id"); set => Accessor.SetUInt64("confirmation_id", value); } + public uint AccountId + { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } + public uint ServerIp + { get => Accessor.GetUInt32("server_ip"); set => Accessor.SetUInt32("server_ip", value); } + public uint ResponseType + { get => Accessor.GetUInt32("response_type"); set => Accessor.SetUInt32("response_type", value); } + public uint ResponseResult + { get => Accessor.GetUInt32("response_result"); set => Accessor.SetUInt32("response_result", value); } + public uint Tokens + { get => Accessor.GetUInt32("tokens"); set => Accessor.SetUInt32("tokens", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientReportServerImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientReportServerImpl.cs index 28fc79e47..faad48bf8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientReportServerImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientReportServerImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,32 +8,20 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ClientReportServerImpl : TypedProtobuf, CMsgGCCStrike15_v2_ClientReportServer { - public CMsgGCCStrike15_v2_ClientReportServerImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint RptPoorperf - { get => Accessor.GetUInt32("rpt_poorperf"); set => Accessor.SetUInt32("rpt_poorperf", value); } - - - public uint RptAbusivemodels - { get => Accessor.GetUInt32("rpt_abusivemodels"); set => Accessor.SetUInt32("rpt_abusivemodels", value); } - - - public uint RptBadmotd - { get => Accessor.GetUInt32("rpt_badmotd"); set => Accessor.SetUInt32("rpt_badmotd", value); } - - - public uint RptListingabuse - { get => Accessor.GetUInt32("rpt_listingabuse"); set => Accessor.SetUInt32("rpt_listingabuse", value); } - - - public uint RptInventoryabuse - { get => Accessor.GetUInt32("rpt_inventoryabuse"); set => Accessor.SetUInt32("rpt_inventoryabuse", value); } - - - public ulong MatchId - { get => Accessor.GetUInt64("match_id"); set => Accessor.SetUInt64("match_id", value); } - -} + public CMsgGCCStrike15_v2_ClientReportServerImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint RptPoorperf + { get => Accessor.GetUInt32("rpt_poorperf"); set => Accessor.SetUInt32("rpt_poorperf", value); } + public uint RptAbusivemodels + { get => Accessor.GetUInt32("rpt_abusivemodels"); set => Accessor.SetUInt32("rpt_abusivemodels", value); } + public uint RptBadmotd + { get => Accessor.GetUInt32("rpt_badmotd"); set => Accessor.SetUInt32("rpt_badmotd", value); } + public uint RptListingabuse + { get => Accessor.GetUInt32("rpt_listingabuse"); set => Accessor.SetUInt32("rpt_listingabuse", value); } + public uint RptInventoryabuse + { get => Accessor.GetUInt32("rpt_inventoryabuse"); set => Accessor.SetUInt32("rpt_inventoryabuse", value); } + public ulong MatchId + { get => Accessor.GetUInt64("match_id"); set => Accessor.SetUInt64("match_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientReportValidationImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientReportValidationImpl.cs index 1da8db999..1e99224d8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientReportValidationImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientReportValidationImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,88 +8,48 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ClientReportValidationImpl : TypedProtobuf, CMsgGCCStrike15_v2_ClientReportValidation { - public CMsgGCCStrike15_v2_ClientReportValidationImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string FileReport - { get => Accessor.GetString("file_report"); set => Accessor.SetString("file_report", value); } - - - public string CommandLine - { get => Accessor.GetString("command_line"); set => Accessor.SetString("command_line", value); } - - - public uint TotalFiles - { get => Accessor.GetUInt32("total_files"); set => Accessor.SetUInt32("total_files", value); } - - - public uint InternalError - { get => Accessor.GetUInt32("internal_error"); set => Accessor.SetUInt32("internal_error", value); } - - - public uint TrustTime - { get => Accessor.GetUInt32("trust_time"); set => Accessor.SetUInt32("trust_time", value); } - - - public uint CountPending - { get => Accessor.GetUInt32("count_pending"); set => Accessor.SetUInt32("count_pending", value); } - - - public uint CountCompleted - { get => Accessor.GetUInt32("count_completed"); set => Accessor.SetUInt32("count_completed", value); } - - - public uint ProcessId - { get => Accessor.GetUInt32("process_id"); set => Accessor.SetUInt32("process_id", value); } - - - public int Osversion - { get => Accessor.GetInt32("osversion"); set => Accessor.SetInt32("osversion", value); } - - - public uint Clientreportversion - { get => Accessor.GetUInt32("clientreportversion"); set => Accessor.SetUInt32("clientreportversion", value); } - - - public uint StatusId - { get => Accessor.GetUInt32("status_id"); set => Accessor.SetUInt32("status_id", value); } - - - public uint Diagnostic1 - { get => Accessor.GetUInt32("diagnostic1"); set => Accessor.SetUInt32("diagnostic1", value); } - - - public ulong Diagnostic2 - { get => Accessor.GetUInt64("diagnostic2"); set => Accessor.SetUInt64("diagnostic2", value); } - - - public ulong Diagnostic3 - { get => Accessor.GetUInt64("diagnostic3"); set => Accessor.SetUInt64("diagnostic3", value); } - - - public string LastLaunchData - { get => Accessor.GetString("last_launch_data"); set => Accessor.SetString("last_launch_data", value); } - - - public uint ReportCount - { get => Accessor.GetUInt32("report_count"); set => Accessor.SetUInt32("report_count", value); } - - - public ulong ClientTime - { get => Accessor.GetUInt64("client_time"); set => Accessor.SetUInt64("client_time", value); } - - - public ulong Diagnostic4 - { get => Accessor.GetUInt64("diagnostic4"); set => Accessor.SetUInt64("diagnostic4", value); } - - - public ulong Diagnostic5 - { get => Accessor.GetUInt64("diagnostic5"); set => Accessor.SetUInt64("diagnostic5", value); } - - - public IProtobufRepeatedFieldSubMessageType Diagnostics - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "diagnostics"); } - -} + public CMsgGCCStrike15_v2_ClientReportValidationImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string FileReport + { get => Accessor.GetString("file_report"); set => Accessor.SetString("file_report", value); } + public string CommandLine + { get => Accessor.GetString("command_line"); set => Accessor.SetString("command_line", value); } + public uint TotalFiles + { get => Accessor.GetUInt32("total_files"); set => Accessor.SetUInt32("total_files", value); } + public uint InternalError + { get => Accessor.GetUInt32("internal_error"); set => Accessor.SetUInt32("internal_error", value); } + public uint TrustTime + { get => Accessor.GetUInt32("trust_time"); set => Accessor.SetUInt32("trust_time", value); } + public uint CountPending + { get => Accessor.GetUInt32("count_pending"); set => Accessor.SetUInt32("count_pending", value); } + public uint CountCompleted + { get => Accessor.GetUInt32("count_completed"); set => Accessor.SetUInt32("count_completed", value); } + public uint ProcessId + { get => Accessor.GetUInt32("process_id"); set => Accessor.SetUInt32("process_id", value); } + public int Osversion + { get => Accessor.GetInt32("osversion"); set => Accessor.SetInt32("osversion", value); } + public uint Clientreportversion + { get => Accessor.GetUInt32("clientreportversion"); set => Accessor.SetUInt32("clientreportversion", value); } + public uint StatusId + { get => Accessor.GetUInt32("status_id"); set => Accessor.SetUInt32("status_id", value); } + public uint Diagnostic1 + { get => Accessor.GetUInt32("diagnostic1"); set => Accessor.SetUInt32("diagnostic1", value); } + public ulong Diagnostic2 + { get => Accessor.GetUInt64("diagnostic2"); set => Accessor.SetUInt64("diagnostic2", value); } + public ulong Diagnostic3 + { get => Accessor.GetUInt64("diagnostic3"); set => Accessor.SetUInt64("diagnostic3", value); } + public string LastLaunchData + { get => Accessor.GetString("last_launch_data"); set => Accessor.SetString("last_launch_data", value); } + public uint ReportCount + { get => Accessor.GetUInt32("report_count"); set => Accessor.SetUInt32("report_count", value); } + public ulong ClientTime + { get => Accessor.GetUInt64("client_time"); set => Accessor.SetUInt64("client_time", value); } + public ulong Diagnostic4 + { get => Accessor.GetUInt64("diagnostic4"); set => Accessor.SetUInt64("diagnostic4", value); } + public ulong Diagnostic5 + { get => Accessor.GetUInt64("diagnostic5"); set => Accessor.SetUInt64("diagnostic5", value); } + public IProtobufRepeatedFieldSubMessageType Diagnostics + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "diagnostics"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientRequestJoinFriendDataImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientRequestJoinFriendDataImpl.cs index 4848debe4..c71b10a2a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientRequestJoinFriendDataImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientRequestJoinFriendDataImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,32 +8,20 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ClientRequestJoinFriendDataImpl : TypedProtobuf, CMsgGCCStrike15_v2_ClientRequestJoinFriendData { - public CMsgGCCStrike15_v2_ClientRequestJoinFriendDataImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Version - { get => Accessor.GetUInt32("version"); set => Accessor.SetUInt32("version", value); } - - - public uint AccountId - { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } - - - public uint JoinToken - { get => Accessor.GetUInt32("join_token"); set => Accessor.SetUInt32("join_token", value); } - - - public uint JoinIpp - { get => Accessor.GetUInt32("join_ipp"); set => Accessor.SetUInt32("join_ipp", value); } - - - public CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve Res - { get => new CMsgGCCStrike15_v2_MatchmakingGC2ClientReserveImpl(NativeNetMessages.GetNestedMessage(Address, "res"), false); } - - - public string Errormsg - { get => Accessor.GetString("errormsg"); set => Accessor.SetString("errormsg", value); } - -} + public CMsgGCCStrike15_v2_ClientRequestJoinFriendDataImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Version + { get => Accessor.GetUInt32("version"); set => Accessor.SetUInt32("version", value); } + public uint AccountId + { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } + public uint JoinToken + { get => Accessor.GetUInt32("join_token"); set => Accessor.SetUInt32("join_token", value); } + public uint JoinIpp + { get => Accessor.GetUInt32("join_ipp"); set => Accessor.SetUInt32("join_ipp", value); } + public CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve Res + { get => new CMsgGCCStrike15_v2_MatchmakingGC2ClientReserveImpl(NativeNetMessages.GetNestedMessage(Address, "res"), false); } + public string Errormsg + { get => Accessor.GetString("errormsg"); set => Accessor.SetString("errormsg", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientRequestJoinServerDataImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientRequestJoinServerDataImpl.cs index dff4153d9..60ff45dab 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientRequestJoinServerDataImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientRequestJoinServerDataImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,36 +8,22 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ClientRequestJoinServerDataImpl : TypedProtobuf, CMsgGCCStrike15_v2_ClientRequestJoinServerData { - public CMsgGCCStrike15_v2_ClientRequestJoinServerDataImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Version - { get => Accessor.GetUInt32("version"); set => Accessor.SetUInt32("version", value); } - - - public uint AccountId - { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } - - - public ulong Serverid - { get => Accessor.GetUInt64("serverid"); set => Accessor.SetUInt64("serverid", value); } - - - public uint ServerIp - { get => Accessor.GetUInt32("server_ip"); set => Accessor.SetUInt32("server_ip", value); } - - - public uint ServerPort - { get => Accessor.GetUInt32("server_port"); set => Accessor.SetUInt32("server_port", value); } - - - public CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve Res - { get => new CMsgGCCStrike15_v2_MatchmakingGC2ClientReserveImpl(NativeNetMessages.GetNestedMessage(Address, "res"), false); } - - - public string Errormsg - { get => Accessor.GetString("errormsg"); set => Accessor.SetString("errormsg", value); } - -} + public CMsgGCCStrike15_v2_ClientRequestJoinServerDataImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Version + { get => Accessor.GetUInt32("version"); set => Accessor.SetUInt32("version", value); } + public uint AccountId + { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } + public ulong Serverid + { get => Accessor.GetUInt64("serverid"); set => Accessor.SetUInt64("serverid", value); } + public uint ServerIp + { get => Accessor.GetUInt32("server_ip"); set => Accessor.SetUInt32("server_ip", value); } + public uint ServerPort + { get => Accessor.GetUInt32("server_port"); set => Accessor.SetUInt32("server_port", value); } + public CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve Res + { get => new CMsgGCCStrike15_v2_MatchmakingGC2ClientReserveImpl(NativeNetMessages.GetNestedMessage(Address, "res"), false); } + public string Errormsg + { get => Accessor.GetString("errormsg"); set => Accessor.SetString("errormsg", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientRequestOffersImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientRequestOffersImpl.cs index 32b42c75f..fa464c360 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientRequestOffersImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientRequestOffersImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,9 +8,8 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ClientRequestOffersImpl : TypedProtobuf, CMsgGCCStrike15_v2_ClientRequestOffers { - public CMsgGCCStrike15_v2_ClientRequestOffersImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - + public CMsgGCCStrike15_v2_ClientRequestOffersImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientRequestPlayersProfileImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientRequestPlayersProfileImpl.cs index 820267a41..1dd262831 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientRequestPlayersProfileImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientRequestPlayersProfileImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ClientRequestPlayersProfileImpl : TypedProtobuf, CMsgGCCStrike15_v2_ClientRequestPlayersProfile { - public CMsgGCCStrike15_v2_ClientRequestPlayersProfileImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint RequestIdDeprecated - { get => Accessor.GetUInt32("request_id__deprecated"); set => Accessor.SetUInt32("request_id__deprecated", value); } - - - public IProtobufRepeatedFieldValueType AccountIdsDeprecated - { get => new ProtobufRepeatedFieldValueType(Accessor, "account_ids__deprecated"); } - - - public uint AccountId - { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } - - - public uint RequestLevel - { get => Accessor.GetUInt32("request_level"); set => Accessor.SetUInt32("request_level", value); } - -} + public CMsgGCCStrike15_v2_ClientRequestPlayersProfileImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint RequestIdDeprecated + { get => Accessor.GetUInt32("request_id__deprecated"); set => Accessor.SetUInt32("request_id__deprecated", value); } + public IProtobufRepeatedFieldValueType AccountIdsDeprecated + { get => new ProtobufRepeatedFieldValueType(Accessor, "account_ids__deprecated"); } + public uint AccountId + { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } + public uint RequestLevel + { get => Accessor.GetUInt32("request_level"); set => Accessor.SetUInt32("request_level", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientRequestSouvenirImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientRequestSouvenirImpl.cs index 3aa68d743..be3d58762 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientRequestSouvenirImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientRequestSouvenirImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ClientRequestSouvenirImpl : TypedProtobuf, CMsgGCCStrike15_v2_ClientRequestSouvenir { - public CMsgGCCStrike15_v2_ClientRequestSouvenirImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Itemid - { get => Accessor.GetUInt64("itemid"); set => Accessor.SetUInt64("itemid", value); } - - - public ulong Matchid - { get => Accessor.GetUInt64("matchid"); set => Accessor.SetUInt64("matchid", value); } - - - public int Eventid - { get => Accessor.GetInt32("eventid"); set => Accessor.SetInt32("eventid", value); } - -} + public CMsgGCCStrike15_v2_ClientRequestSouvenirImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong Itemid + { get => Accessor.GetUInt64("itemid"); set => Accessor.SetUInt64("itemid", value); } + public ulong Matchid + { get => Accessor.GetUInt64("matchid"); set => Accessor.SetUInt64("matchid", value); } + public int Eventid + { get => Accessor.GetInt32("eventid"); set => Accessor.SetInt32("eventid", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientRequestWatchInfoFriendsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientRequestWatchInfoFriendsImpl.cs index 042ec5ce3..e43059c13 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientRequestWatchInfoFriendsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientRequestWatchInfoFriendsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,32 +8,20 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ClientRequestWatchInfoFriendsImpl : TypedProtobuf, CMsgGCCStrike15_v2_ClientRequestWatchInfoFriends { - public CMsgGCCStrike15_v2_ClientRequestWatchInfoFriendsImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint RequestId - { get => Accessor.GetUInt32("request_id"); set => Accessor.SetUInt32("request_id", value); } - - - public IProtobufRepeatedFieldValueType AccountIds - { get => new ProtobufRepeatedFieldValueType(Accessor, "account_ids"); } - - - public ulong Serverid - { get => Accessor.GetUInt64("serverid"); set => Accessor.SetUInt64("serverid", value); } - - - public ulong Matchid - { get => Accessor.GetUInt64("matchid"); set => Accessor.SetUInt64("matchid", value); } - - - public uint ClientLauncher - { get => Accessor.GetUInt32("client_launcher"); set => Accessor.SetUInt32("client_launcher", value); } - - - public IProtobufRepeatedFieldSubMessageType DataCenterPings - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "data_center_pings"); } - -} + public CMsgGCCStrike15_v2_ClientRequestWatchInfoFriendsImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint RequestId + { get => Accessor.GetUInt32("request_id"); set => Accessor.SetUInt32("request_id", value); } + public IProtobufRepeatedFieldValueType AccountIds + { get => new ProtobufRepeatedFieldValueType(Accessor, "account_ids"); } + public ulong Serverid + { get => Accessor.GetUInt64("serverid"); set => Accessor.SetUInt64("serverid", value); } + public ulong Matchid + { get => Accessor.GetUInt64("matchid"); set => Accessor.SetUInt64("matchid", value); } + public uint ClientLauncher + { get => Accessor.GetUInt32("client_launcher"); set => Accessor.SetUInt32("client_launcher", value); } + public IProtobufRepeatedFieldSubMessageType DataCenterPings + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "data_center_pings"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientSubmitSurveyVoteImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientSubmitSurveyVoteImpl.cs index b4050a331..508d39570 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientSubmitSurveyVoteImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientSubmitSurveyVoteImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ClientSubmitSurveyVoteImpl : TypedProtobuf, CMsgGCCStrike15_v2_ClientSubmitSurveyVote { - public CMsgGCCStrike15_v2_ClientSubmitSurveyVoteImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint SurveyId - { get => Accessor.GetUInt32("survey_id"); set => Accessor.SetUInt32("survey_id", value); } - - - public uint Vote - { get => Accessor.GetUInt32("vote"); set => Accessor.SetUInt32("vote", value); } - -} + public CMsgGCCStrike15_v2_ClientSubmitSurveyVoteImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint SurveyId + { get => Accessor.GetUInt32("survey_id"); set => Accessor.SetUInt32("survey_id", value); } + public uint Vote + { get => Accessor.GetUInt32("vote"); set => Accessor.SetUInt32("vote", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientToGCChatImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientToGCChatImpl.cs index 2006dadfe..33d35ba02 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientToGCChatImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientToGCChatImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ClientToGCChatImpl : TypedProtobuf, CMsgGCCStrike15_v2_ClientToGCChat { - public CMsgGCCStrike15_v2_ClientToGCChatImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong MatchId - { get => Accessor.GetUInt64("match_id"); set => Accessor.SetUInt64("match_id", value); } - - - public string Text - { get => Accessor.GetString("text"); set => Accessor.SetString("text", value); } - -} + public CMsgGCCStrike15_v2_ClientToGCChatImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong MatchId + { get => Accessor.GetUInt64("match_id"); set => Accessor.SetUInt64("match_id", value); } + public string Text + { get => Accessor.GetString("text"); set => Accessor.SetString("text", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientToGCRequestElevateImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientToGCRequestElevateImpl.cs index 4af4398ae..7b4ad74db 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientToGCRequestElevateImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientToGCRequestElevateImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ClientToGCRequestElevateImpl : TypedProtobuf, CMsgGCCStrike15_v2_ClientToGCRequestElevate { - public CMsgGCCStrike15_v2_ClientToGCRequestElevateImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Stage - { get => Accessor.GetUInt32("stage"); set => Accessor.SetUInt32("stage", value); } + public CMsgGCCStrike15_v2_ClientToGCRequestElevateImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public uint Stage + { get => Accessor.GetUInt32("stage"); set => Accessor.SetUInt32("stage", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientToGCRequestTicketImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientToGCRequestTicketImpl.cs index 26f6674be..62795be1c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientToGCRequestTicketImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientToGCRequestTicketImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ClientToGCRequestTicketImpl : TypedProtobuf, CMsgGCCStrike15_v2_ClientToGCRequestTicket { - public CMsgGCCStrike15_v2_ClientToGCRequestTicketImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong AuthorizedSteamId - { get => Accessor.GetUInt64("authorized_steam_id"); set => Accessor.SetUInt64("authorized_steam_id", value); } - - - public uint AuthorizedPublicIp - { get => Accessor.GetUInt32("authorized_public_ip"); set => Accessor.SetUInt32("authorized_public_ip", value); } - - - public ulong GameserverSteamId - { get => Accessor.GetUInt64("gameserver_steam_id"); set => Accessor.SetUInt64("gameserver_steam_id", value); } - - - public string GameserverSdrRouting - { get => Accessor.GetString("gameserver_sdr_routing"); set => Accessor.SetString("gameserver_sdr_routing", value); } - -} + public CMsgGCCStrike15_v2_ClientToGCRequestTicketImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong AuthorizedSteamId + { get => Accessor.GetUInt64("authorized_steam_id"); set => Accessor.SetUInt64("authorized_steam_id", value); } + public uint AuthorizedPublicIp + { get => Accessor.GetUInt32("authorized_public_ip"); set => Accessor.SetUInt32("authorized_public_ip", value); } + public ulong GameserverSteamId + { get => Accessor.GetUInt64("gameserver_steam_id"); set => Accessor.SetUInt64("gameserver_steam_id", value); } + public string GameserverSdrRouting + { get => Accessor.GetString("gameserver_sdr_routing"); set => Accessor.SetString("gameserver_sdr_routing", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientVarValueNotificationInfoImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientVarValueNotificationInfoImpl.cs index 9d6b9391e..f206ee6ce 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientVarValueNotificationInfoImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ClientVarValueNotificationInfoImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ClientVarValueNotificationInfoImpl : TypedProtobuf, CMsgGCCStrike15_v2_ClientVarValueNotificationInfo { - public CMsgGCCStrike15_v2_ClientVarValueNotificationInfoImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string ValueName - { get => Accessor.GetString("value_name"); set => Accessor.SetString("value_name", value); } - - - public int ValueInt - { get => Accessor.GetInt32("value_int"); set => Accessor.SetInt32("value_int", value); } - - - public uint ServerAddr - { get => Accessor.GetUInt32("server_addr"); set => Accessor.SetUInt32("server_addr", value); } - - - public uint ServerPort - { get => Accessor.GetUInt32("server_port"); set => Accessor.SetUInt32("server_port", value); } - - - public IProtobufRepeatedFieldValueType ChokedBlocks - { get => new ProtobufRepeatedFieldValueType(Accessor, "choked_blocks"); } - -} + public CMsgGCCStrike15_v2_ClientVarValueNotificationInfoImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string ValueName + { get => Accessor.GetString("value_name"); set => Accessor.SetString("value_name", value); } + public int ValueInt + { get => Accessor.GetInt32("value_int"); set => Accessor.SetInt32("value_int", value); } + public uint ServerAddr + { get => Accessor.GetUInt32("server_addr"); set => Accessor.SetUInt32("server_addr", value); } + public uint ServerPort + { get => Accessor.GetUInt32("server_port"); set => Accessor.SetUInt32("server_port", value); } + public IProtobufRepeatedFieldValueType ChokedBlocks + { get => new ProtobufRepeatedFieldValueType(Accessor, "choked_blocks"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_FantasyImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_FantasyImpl.cs index d56f796b6..20e430a2e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_FantasyImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_FantasyImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_FantasyImpl : TypedProtobuf, CMsgGCCStrike15_v2_Fantasy { - public CMsgGCCStrike15_v2_FantasyImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint EventId - { get => Accessor.GetUInt32("event_id"); set => Accessor.SetUInt32("event_id", value); } - - - public IProtobufRepeatedFieldSubMessageType Teams - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "teams"); } - -} + public CMsgGCCStrike15_v2_FantasyImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint EventId + { get => Accessor.GetUInt32("event_id"); set => Accessor.SetUInt32("event_id", value); } + public IProtobufRepeatedFieldSubMessageType Teams + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "teams"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Fantasy_FantasySlotImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Fantasy_FantasySlotImpl.cs index 8160f046c..64c64e2e5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Fantasy_FantasySlotImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Fantasy_FantasySlotImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_Fantasy_FantasySlotImpl : TypedProtobuf, CMsgGCCStrike15_v2_Fantasy_FantasySlot { - public CMsgGCCStrike15_v2_Fantasy_FantasySlotImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Type - { get => Accessor.GetInt32("type"); set => Accessor.SetInt32("type", value); } - - - public int Pick - { get => Accessor.GetInt32("pick"); set => Accessor.SetInt32("pick", value); } - - - public ulong Itemid - { get => Accessor.GetUInt64("itemid"); set => Accessor.SetUInt64("itemid", value); } - -} + public CMsgGCCStrike15_v2_Fantasy_FantasySlotImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Type + { get => Accessor.GetInt32("type"); set => Accessor.SetInt32("type", value); } + public int Pick + { get => Accessor.GetInt32("pick"); set => Accessor.SetInt32("pick", value); } + public ulong Itemid + { get => Accessor.GetUInt64("itemid"); set => Accessor.SetUInt64("itemid", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Fantasy_FantasyTeamImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Fantasy_FantasyTeamImpl.cs index 83fc71d77..74c70d82f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Fantasy_FantasyTeamImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Fantasy_FantasyTeamImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_Fantasy_FantasyTeamImpl : TypedProtobuf, CMsgGCCStrike15_v2_Fantasy_FantasyTeam { - public CMsgGCCStrike15_v2_Fantasy_FantasyTeamImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Sectionid - { get => Accessor.GetInt32("sectionid"); set => Accessor.SetInt32("sectionid", value); } - - - public IProtobufRepeatedFieldSubMessageType Slots - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "slots"); } - -} + public CMsgGCCStrike15_v2_Fantasy_FantasyTeamImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Sectionid + { get => Accessor.GetInt32("sectionid"); set => Accessor.SetInt32("sectionid", value); } + public IProtobufRepeatedFieldSubMessageType Slots + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "slots"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ClientInitSystemImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ClientInitSystemImpl.cs index 3fce23269..2b80a0ae6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ClientInitSystemImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ClientInitSystemImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,44 +8,26 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_GC2ClientInitSystemImpl : TypedProtobuf, CMsgGCCStrike15_v2_GC2ClientInitSystem { - public CMsgGCCStrike15_v2_GC2ClientInitSystemImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public bool Load - { get => Accessor.GetBool("load"); set => Accessor.SetBool("load", value); } - - - public string Name - { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } - - - public string Outputname - { get => Accessor.GetString("outputname"); set => Accessor.SetString("outputname", value); } - - - public byte[] KeyData - { get => Accessor.GetBytes("key_data"); set => Accessor.SetBytes("key_data", value); } - - - public byte[] ShaHash - { get => Accessor.GetBytes("sha_hash"); set => Accessor.SetBytes("sha_hash", value); } - - - public int Cookie - { get => Accessor.GetInt32("cookie"); set => Accessor.SetInt32("cookie", value); } - - - public string Manifest - { get => Accessor.GetString("manifest"); set => Accessor.SetString("manifest", value); } - - - public byte[] SystemPackage - { get => Accessor.GetBytes("system_package"); set => Accessor.SetBytes("system_package", value); } - - - public bool LoadSystem - { get => Accessor.GetBool("load_system"); set => Accessor.SetBool("load_system", value); } - -} + public CMsgGCCStrike15_v2_GC2ClientInitSystemImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public bool Load + { get => Accessor.GetBool("load"); set => Accessor.SetBool("load", value); } + public string Name + { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } + public string Outputname + { get => Accessor.GetString("outputname"); set => Accessor.SetString("outputname", value); } + public byte[] KeyData + { get => Accessor.GetBytes("key_data"); set => Accessor.SetBytes("key_data", value); } + public byte[] ShaHash + { get => Accessor.GetBytes("sha_hash"); set => Accessor.SetBytes("sha_hash", value); } + public int Cookie + { get => Accessor.GetInt32("cookie"); set => Accessor.SetInt32("cookie", value); } + public string Manifest + { get => Accessor.GetString("manifest"); set => Accessor.SetString("manifest", value); } + public byte[] SystemPackage + { get => Accessor.GetBytes("system_package"); set => Accessor.SetBytes("system_package", value); } + public bool LoadSystem + { get => Accessor.GetBool("load_system"); set => Accessor.SetBool("load_system", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ClientInitSystem_ResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ClientInitSystem_ResponseImpl.cs index 8d744e9e2..efdcebf02 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ClientInitSystem_ResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ClientInitSystem_ResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,48 +8,28 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_GC2ClientInitSystem_ResponseImpl : TypedProtobuf, CMsgGCCStrike15_v2_GC2ClientInitSystem_Response { - public CMsgGCCStrike15_v2_GC2ClientInitSystem_ResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public bool Success - { get => Accessor.GetBool("success"); set => Accessor.SetBool("success", value); } - - - public string Diagnostic - { get => Accessor.GetString("diagnostic"); set => Accessor.SetString("diagnostic", value); } - - - public byte[] ShaHash - { get => Accessor.GetBytes("sha_hash"); set => Accessor.SetBytes("sha_hash", value); } - - - public int Response - { get => Accessor.GetInt32("response"); set => Accessor.SetInt32("response", value); } - - - public int ErrorCode1 - { get => Accessor.GetInt32("error_code1"); set => Accessor.SetInt32("error_code1", value); } - - - public int ErrorCode2 - { get => Accessor.GetInt32("error_code2"); set => Accessor.SetInt32("error_code2", value); } - - - public long Handle - { get => Accessor.GetInt64("handle"); set => Accessor.SetInt64("handle", value); } - - - public EInitSystemResult EinitResult - { get => (EInitSystemResult)Accessor.GetInt32("einit_result"); set => Accessor.SetInt32("einit_result", (int)value); } - - - public int AuxSystem1 - { get => Accessor.GetInt32("aux_system1"); set => Accessor.SetInt32("aux_system1", value); } - - - public int AuxSystem2 - { get => Accessor.GetInt32("aux_system2"); set => Accessor.SetInt32("aux_system2", value); } - -} + public CMsgGCCStrike15_v2_GC2ClientInitSystem_ResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public bool Success + { get => Accessor.GetBool("success"); set => Accessor.SetBool("success", value); } + public string Diagnostic + { get => Accessor.GetString("diagnostic"); set => Accessor.SetString("diagnostic", value); } + public byte[] ShaHash + { get => Accessor.GetBytes("sha_hash"); set => Accessor.SetBytes("sha_hash", value); } + public int Response + { get => Accessor.GetInt32("response"); set => Accessor.SetInt32("response", value); } + public int ErrorCode1 + { get => Accessor.GetInt32("error_code1"); set => Accessor.SetInt32("error_code1", value); } + public int ErrorCode2 + { get => Accessor.GetInt32("error_code2"); set => Accessor.SetInt32("error_code2", value); } + public long Handle + { get => Accessor.GetInt64("handle"); set => Accessor.SetInt64("handle", value); } + public EInitSystemResult EinitResult + { get => (EInitSystemResult)Accessor.GetInt32("einit_result"); set => Accessor.SetInt32("einit_result", (int)value); } + public int AuxSystem1 + { get => Accessor.GetInt32("aux_system1"); set => Accessor.SetInt32("aux_system1", value); } + public int AuxSystem2 + { get => Accessor.GetInt32("aux_system2"); set => Accessor.SetInt32("aux_system2", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ClientNotifyXPShopImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ClientNotifyXPShopImpl.cs index 2675002bc..3bfb7aa6d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ClientNotifyXPShopImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ClientNotifyXPShopImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_GC2ClientNotifyXPShopImpl : TypedProtobuf, CMsgGCCStrike15_v2_GC2ClientNotifyXPShop { - public CMsgGCCStrike15_v2_GC2ClientNotifyXPShopImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public CSOAccountXpShop Prematch - { get => new CSOAccountXpShopImpl(NativeNetMessages.GetNestedMessage(Address, "prematch"), false); } - - - public CSOAccountXpShop Postmatch - { get => new CSOAccountXpShopImpl(NativeNetMessages.GetNestedMessage(Address, "postmatch"), false); } - - - public uint CurrentXp - { get => Accessor.GetUInt32("current_xp"); set => Accessor.SetUInt32("current_xp", value); } - - - public uint CurrentLevel - { get => Accessor.GetUInt32("current_level"); set => Accessor.SetUInt32("current_level", value); } - -} + public CMsgGCCStrike15_v2_GC2ClientNotifyXPShopImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public CSOAccountXpShop Prematch + { get => new CSOAccountXpShopImpl(NativeNetMessages.GetNestedMessage(Address, "prematch"), false); } + public CSOAccountXpShop Postmatch + { get => new CSOAccountXpShopImpl(NativeNetMessages.GetNestedMessage(Address, "postmatch"), false); } + public uint CurrentXp + { get => Accessor.GetUInt32("current_xp"); set => Accessor.SetUInt32("current_xp", value); } + public uint CurrentLevel + { get => Accessor.GetUInt32("current_level"); set => Accessor.SetUInt32("current_level", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ClientRefuseSecureModeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ClientRefuseSecureModeImpl.cs index df315011a..9050fc588 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ClientRefuseSecureModeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ClientRefuseSecureModeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,44 +8,26 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_GC2ClientRefuseSecureModeImpl : TypedProtobuf, CMsgGCCStrike15_v2_GC2ClientRefuseSecureMode { - public CMsgGCCStrike15_v2_GC2ClientRefuseSecureModeImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string FileReport - { get => Accessor.GetString("file_report"); set => Accessor.SetString("file_report", value); } - - - public bool OfferInsecureMode - { get => Accessor.GetBool("offer_insecure_mode"); set => Accessor.SetBool("offer_insecure_mode", value); } - - - public bool OfferSecureMode - { get => Accessor.GetBool("offer_secure_mode"); set => Accessor.SetBool("offer_secure_mode", value); } - - - public bool ShowUnsignedUi - { get => Accessor.GetBool("show_unsigned_ui"); set => Accessor.SetBool("show_unsigned_ui", value); } - - - public bool KickUser - { get => Accessor.GetBool("kick_user"); set => Accessor.SetBool("kick_user", value); } - - - public bool ShowTrustedUi - { get => Accessor.GetBool("show_trusted_ui"); set => Accessor.SetBool("show_trusted_ui", value); } - - - public bool ShowWarningNotTrusted - { get => Accessor.GetBool("show_warning_not_trusted"); set => Accessor.SetBool("show_warning_not_trusted", value); } - - - public bool ShowWarningNotTrusted2 - { get => Accessor.GetBool("show_warning_not_trusted_2"); set => Accessor.SetBool("show_warning_not_trusted_2", value); } - - - public string FilesPreventedTrusted - { get => Accessor.GetString("files_prevented_trusted"); set => Accessor.SetString("files_prevented_trusted", value); } - -} + public CMsgGCCStrike15_v2_GC2ClientRefuseSecureModeImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string FileReport + { get => Accessor.GetString("file_report"); set => Accessor.SetString("file_report", value); } + public bool OfferInsecureMode + { get => Accessor.GetBool("offer_insecure_mode"); set => Accessor.SetBool("offer_insecure_mode", value); } + public bool OfferSecureMode + { get => Accessor.GetBool("offer_secure_mode"); set => Accessor.SetBool("offer_secure_mode", value); } + public bool ShowUnsignedUi + { get => Accessor.GetBool("show_unsigned_ui"); set => Accessor.SetBool("show_unsigned_ui", value); } + public bool KickUser + { get => Accessor.GetBool("kick_user"); set => Accessor.SetBool("kick_user", value); } + public bool ShowTrustedUi + { get => Accessor.GetBool("show_trusted_ui"); set => Accessor.SetBool("show_trusted_ui", value); } + public bool ShowWarningNotTrusted + { get => Accessor.GetBool("show_warning_not_trusted"); set => Accessor.SetBool("show_warning_not_trusted", value); } + public bool ShowWarningNotTrusted2 + { get => Accessor.GetBool("show_warning_not_trusted_2"); set => Accessor.SetBool("show_warning_not_trusted_2", value); } + public string FilesPreventedTrusted + { get => Accessor.GetString("files_prevented_trusted"); set => Accessor.SetString("files_prevented_trusted", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ClientRequestValidationImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ClientRequestValidationImpl.cs index 41f462575..5806b380f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ClientRequestValidationImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ClientRequestValidationImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_GC2ClientRequestValidationImpl : TypedProtobuf, CMsgGCCStrike15_v2_GC2ClientRequestValidation { - public CMsgGCCStrike15_v2_GC2ClientRequestValidationImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public bool FullReport - { get => Accessor.GetBool("full_report"); set => Accessor.SetBool("full_report", value); } - - - public string Module - { get => Accessor.GetString("module"); set => Accessor.SetString("module", value); } - -} + public CMsgGCCStrike15_v2_GC2ClientRequestValidationImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public bool FullReport + { get => Accessor.GetBool("full_report"); set => Accessor.SetBool("full_report", value); } + public string Module + { get => Accessor.GetString("module"); set => Accessor.SetString("module", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ClientTextMsgImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ClientTextMsgImpl.cs index 4549321a5..571448c0f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ClientTextMsgImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ClientTextMsgImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_GC2ClientTextMsgImpl : TypedProtobuf, CMsgGCCStrike15_v2_GC2ClientTextMsg { - public CMsgGCCStrike15_v2_GC2ClientTextMsgImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Id - { get => Accessor.GetUInt32("id"); set => Accessor.SetUInt32("id", value); } - - - public uint Type - { get => Accessor.GetUInt32("type"); set => Accessor.SetUInt32("type", value); } - - - public byte[] Payload - { get => Accessor.GetBytes("payload"); set => Accessor.SetBytes("payload", value); } - -} + public CMsgGCCStrike15_v2_GC2ClientTextMsgImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Id + { get => Accessor.GetUInt32("id"); set => Accessor.SetUInt32("id", value); } + public uint Type + { get => Accessor.GetUInt32("type"); set => Accessor.SetUInt32("type", value); } + public byte[] Payload + { get => Accessor.GetBytes("payload"); set => Accessor.SetBytes("payload", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ClientTournamentInfoImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ClientTournamentInfoImpl.cs index 4bc26f6a1..c3bf10292 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ClientTournamentInfoImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ClientTournamentInfoImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_GC2ClientTournamentInfoImpl : TypedProtobuf, CMsgGCCStrike15_v2_GC2ClientTournamentInfo { - public CMsgGCCStrike15_v2_GC2ClientTournamentInfoImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Eventid - { get => Accessor.GetUInt32("eventid"); set => Accessor.SetUInt32("eventid", value); } - - - public uint Stageid - { get => Accessor.GetUInt32("stageid"); set => Accessor.SetUInt32("stageid", value); } - - - public uint GameType - { get => Accessor.GetUInt32("game_type"); set => Accessor.SetUInt32("game_type", value); } - - - public IProtobufRepeatedFieldValueType Teamids - { get => new ProtobufRepeatedFieldValueType(Accessor, "teamids"); } - -} + public CMsgGCCStrike15_v2_GC2ClientTournamentInfoImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Eventid + { get => Accessor.GetUInt32("eventid"); set => Accessor.SetUInt32("eventid", value); } + public uint Stageid + { get => Accessor.GetUInt32("stageid"); set => Accessor.SetUInt32("stageid", value); } + public uint GameType + { get => Accessor.GetUInt32("game_type"); set => Accessor.SetUInt32("game_type", value); } + public IProtobufRepeatedFieldValueType Teamids + { get => new ProtobufRepeatedFieldValueType(Accessor, "teamids"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ServerReservationUpdateImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ServerReservationUpdateImpl.cs index 2079595c0..c8bf64242 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ServerReservationUpdateImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GC2ServerReservationUpdateImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_GC2ServerReservationUpdateImpl : TypedProtobuf, CMsgGCCStrike15_v2_GC2ServerReservationUpdate { - public CMsgGCCStrike15_v2_GC2ServerReservationUpdateImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint ViewersExternalTotal - { get => Accessor.GetUInt32("viewers_external_total"); set => Accessor.SetUInt32("viewers_external_total", value); } - - - public uint ViewersExternalSteam - { get => Accessor.GetUInt32("viewers_external_steam"); set => Accessor.SetUInt32("viewers_external_steam", value); } - -} + public CMsgGCCStrike15_v2_GC2ServerReservationUpdateImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint ViewersExternalTotal + { get => Accessor.GetUInt32("viewers_external_total"); set => Accessor.SetUInt32("viewers_external_total", value); } + public uint ViewersExternalSteam + { get => Accessor.GetUInt32("viewers_external_steam"); set => Accessor.SetUInt32("viewers_external_steam", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GCToClientChatImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GCToClientChatImpl.cs index 0f6afa552..43d5edd23 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GCToClientChatImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GCToClientChatImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_GCToClientChatImpl : TypedProtobuf, CMsgGCCStrike15_v2_GCToClientChat { - public CMsgGCCStrike15_v2_GCToClientChatImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint AccountId - { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } - - - public string Text - { get => Accessor.GetString("text"); set => Accessor.SetString("text", value); } - -} + public CMsgGCCStrike15_v2_GCToClientChatImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint AccountId + { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } + public string Text + { get => Accessor.GetString("text"); set => Accessor.SetString("text", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GetEventFavorites_RequestImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GetEventFavorites_RequestImpl.cs index 6120b4ea5..872592cf6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GetEventFavorites_RequestImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GetEventFavorites_RequestImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_GetEventFavorites_RequestImpl : TypedProtobuf, CMsgGCCStrike15_v2_GetEventFavorites_Request { - public CMsgGCCStrike15_v2_GetEventFavorites_RequestImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public bool AllEvents - { get => Accessor.GetBool("all_events"); set => Accessor.SetBool("all_events", value); } + public CMsgGCCStrike15_v2_GetEventFavorites_RequestImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public bool AllEvents + { get => Accessor.GetBool("all_events"); set => Accessor.SetBool("all_events", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GetEventFavorites_ResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GetEventFavorites_ResponseImpl.cs index 819e3e189..c80eabbd5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GetEventFavorites_ResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GetEventFavorites_ResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_GetEventFavorites_ResponseImpl : TypedProtobuf, CMsgGCCStrike15_v2_GetEventFavorites_Response { - public CMsgGCCStrike15_v2_GetEventFavorites_ResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public bool AllEvents - { get => Accessor.GetBool("all_events"); set => Accessor.SetBool("all_events", value); } - - - public string JsonFavorites - { get => Accessor.GetString("json_favorites"); set => Accessor.SetString("json_favorites", value); } - - - public string JsonFeatured - { get => Accessor.GetString("json_featured"); set => Accessor.SetString("json_featured", value); } - -} + public CMsgGCCStrike15_v2_GetEventFavorites_ResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public bool AllEvents + { get => Accessor.GetBool("all_events"); set => Accessor.SetBool("all_events", value); } + public string JsonFavorites + { get => Accessor.GetString("json_favorites"); set => Accessor.SetString("json_favorites", value); } + public string JsonFeatured + { get => Accessor.GetString("json_featured"); set => Accessor.SetString("json_featured", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GiftsLeaderboardRequestImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GiftsLeaderboardRequestImpl.cs index d641f1611..67d088531 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GiftsLeaderboardRequestImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GiftsLeaderboardRequestImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,9 +8,8 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_GiftsLeaderboardRequestImpl : TypedProtobuf, CMsgGCCStrike15_v2_GiftsLeaderboardRequest { - public CMsgGCCStrike15_v2_GiftsLeaderboardRequestImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - + public CMsgGCCStrike15_v2_GiftsLeaderboardRequestImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GiftsLeaderboardResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GiftsLeaderboardResponseImpl.cs index 7fd2e5305..a2a5227b3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GiftsLeaderboardResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GiftsLeaderboardResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_GiftsLeaderboardResponseImpl : TypedProtobuf, CMsgGCCStrike15_v2_GiftsLeaderboardResponse { - public CMsgGCCStrike15_v2_GiftsLeaderboardResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Servertime - { get => Accessor.GetUInt32("servertime"); set => Accessor.SetUInt32("servertime", value); } - - - public uint TimePeriodSeconds - { get => Accessor.GetUInt32("time_period_seconds"); set => Accessor.SetUInt32("time_period_seconds", value); } - - - public uint TotalGiftsGiven - { get => Accessor.GetUInt32("total_gifts_given"); set => Accessor.SetUInt32("total_gifts_given", value); } - - - public uint TotalGivers - { get => Accessor.GetUInt32("total_givers"); set => Accessor.SetUInt32("total_givers", value); } - - - public IProtobufRepeatedFieldSubMessageType Entries - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "entries"); } - -} + public CMsgGCCStrike15_v2_GiftsLeaderboardResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Servertime + { get => Accessor.GetUInt32("servertime"); set => Accessor.SetUInt32("servertime", value); } + public uint TimePeriodSeconds + { get => Accessor.GetUInt32("time_period_seconds"); set => Accessor.SetUInt32("time_period_seconds", value); } + public uint TotalGiftsGiven + { get => Accessor.GetUInt32("total_gifts_given"); set => Accessor.SetUInt32("total_gifts_given", value); } + public uint TotalGivers + { get => Accessor.GetUInt32("total_givers"); set => Accessor.SetUInt32("total_givers", value); } + public IProtobufRepeatedFieldSubMessageType Entries + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "entries"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GiftsLeaderboardResponse_GiftLeaderboardEntryImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GiftsLeaderboardResponse_GiftLeaderboardEntryImpl.cs index bb1d6cfaf..d9571b6e1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GiftsLeaderboardResponse_GiftLeaderboardEntryImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_GiftsLeaderboardResponse_GiftLeaderboardEntryImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_GiftsLeaderboardResponse_GiftLeaderboardEntryImpl : TypedProtobuf, CMsgGCCStrike15_v2_GiftsLeaderboardResponse_GiftLeaderboardEntry { - public CMsgGCCStrike15_v2_GiftsLeaderboardResponse_GiftLeaderboardEntryImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Accountid - { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } - - - public uint Gifts - { get => Accessor.GetUInt32("gifts"); set => Accessor.SetUInt32("gifts", value); } - -} + public CMsgGCCStrike15_v2_GiftsLeaderboardResponse_GiftLeaderboardEntryImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Accountid + { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } + public uint Gifts + { get => Accessor.GetUInt32("gifts"); set => Accessor.SetUInt32("gifts", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchEndRewardDropsNotificationImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchEndRewardDropsNotificationImpl.cs index b01e8527c..b7e43f128 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchEndRewardDropsNotificationImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchEndRewardDropsNotificationImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_MatchEndRewardDropsNotificationImpl : TypedProtobuf, CMsgGCCStrike15_v2_MatchEndRewardDropsNotification { - public CMsgGCCStrike15_v2_MatchEndRewardDropsNotificationImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public CEconItemPreviewDataBlock Iteminfo - { get => new CEconItemPreviewDataBlockImpl(NativeNetMessages.GetNestedMessage(Address, "iteminfo"), false); } + public CMsgGCCStrike15_v2_MatchEndRewardDropsNotificationImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public CEconItemPreviewDataBlock Iteminfo + { get => new CEconItemPreviewDataBlockImpl(NativeNetMessages.GetNestedMessage(Address, "iteminfo"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchEndRunRewardDropsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchEndRunRewardDropsImpl.cs index c375022b4..a7571b300 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchEndRunRewardDropsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchEndRunRewardDropsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_MatchEndRunRewardDropsImpl : TypedProtobuf, CMsgGCCStrike15_v2_MatchEndRunRewardDrops { - public CMsgGCCStrike15_v2_MatchEndRunRewardDropsImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public CMsgGCCStrike15_v2_MatchmakingServerReservationResponse Serverinfo - { get => new CMsgGCCStrike15_v2_MatchmakingServerReservationResponseImpl(NativeNetMessages.GetNestedMessage(Address, "serverinfo"), false); } - - - public CMsgGC_ServerQuestUpdateData MatchEndQuestData - { get => new CMsgGC_ServerQuestUpdateDataImpl(NativeNetMessages.GetNestedMessage(Address, "match_end_quest_data"), false); } - -} + public CMsgGCCStrike15_v2_MatchEndRunRewardDropsImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public CMsgGCCStrike15_v2_MatchmakingServerReservationResponse Serverinfo + { get => new CMsgGCCStrike15_v2_MatchmakingServerReservationResponseImpl(NativeNetMessages.GetNestedMessage(Address, "serverinfo"), false); } + public CMsgGC_ServerQuestUpdateData MatchEndQuestData + { get => new CMsgGC_ServerQuestUpdateDataImpl(NativeNetMessages.GetNestedMessage(Address, "match_end_quest_data"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchListImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchListImpl.cs index d2a404601..9b76b450b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchListImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchListImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,32 +8,20 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_MatchListImpl : TypedProtobuf, CMsgGCCStrike15_v2_MatchList { - public CMsgGCCStrike15_v2_MatchListImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Msgrequestid - { get => Accessor.GetUInt32("msgrequestid"); set => Accessor.SetUInt32("msgrequestid", value); } - - - public uint Accountid - { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } - - - public uint Servertime - { get => Accessor.GetUInt32("servertime"); set => Accessor.SetUInt32("servertime", value); } - - - public IProtobufRepeatedFieldSubMessageType Matches - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "matches"); } - - - public IProtobufRepeatedFieldSubMessageType Streams - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "streams"); } - - - public CDataGCCStrike15_v2_TournamentInfo Tournamentinfo - { get => new CDataGCCStrike15_v2_TournamentInfoImpl(NativeNetMessages.GetNestedMessage(Address, "tournamentinfo"), false); } - -} + public CMsgGCCStrike15_v2_MatchListImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Msgrequestid + { get => Accessor.GetUInt32("msgrequestid"); set => Accessor.SetUInt32("msgrequestid", value); } + public uint Accountid + { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } + public uint Servertime + { get => Accessor.GetUInt32("servertime"); set => Accessor.SetUInt32("servertime", value); } + public IProtobufRepeatedFieldSubMessageType Matches + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "matches"); } + public IProtobufRepeatedFieldSubMessageType Streams + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "streams"); } + public CDataGCCStrike15_v2_TournamentInfo Tournamentinfo + { get => new CDataGCCStrike15_v2_TournamentInfoImpl(NativeNetMessages.GetNestedMessage(Address, "tournamentinfo"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchListRequestCurrentLiveGamesImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchListRequestCurrentLiveGamesImpl.cs index ebc36356e..eac20e6b5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchListRequestCurrentLiveGamesImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchListRequestCurrentLiveGamesImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,9 +8,8 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_MatchListRequestCurrentLiveGamesImpl : TypedProtobuf, CMsgGCCStrike15_v2_MatchListRequestCurrentLiveGames { - public CMsgGCCStrike15_v2_MatchListRequestCurrentLiveGamesImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - + public CMsgGCCStrike15_v2_MatchListRequestCurrentLiveGamesImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchListRequestFullGameInfoImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchListRequestFullGameInfoImpl.cs index 2389ebe2d..fee98f14c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchListRequestFullGameInfoImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchListRequestFullGameInfoImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_MatchListRequestFullGameInfoImpl : TypedProtobuf, CMsgGCCStrike15_v2_MatchListRequestFullGameInfo { - public CMsgGCCStrike15_v2_MatchListRequestFullGameInfoImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Matchid - { get => Accessor.GetUInt64("matchid"); set => Accessor.SetUInt64("matchid", value); } - - - public ulong Outcomeid - { get => Accessor.GetUInt64("outcomeid"); set => Accessor.SetUInt64("outcomeid", value); } - - - public uint Token - { get => Accessor.GetUInt32("token"); set => Accessor.SetUInt32("token", value); } - -} + public CMsgGCCStrike15_v2_MatchListRequestFullGameInfoImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong Matchid + { get => Accessor.GetUInt64("matchid"); set => Accessor.SetUInt64("matchid", value); } + public ulong Outcomeid + { get => Accessor.GetUInt64("outcomeid"); set => Accessor.SetUInt64("outcomeid", value); } + public uint Token + { get => Accessor.GetUInt32("token"); set => Accessor.SetUInt32("token", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchListRequestLiveGameForUserImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchListRequestLiveGameForUserImpl.cs index b6b480e9f..4df63eb6d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchListRequestLiveGameForUserImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchListRequestLiveGameForUserImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_MatchListRequestLiveGameForUserImpl : TypedProtobuf, CMsgGCCStrike15_v2_MatchListRequestLiveGameForUser { - public CMsgGCCStrike15_v2_MatchListRequestLiveGameForUserImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Accountid - { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } + public CMsgGCCStrike15_v2_MatchListRequestLiveGameForUserImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public uint Accountid + { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchListRequestRecentUserGamesImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchListRequestRecentUserGamesImpl.cs index 761f5975d..9e7497c49 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchListRequestRecentUserGamesImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchListRequestRecentUserGamesImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_MatchListRequestRecentUserGamesImpl : TypedProtobuf, CMsgGCCStrike15_v2_MatchListRequestRecentUserGames { - public CMsgGCCStrike15_v2_MatchListRequestRecentUserGamesImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Accountid - { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } + public CMsgGCCStrike15_v2_MatchListRequestRecentUserGamesImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public uint Accountid + { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchListRequestTournamentGamesImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchListRequestTournamentGamesImpl.cs index 58c35ea42..fa473a4f4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchListRequestTournamentGamesImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchListRequestTournamentGamesImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_MatchListRequestTournamentGamesImpl : TypedProtobuf, CMsgGCCStrike15_v2_MatchListRequestTournamentGames { - public CMsgGCCStrike15_v2_MatchListRequestTournamentGamesImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Eventid - { get => Accessor.GetInt32("eventid"); set => Accessor.SetInt32("eventid", value); } + public CMsgGCCStrike15_v2_MatchListRequestTournamentGamesImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public int Eventid + { get => Accessor.GetInt32("eventid"); set => Accessor.SetInt32("eventid", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchListTournamentOperatorMgmtImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchListTournamentOperatorMgmtImpl.cs index af30d89e5..e1498ca18 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchListTournamentOperatorMgmtImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchListTournamentOperatorMgmtImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_MatchListTournamentOperatorMgmtImpl : TypedProtobuf, CMsgGCCStrike15_v2_MatchListTournamentOperatorMgmt { - public CMsgGCCStrike15_v2_MatchListTournamentOperatorMgmtImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Eventid - { get => Accessor.GetInt32("eventid"); set => Accessor.SetInt32("eventid", value); } - - - public IProtobufRepeatedFieldSubMessageType Matches - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "matches"); } - - - public uint Accountid - { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } - -} + public CMsgGCCStrike15_v2_MatchListTournamentOperatorMgmtImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Eventid + { get => Accessor.GetInt32("eventid"); set => Accessor.SetInt32("eventid", value); } + public IProtobufRepeatedFieldSubMessageType Matches + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "matches"); } + public uint Accountid + { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingClient2GCHelloImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingClient2GCHelloImpl.cs index 99db84760..bc22fcab7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingClient2GCHelloImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingClient2GCHelloImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,9 +8,8 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_MatchmakingClient2GCHelloImpl : TypedProtobuf, CMsgGCCStrike15_v2_MatchmakingClient2GCHello { - public CMsgGCCStrike15_v2_MatchmakingClient2GCHelloImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - + public CMsgGCCStrike15_v2_MatchmakingClient2GCHelloImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingClient2ServerPingImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingClient2ServerPingImpl.cs index f7c424e10..34ce97942 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingClient2ServerPingImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingClient2ServerPingImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,44 +8,26 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_MatchmakingClient2ServerPingImpl : TypedProtobuf, CMsgGCCStrike15_v2_MatchmakingClient2ServerPing { - public CMsgGCCStrike15_v2_MatchmakingClient2ServerPingImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldSubMessageType Gameserverpings - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "gameserverpings"); } - - - public int OffsetIndex - { get => Accessor.GetInt32("offset_index"); set => Accessor.SetInt32("offset_index", value); } - - - public int FinalBatch - { get => Accessor.GetInt32("final_batch"); set => Accessor.SetInt32("final_batch", value); } - - - public IProtobufRepeatedFieldSubMessageType DataCenterPings - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "data_center_pings"); } - - - public uint MaxPing - { get => Accessor.GetUInt32("max_ping"); set => Accessor.SetUInt32("max_ping", value); } - - - public uint TestToken - { get => Accessor.GetUInt32("test_token"); set => Accessor.SetUInt32("test_token", value); } - - - public byte[] SearchKey - { get => Accessor.GetBytes("search_key"); set => Accessor.SetBytes("search_key", value); } - - - public IProtobufRepeatedFieldSubMessageType Notes - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "notes"); } - - - public string DebugMessage - { get => Accessor.GetString("debug_message"); set => Accessor.SetString("debug_message", value); } - -} + public CMsgGCCStrike15_v2_MatchmakingClient2ServerPingImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public IProtobufRepeatedFieldSubMessageType Gameserverpings + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "gameserverpings"); } + public int OffsetIndex + { get => Accessor.GetInt32("offset_index"); set => Accessor.SetInt32("offset_index", value); } + public int FinalBatch + { get => Accessor.GetInt32("final_batch"); set => Accessor.SetInt32("final_batch", value); } + public IProtobufRepeatedFieldSubMessageType DataCenterPings + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "data_center_pings"); } + public uint MaxPing + { get => Accessor.GetUInt32("max_ping"); set => Accessor.SetUInt32("max_ping", value); } + public uint TestToken + { get => Accessor.GetUInt32("test_token"); set => Accessor.SetUInt32("test_token", value); } + public byte[] SearchKey + { get => Accessor.GetBytes("search_key"); set => Accessor.SetBytes("search_key", value); } + public IProtobufRepeatedFieldSubMessageType Notes + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "notes"); } + public string DebugMessage + { get => Accessor.GetString("debug_message"); set => Accessor.SetString("debug_message", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ClientAbandonImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ClientAbandonImpl.cs index 757852544..62b6d0885 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ClientAbandonImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ClientAbandonImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_MatchmakingGC2ClientAbandonImpl : TypedProtobuf, CMsgGCCStrike15_v2_MatchmakingGC2ClientAbandon { - public CMsgGCCStrike15_v2_MatchmakingGC2ClientAbandonImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint AccountId - { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } - - - public CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve AbandonedMatch - { get => new CMsgGCCStrike15_v2_MatchmakingGC2ClientReserveImpl(NativeNetMessages.GetNestedMessage(Address, "abandoned_match"), false); } - - - public uint PenaltySeconds - { get => Accessor.GetUInt32("penalty_seconds"); set => Accessor.SetUInt32("penalty_seconds", value); } - - - public uint PenaltyReason - { get => Accessor.GetUInt32("penalty_reason"); set => Accessor.SetUInt32("penalty_reason", value); } - -} + public CMsgGCCStrike15_v2_MatchmakingGC2ClientAbandonImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint AccountId + { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } + public CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve AbandonedMatch + { get => new CMsgGCCStrike15_v2_MatchmakingGC2ClientReserveImpl(NativeNetMessages.GetNestedMessage(Address, "abandoned_match"), false); } + public uint PenaltySeconds + { get => Accessor.GetUInt32("penalty_seconds"); set => Accessor.SetUInt32("penalty_seconds", value); } + public uint PenaltyReason + { get => Accessor.GetUInt32("penalty_reason"); set => Accessor.SetUInt32("penalty_reason", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ClientHelloImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ClientHelloImpl.cs index eb8f03570..d6864e0be 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ClientHelloImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ClientHelloImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,88 +8,48 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_MatchmakingGC2ClientHelloImpl : TypedProtobuf, CMsgGCCStrike15_v2_MatchmakingGC2ClientHello { - public CMsgGCCStrike15_v2_MatchmakingGC2ClientHelloImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint AccountId - { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } - - - public CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve Ongoingmatch - { get => new CMsgGCCStrike15_v2_MatchmakingGC2ClientReserveImpl(NativeNetMessages.GetNestedMessage(Address, "ongoingmatch"), false); } - - - public GlobalStatistics GlobalStats - { get => new GlobalStatisticsImpl(NativeNetMessages.GetNestedMessage(Address, "global_stats"), false); } - - - public uint PenaltySeconds - { get => Accessor.GetUInt32("penalty_seconds"); set => Accessor.SetUInt32("penalty_seconds", value); } - - - public uint PenaltyReason - { get => Accessor.GetUInt32("penalty_reason"); set => Accessor.SetUInt32("penalty_reason", value); } - - - public int VacBanned - { get => Accessor.GetInt32("vac_banned"); set => Accessor.SetInt32("vac_banned", value); } - - - public PlayerRankingInfo Ranking - { get => new PlayerRankingInfoImpl(NativeNetMessages.GetNestedMessage(Address, "ranking"), false); } - - - public PlayerCommendationInfo Commendation - { get => new PlayerCommendationInfoImpl(NativeNetMessages.GetNestedMessage(Address, "commendation"), false); } - - - public PlayerMedalsInfo Medals - { get => new PlayerMedalsInfoImpl(NativeNetMessages.GetNestedMessage(Address, "medals"), false); } - - - public TournamentEvent MyCurrentEvent - { get => new TournamentEventImpl(NativeNetMessages.GetNestedMessage(Address, "my_current_event"), false); } - - - public IProtobufRepeatedFieldSubMessageType MyCurrentEventTeams - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "my_current_event_teams"); } - - - public TournamentTeam MyCurrentTeam - { get => new TournamentTeamImpl(NativeNetMessages.GetNestedMessage(Address, "my_current_team"), false); } - - - public IProtobufRepeatedFieldSubMessageType MyCurrentEventStages - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "my_current_event_stages"); } - - - public uint SurveyVote - { get => Accessor.GetUInt32("survey_vote"); set => Accessor.SetUInt32("survey_vote", value); } - - - public AccountActivity Activity - { get => new AccountActivityImpl(NativeNetMessages.GetNestedMessage(Address, "activity"), false); } - - - public int PlayerLevel - { get => Accessor.GetInt32("player_level"); set => Accessor.SetInt32("player_level", value); } - - - public int PlayerCurXp - { get => Accessor.GetInt32("player_cur_xp"); set => Accessor.SetInt32("player_cur_xp", value); } - - - public int PlayerXpBonusFlags - { get => Accessor.GetInt32("player_xp_bonus_flags"); set => Accessor.SetInt32("player_xp_bonus_flags", value); } - - - public IProtobufRepeatedFieldSubMessageType Rankings - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "rankings"); } - - - public ulong Owcaseid - { get => Accessor.GetUInt64("owcaseid"); set => Accessor.SetUInt64("owcaseid", value); } - -} + public CMsgGCCStrike15_v2_MatchmakingGC2ClientHelloImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint AccountId + { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } + public CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve Ongoingmatch + { get => new CMsgGCCStrike15_v2_MatchmakingGC2ClientReserveImpl(NativeNetMessages.GetNestedMessage(Address, "ongoingmatch"), false); } + public GlobalStatistics GlobalStats + { get => new GlobalStatisticsImpl(NativeNetMessages.GetNestedMessage(Address, "global_stats"), false); } + public uint PenaltySeconds + { get => Accessor.GetUInt32("penalty_seconds"); set => Accessor.SetUInt32("penalty_seconds", value); } + public uint PenaltyReason + { get => Accessor.GetUInt32("penalty_reason"); set => Accessor.SetUInt32("penalty_reason", value); } + public int VacBanned + { get => Accessor.GetInt32("vac_banned"); set => Accessor.SetInt32("vac_banned", value); } + public PlayerRankingInfo Ranking + { get => new PlayerRankingInfoImpl(NativeNetMessages.GetNestedMessage(Address, "ranking"), false); } + public PlayerCommendationInfo Commendation + { get => new PlayerCommendationInfoImpl(NativeNetMessages.GetNestedMessage(Address, "commendation"), false); } + public PlayerMedalsInfo Medals + { get => new PlayerMedalsInfoImpl(NativeNetMessages.GetNestedMessage(Address, "medals"), false); } + public TournamentEvent MyCurrentEvent + { get => new TournamentEventImpl(NativeNetMessages.GetNestedMessage(Address, "my_current_event"), false); } + public IProtobufRepeatedFieldSubMessageType MyCurrentEventTeams + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "my_current_event_teams"); } + public TournamentTeam MyCurrentTeam + { get => new TournamentTeamImpl(NativeNetMessages.GetNestedMessage(Address, "my_current_team"), false); } + public IProtobufRepeatedFieldSubMessageType MyCurrentEventStages + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "my_current_event_stages"); } + public uint SurveyVote + { get => Accessor.GetUInt32("survey_vote"); set => Accessor.SetUInt32("survey_vote", value); } + public AccountActivity Activity + { get => new AccountActivityImpl(NativeNetMessages.GetNestedMessage(Address, "activity"), false); } + public int PlayerLevel + { get => Accessor.GetInt32("player_level"); set => Accessor.SetInt32("player_level", value); } + public int PlayerCurXp + { get => Accessor.GetInt32("player_cur_xp"); set => Accessor.SetInt32("player_cur_xp", value); } + public int PlayerXpBonusFlags + { get => Accessor.GetInt32("player_xp_bonus_flags"); set => Accessor.SetInt32("player_xp_bonus_flags", value); } + public IProtobufRepeatedFieldSubMessageType Rankings + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "rankings"); } + public ulong Owcaseid + { get => Accessor.GetUInt64("owcaseid"); set => Accessor.SetUInt64("owcaseid", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ClientReserveImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ClientReserveImpl.cs index 22433e896..d86f74acf 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ClientReserveImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ClientReserveImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,44 +8,26 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_MatchmakingGC2ClientReserveImpl : TypedProtobuf, CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve { - public CMsgGCCStrike15_v2_MatchmakingGC2ClientReserveImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Serverid - { get => Accessor.GetUInt64("serverid"); set => Accessor.SetUInt64("serverid", value); } - - - public uint DirectUdpIp - { get => Accessor.GetUInt32("direct_udp_ip"); set => Accessor.SetUInt32("direct_udp_ip", value); } - - - public uint DirectUdpPort - { get => Accessor.GetUInt32("direct_udp_port"); set => Accessor.SetUInt32("direct_udp_port", value); } - - - public ulong Reservationid - { get => Accessor.GetUInt64("reservationid"); set => Accessor.SetUInt64("reservationid", value); } - - - public CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve Reservation - { get => new CMsgGCCStrike15_v2_MatchmakingGC2ServerReserveImpl(NativeNetMessages.GetNestedMessage(Address, "reservation"), false); } - - - public string Map - { get => Accessor.GetString("map"); set => Accessor.SetString("map", value); } - - - public string ServerAddress - { get => Accessor.GetString("server_address"); set => Accessor.SetString("server_address", value); } - - - public DataCenterPing GsPing - { get => new DataCenterPingImpl(NativeNetMessages.GetNestedMessage(Address, "gs_ping"), false); } - - - public uint GsLocationId - { get => Accessor.GetUInt32("gs_location_id"); set => Accessor.SetUInt32("gs_location_id", value); } - -} + public CMsgGCCStrike15_v2_MatchmakingGC2ClientReserveImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong Serverid + { get => Accessor.GetUInt64("serverid"); set => Accessor.SetUInt64("serverid", value); } + public uint DirectUdpIp + { get => Accessor.GetUInt32("direct_udp_ip"); set => Accessor.SetUInt32("direct_udp_ip", value); } + public uint DirectUdpPort + { get => Accessor.GetUInt32("direct_udp_port"); set => Accessor.SetUInt32("direct_udp_port", value); } + public ulong Reservationid + { get => Accessor.GetUInt64("reservationid"); set => Accessor.SetUInt64("reservationid", value); } + public CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve Reservation + { get => new CMsgGCCStrike15_v2_MatchmakingGC2ServerReserveImpl(NativeNetMessages.GetNestedMessage(Address, "reservation"), false); } + public string Map + { get => Accessor.GetString("map"); set => Accessor.SetString("map", value); } + public string ServerAddress + { get => Accessor.GetString("server_address"); set => Accessor.SetString("server_address", value); } + public DataCenterPing GsPing + { get => new DataCenterPingImpl(NativeNetMessages.GetNestedMessage(Address, "gs_ping"), false); } + public uint GsLocationId + { get => Accessor.GetUInt32("gs_location_id"); set => Accessor.SetUInt32("gs_location_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStatsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStatsImpl.cs index c46920209..e4332d00f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStatsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStatsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStatsImpl : TypedProtobuf, CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStats { - public CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStatsImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint GsLocationId - { get => Accessor.GetUInt32("gs_location_id"); set => Accessor.SetUInt32("gs_location_id", value); } - - - public uint DataCenterId - { get => Accessor.GetUInt32("data_center_id"); set => Accessor.SetUInt32("data_center_id", value); } - - - public uint NumLockedIn - { get => Accessor.GetUInt32("num_locked_in"); set => Accessor.SetUInt32("num_locked_in", value); } - - - public uint NumFoundNearby - { get => Accessor.GetUInt32("num_found_nearby"); set => Accessor.SetUInt32("num_found_nearby", value); } - - - public uint NoteLevel - { get => Accessor.GetUInt32("note_level"); set => Accessor.SetUInt32("note_level", value); } - -} + public CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStatsImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint GsLocationId + { get => Accessor.GetUInt32("gs_location_id"); set => Accessor.SetUInt32("gs_location_id", value); } + public uint DataCenterId + { get => Accessor.GetUInt32("data_center_id"); set => Accessor.SetUInt32("data_center_id", value); } + public uint NumLockedIn + { get => Accessor.GetUInt32("num_locked_in"); set => Accessor.SetUInt32("num_locked_in", value); } + public uint NumFoundNearby + { get => Accessor.GetUInt32("num_found_nearby"); set => Accessor.SetUInt32("num_found_nearby", value); } + public uint NoteLevel + { get => Accessor.GetUInt32("note_level"); set => Accessor.SetUInt32("note_level", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdateImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdateImpl.cs index 581d32d14..f0f6fd535 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdateImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdateImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,72 +8,40 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdateImpl : TypedProtobuf, CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate { - public CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdateImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Matchmaking - { get => Accessor.GetInt32("matchmaking"); set => Accessor.SetInt32("matchmaking", value); } - - - public IProtobufRepeatedFieldValueType WaitingAccountIdSessions - { get => new ProtobufRepeatedFieldValueType(Accessor, "waiting_account_id_sessions"); } - - - public string Error - { get => Accessor.GetString("error"); set => Accessor.SetString("error", value); } - - - public IProtobufRepeatedFieldValueType OngoingmatchAccountIdSessions - { get => new ProtobufRepeatedFieldValueType(Accessor, "ongoingmatch_account_id_sessions"); } - - - public GlobalStatistics GlobalStats - { get => new GlobalStatisticsImpl(NativeNetMessages.GetNestedMessage(Address, "global_stats"), false); } - - - public IProtobufRepeatedFieldValueType FailpingAccountIdSessions - { get => new ProtobufRepeatedFieldValueType(Accessor, "failping_account_id_sessions"); } - - - public IProtobufRepeatedFieldValueType PenaltyAccountIdSessions - { get => new ProtobufRepeatedFieldValueType(Accessor, "penalty_account_id_sessions"); } - - - public IProtobufRepeatedFieldValueType FailreadyAccountIdSessions - { get => new ProtobufRepeatedFieldValueType(Accessor, "failready_account_id_sessions"); } - - - public IProtobufRepeatedFieldValueType VacbannedAccountIdSessions - { get => new ProtobufRepeatedFieldValueType(Accessor, "vacbanned_account_id_sessions"); } - - - public IpAddressMask ServerIpaddressMask - { get => new IpAddressMaskImpl(NativeNetMessages.GetNestedMessage(Address, "server_ipaddress_mask"), false); } - - - public IProtobufRepeatedFieldSubMessageType Notes - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "notes"); } - - - public IProtobufRepeatedFieldValueType PenaltyAccountIdSessionsGreen - { get => new ProtobufRepeatedFieldValueType(Accessor, "penalty_account_id_sessions_green"); } - - - public IProtobufRepeatedFieldValueType InsufficientlevelSessions - { get => new ProtobufRepeatedFieldValueType(Accessor, "insufficientlevel_sessions"); } - - - public IProtobufRepeatedFieldValueType VsncheckAccountIdSessions - { get => new ProtobufRepeatedFieldValueType(Accessor, "vsncheck_account_id_sessions"); } - - - public IProtobufRepeatedFieldValueType LauncherMismatchSessions - { get => new ProtobufRepeatedFieldValueType(Accessor, "launcher_mismatch_sessions"); } - - - public IProtobufRepeatedFieldValueType InsecureAccountIdSessions - { get => new ProtobufRepeatedFieldValueType(Accessor, "insecure_account_id_sessions"); } - -} + public CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdateImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Matchmaking + { get => Accessor.GetInt32("matchmaking"); set => Accessor.SetInt32("matchmaking", value); } + public IProtobufRepeatedFieldValueType WaitingAccountIdSessions + { get => new ProtobufRepeatedFieldValueType(Accessor, "waiting_account_id_sessions"); } + public string Error + { get => Accessor.GetString("error"); set => Accessor.SetString("error", value); } + public IProtobufRepeatedFieldValueType OngoingmatchAccountIdSessions + { get => new ProtobufRepeatedFieldValueType(Accessor, "ongoingmatch_account_id_sessions"); } + public GlobalStatistics GlobalStats + { get => new GlobalStatisticsImpl(NativeNetMessages.GetNestedMessage(Address, "global_stats"), false); } + public IProtobufRepeatedFieldValueType FailpingAccountIdSessions + { get => new ProtobufRepeatedFieldValueType(Accessor, "failping_account_id_sessions"); } + public IProtobufRepeatedFieldValueType PenaltyAccountIdSessions + { get => new ProtobufRepeatedFieldValueType(Accessor, "penalty_account_id_sessions"); } + public IProtobufRepeatedFieldValueType FailreadyAccountIdSessions + { get => new ProtobufRepeatedFieldValueType(Accessor, "failready_account_id_sessions"); } + public IProtobufRepeatedFieldValueType VacbannedAccountIdSessions + { get => new ProtobufRepeatedFieldValueType(Accessor, "vacbanned_account_id_sessions"); } + public IpAddressMask ServerIpaddressMask + { get => new IpAddressMaskImpl(NativeNetMessages.GetNestedMessage(Address, "server_ipaddress_mask"), false); } + public IProtobufRepeatedFieldSubMessageType Notes + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "notes"); } + public IProtobufRepeatedFieldValueType PenaltyAccountIdSessionsGreen + { get => new ProtobufRepeatedFieldValueType(Accessor, "penalty_account_id_sessions_green"); } + public IProtobufRepeatedFieldValueType InsufficientlevelSessions + { get => new ProtobufRepeatedFieldValueType(Accessor, "insufficientlevel_sessions"); } + public IProtobufRepeatedFieldValueType VsncheckAccountIdSessions + { get => new ProtobufRepeatedFieldValueType(Accessor, "vsncheck_account_id_sessions"); } + public IProtobufRepeatedFieldValueType LauncherMismatchSessions + { get => new ProtobufRepeatedFieldValueType(Accessor, "launcher_mismatch_sessions"); } + public IProtobufRepeatedFieldValueType InsecureAccountIdSessions + { get => new ProtobufRepeatedFieldValueType(Accessor, "insecure_account_id_sessions"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate_NoteImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate_NoteImpl.cs index 5fe9fc3e5..e6494bcfa 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate_NoteImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate_NoteImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate_NoteImpl : TypedProtobuf, CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate_Note { - public CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate_NoteImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Type - { get => Accessor.GetInt32("type"); set => Accessor.SetInt32("type", value); } - - - public int RegionId - { get => Accessor.GetInt32("region_id"); set => Accessor.SetInt32("region_id", value); } - - - public float RegionR - { get => Accessor.GetFloat("region_r"); set => Accessor.SetFloat("region_r", value); } - - - public float Distance - { get => Accessor.GetFloat("distance"); set => Accessor.SetFloat("distance", value); } - -} + public CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate_NoteImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Type + { get => Accessor.GetInt32("type"); set => Accessor.SetInt32("type", value); } + public int RegionId + { get => Accessor.GetInt32("region_id"); set => Accessor.SetInt32("region_id", value); } + public float RegionR + { get => Accessor.GetFloat("region_r"); set => Accessor.SetFloat("region_r", value); } + public float Distance + { get => Accessor.GetFloat("distance"); set => Accessor.SetFloat("distance", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirmImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirmImpl.cs index b7d8e0f28..e1225913e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirmImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirmImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirmImpl : TypedProtobuf, CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirm { - public CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirmImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Token - { get => Accessor.GetUInt32("token"); set => Accessor.SetUInt32("token", value); } - - - public uint Stamp - { get => Accessor.GetUInt32("stamp"); set => Accessor.SetUInt32("stamp", value); } - - - public ulong Exchange - { get => Accessor.GetUInt64("exchange"); set => Accessor.SetUInt64("exchange", value); } - - - public uint Retry - { get => Accessor.GetUInt32("retry"); set => Accessor.SetUInt32("retry", value); } - -} + public CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirmImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Token + { get => Accessor.GetUInt32("token"); set => Accessor.SetUInt32("token", value); } + public uint Stamp + { get => Accessor.GetUInt32("stamp"); set => Accessor.SetUInt32("stamp", value); } + public ulong Exchange + { get => Accessor.GetUInt64("exchange"); set => Accessor.SetUInt64("exchange", value); } + public uint Retry + { get => Accessor.GetUInt32("retry"); set => Accessor.SetUInt32("retry", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ServerReserveImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ServerReserveImpl.cs index 77bf5d5d6..11a110bb2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ServerReserveImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingGC2ServerReserveImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,92 +8,50 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_MatchmakingGC2ServerReserveImpl : TypedProtobuf, CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve { - public CMsgGCCStrike15_v2_MatchmakingGC2ServerReserveImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldValueType AccountIds - { get => new ProtobufRepeatedFieldValueType(Accessor, "account_ids"); } - - - public uint GameType - { get => Accessor.GetUInt32("game_type"); set => Accessor.SetUInt32("game_type", value); } - - - public ulong MatchId - { get => Accessor.GetUInt64("match_id"); set => Accessor.SetUInt64("match_id", value); } - - - public uint ServerVersion - { get => Accessor.GetUInt32("server_version"); set => Accessor.SetUInt32("server_version", value); } - - - public uint Flags - { get => Accessor.GetUInt32("flags"); set => Accessor.SetUInt32("flags", value); } - - - public IProtobufRepeatedFieldSubMessageType Rankings - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "rankings"); } - - - public ulong EncryptionKey - { get => Accessor.GetUInt64("encryption_key"); set => Accessor.SetUInt64("encryption_key", value); } - - - public ulong EncryptionKeyPub - { get => Accessor.GetUInt64("encryption_key_pub"); set => Accessor.SetUInt64("encryption_key_pub", value); } - - - public IProtobufRepeatedFieldValueType PartyIds - { get => new ProtobufRepeatedFieldValueType(Accessor, "party_ids"); } - - - public IProtobufRepeatedFieldSubMessageType Whitelist - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "whitelist"); } - - - public ulong TvMasterSteamid - { get => Accessor.GetUInt64("tv_master_steamid"); set => Accessor.SetUInt64("tv_master_steamid", value); } - - - public TournamentEvent TournamentEvent - { get => new TournamentEventImpl(NativeNetMessages.GetNestedMessage(Address, "tournament_event"), false); } - - - public IProtobufRepeatedFieldSubMessageType TournamentTeams - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "tournament_teams"); } - - - public IProtobufRepeatedFieldValueType TournamentCastersAccountIds - { get => new ProtobufRepeatedFieldValueType(Accessor, "tournament_casters_account_ids"); } - - - public ulong TvRelaySteamid - { get => Accessor.GetUInt64("tv_relay_steamid"); set => Accessor.SetUInt64("tv_relay_steamid", value); } - - - public CPreMatchInfoData PreMatchData - { get => new CPreMatchInfoDataImpl(NativeNetMessages.GetNestedMessage(Address, "pre_match_data"), false); } - - - public uint TvControl - { get => Accessor.GetUInt32("tv_control"); set => Accessor.SetUInt32("tv_control", value); } - - - public IProtobufRepeatedFieldSubMessageType OpVarValues - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "op_var_values"); } - - - public uint SocacheControl - { get => Accessor.GetUInt32("socache_control"); set => Accessor.SetUInt32("socache_control", value); } - - - public IProtobufRepeatedFieldValueType TeammateColors - { get => new ProtobufRepeatedFieldValueType(Accessor, "teammate_colors"); } - - - public uint MatchIdAdditional - { get => Accessor.GetUInt32("match_id_additional"); set => Accessor.SetUInt32("match_id_additional", value); } - -} + public CMsgGCCStrike15_v2_MatchmakingGC2ServerReserveImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public IProtobufRepeatedFieldValueType AccountIds + { get => new ProtobufRepeatedFieldValueType(Accessor, "account_ids"); } + public uint GameType + { get => Accessor.GetUInt32("game_type"); set => Accessor.SetUInt32("game_type", value); } + public ulong MatchId + { get => Accessor.GetUInt64("match_id"); set => Accessor.SetUInt64("match_id", value); } + public uint ServerVersion + { get => Accessor.GetUInt32("server_version"); set => Accessor.SetUInt32("server_version", value); } + public uint Flags + { get => Accessor.GetUInt32("flags"); set => Accessor.SetUInt32("flags", value); } + public IProtobufRepeatedFieldSubMessageType Rankings + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "rankings"); } + public ulong EncryptionKey + { get => Accessor.GetUInt64("encryption_key"); set => Accessor.SetUInt64("encryption_key", value); } + public ulong EncryptionKeyPub + { get => Accessor.GetUInt64("encryption_key_pub"); set => Accessor.SetUInt64("encryption_key_pub", value); } + public IProtobufRepeatedFieldValueType PartyIds + { get => new ProtobufRepeatedFieldValueType(Accessor, "party_ids"); } + public IProtobufRepeatedFieldSubMessageType Whitelist + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "whitelist"); } + public ulong TvMasterSteamid + { get => Accessor.GetUInt64("tv_master_steamid"); set => Accessor.SetUInt64("tv_master_steamid", value); } + public TournamentEvent TournamentEvent + { get => new TournamentEventImpl(NativeNetMessages.GetNestedMessage(Address, "tournament_event"), false); } + public IProtobufRepeatedFieldSubMessageType TournamentTeams + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "tournament_teams"); } + public IProtobufRepeatedFieldValueType TournamentCastersAccountIds + { get => new ProtobufRepeatedFieldValueType(Accessor, "tournament_casters_account_ids"); } + public ulong TvRelaySteamid + { get => Accessor.GetUInt64("tv_relay_steamid"); set => Accessor.SetUInt64("tv_relay_steamid", value); } + public CPreMatchInfoData PreMatchData + { get => new CPreMatchInfoDataImpl(NativeNetMessages.GetNestedMessage(Address, "pre_match_data"), false); } + public uint TvControl + { get => Accessor.GetUInt32("tv_control"); set => Accessor.SetUInt32("tv_control", value); } + public IProtobufRepeatedFieldSubMessageType OpVarValues + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "op_var_values"); } + public uint SocacheControl + { get => Accessor.GetUInt32("socache_control"); set => Accessor.SetUInt32("socache_control", value); } + public IProtobufRepeatedFieldValueType TeammateColors + { get => new ProtobufRepeatedFieldValueType(Accessor, "teammate_colors"); } + public uint MatchIdAdditional + { get => Accessor.GetUInt32("match_id_additional"); set => Accessor.SetUInt32("match_id_additional", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdateImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdateImpl.cs index d2a77d570..7b7698706 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdateImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdateImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdateImpl : TypedProtobuf, CMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdate { - public CMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdateImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string MainPostUrl - { get => Accessor.GetString("main_post_url"); set => Accessor.SetString("main_post_url", value); } + public CMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdateImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public string MainPostUrl + { get => Accessor.GetString("main_post_url"); set => Accessor.SetString("main_post_url", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingServerReservationResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingServerReservationResponseImpl.cs index be2d5a151..ad8a6caa1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingServerReservationResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingServerReservationResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,84 +8,46 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_MatchmakingServerReservationResponseImpl : TypedProtobuf, CMsgGCCStrike15_v2_MatchmakingServerReservationResponse { - public CMsgGCCStrike15_v2_MatchmakingServerReservationResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Reservationid - { get => Accessor.GetUInt64("reservationid"); set => Accessor.SetUInt64("reservationid", value); } - - - public CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve Reservation - { get => new CMsgGCCStrike15_v2_MatchmakingGC2ServerReserveImpl(NativeNetMessages.GetNestedMessage(Address, "reservation"), false); } - - - public string Map - { get => Accessor.GetString("map"); set => Accessor.SetString("map", value); } - - - public ulong GcReservationSent - { get => Accessor.GetUInt64("gc_reservation_sent"); set => Accessor.SetUInt64("gc_reservation_sent", value); } - - - public uint ServerVersion - { get => Accessor.GetUInt32("server_version"); set => Accessor.SetUInt32("server_version", value); } - - - public ServerHltvInfo TvInfo - { get => new ServerHltvInfoImpl(NativeNetMessages.GetNestedMessage(Address, "tv_info"), false); } - - - public IProtobufRepeatedFieldValueType RewardPlayerAccounts - { get => new ProtobufRepeatedFieldValueType(Accessor, "reward_player_accounts"); } - - - public IProtobufRepeatedFieldValueType IdlePlayerAccounts - { get => new ProtobufRepeatedFieldValueType(Accessor, "idle_player_accounts"); } - - - public uint RewardItemAttrDefIdx - { get => Accessor.GetUInt32("reward_item_attr_def_idx"); set => Accessor.SetUInt32("reward_item_attr_def_idx", value); } - - - public uint RewardItemAttrValue - { get => Accessor.GetUInt32("reward_item_attr_value"); set => Accessor.SetUInt32("reward_item_attr_value", value); } - - - public uint RewardItemAttrRewardIdx - { get => Accessor.GetUInt32("reward_item_attr_reward_idx"); set => Accessor.SetUInt32("reward_item_attr_reward_idx", value); } - - - public uint RewardDropList - { get => Accessor.GetUInt32("reward_drop_list"); set => Accessor.SetUInt32("reward_drop_list", value); } - - - public string TournamentTag - { get => Accessor.GetString("tournament_tag"); set => Accessor.SetString("tournament_tag", value); } - - - public uint LegacySteamdatagramPort - { get => Accessor.GetUInt32("legacy_steamdatagram_port"); set => Accessor.SetUInt32("legacy_steamdatagram_port", value); } - - - public uint SteamdatagramRouting - { get => Accessor.GetUInt32("steamdatagram_routing"); set => Accessor.SetUInt32("steamdatagram_routing", value); } - - - public uint TestToken - { get => Accessor.GetUInt32("test_token"); set => Accessor.SetUInt32("test_token", value); } - - - public uint Flags - { get => Accessor.GetUInt32("flags"); set => Accessor.SetUInt32("flags", value); } - - - public uint SystemLoad - { get => Accessor.GetUInt32("system_load"); set => Accessor.SetUInt32("system_load", value); } - - - public uint CpusOnline - { get => Accessor.GetUInt32("cpus_online"); set => Accessor.SetUInt32("cpus_online", value); } - -} + public CMsgGCCStrike15_v2_MatchmakingServerReservationResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong Reservationid + { get => Accessor.GetUInt64("reservationid"); set => Accessor.SetUInt64("reservationid", value); } + public CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve Reservation + { get => new CMsgGCCStrike15_v2_MatchmakingGC2ServerReserveImpl(NativeNetMessages.GetNestedMessage(Address, "reservation"), false); } + public string Map + { get => Accessor.GetString("map"); set => Accessor.SetString("map", value); } + public ulong GcReservationSent + { get => Accessor.GetUInt64("gc_reservation_sent"); set => Accessor.SetUInt64("gc_reservation_sent", value); } + public uint ServerVersion + { get => Accessor.GetUInt32("server_version"); set => Accessor.SetUInt32("server_version", value); } + public ServerHltvInfo TvInfo + { get => new ServerHltvInfoImpl(NativeNetMessages.GetNestedMessage(Address, "tv_info"), false); } + public IProtobufRepeatedFieldValueType RewardPlayerAccounts + { get => new ProtobufRepeatedFieldValueType(Accessor, "reward_player_accounts"); } + public IProtobufRepeatedFieldValueType IdlePlayerAccounts + { get => new ProtobufRepeatedFieldValueType(Accessor, "idle_player_accounts"); } + public uint RewardItemAttrDefIdx + { get => Accessor.GetUInt32("reward_item_attr_def_idx"); set => Accessor.SetUInt32("reward_item_attr_def_idx", value); } + public uint RewardItemAttrValue + { get => Accessor.GetUInt32("reward_item_attr_value"); set => Accessor.SetUInt32("reward_item_attr_value", value); } + public uint RewardItemAttrRewardIdx + { get => Accessor.GetUInt32("reward_item_attr_reward_idx"); set => Accessor.SetUInt32("reward_item_attr_reward_idx", value); } + public uint RewardDropList + { get => Accessor.GetUInt32("reward_drop_list"); set => Accessor.SetUInt32("reward_drop_list", value); } + public string TournamentTag + { get => Accessor.GetString("tournament_tag"); set => Accessor.SetString("tournament_tag", value); } + public uint LegacySteamdatagramPort + { get => Accessor.GetUInt32("legacy_steamdatagram_port"); set => Accessor.SetUInt32("legacy_steamdatagram_port", value); } + public uint SteamdatagramRouting + { get => Accessor.GetUInt32("steamdatagram_routing"); set => Accessor.SetUInt32("steamdatagram_routing", value); } + public uint TestToken + { get => Accessor.GetUInt32("test_token"); set => Accessor.SetUInt32("test_token", value); } + public uint Flags + { get => Accessor.GetUInt32("flags"); set => Accessor.SetUInt32("flags", value); } + public uint SystemLoad + { get => Accessor.GetUInt32("system_load"); set => Accessor.SetUInt32("system_load", value); } + public uint CpusOnline + { get => Accessor.GetUInt32("cpus_online"); set => Accessor.SetUInt32("cpus_online", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingServerRoundStatsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingServerRoundStatsImpl.cs index 3d4e3a945..dff7175b7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingServerRoundStatsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingServerRoundStatsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,136 +8,72 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_MatchmakingServerRoundStatsImpl : TypedProtobuf, CMsgGCCStrike15_v2_MatchmakingServerRoundStats { - public CMsgGCCStrike15_v2_MatchmakingServerRoundStatsImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Reservationid - { get => Accessor.GetUInt64("reservationid"); set => Accessor.SetUInt64("reservationid", value); } - - - public CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve Reservation - { get => new CMsgGCCStrike15_v2_MatchmakingGC2ServerReserveImpl(NativeNetMessages.GetNestedMessage(Address, "reservation"), false); } - - - public string Map - { get => Accessor.GetString("map"); set => Accessor.SetString("map", value); } - - - public int Round - { get => Accessor.GetInt32("round"); set => Accessor.SetInt32("round", value); } - - - public IProtobufRepeatedFieldValueType Kills - { get => new ProtobufRepeatedFieldValueType(Accessor, "kills"); } - - - public IProtobufRepeatedFieldValueType Assists - { get => new ProtobufRepeatedFieldValueType(Accessor, "assists"); } - - - public IProtobufRepeatedFieldValueType Deaths - { get => new ProtobufRepeatedFieldValueType(Accessor, "deaths"); } - - - public IProtobufRepeatedFieldValueType Scores - { get => new ProtobufRepeatedFieldValueType(Accessor, "scores"); } - - - public IProtobufRepeatedFieldValueType Pings - { get => new ProtobufRepeatedFieldValueType(Accessor, "pings"); } - - - public int RoundResult - { get => Accessor.GetInt32("round_result"); set => Accessor.SetInt32("round_result", value); } - - - public int MatchResult - { get => Accessor.GetInt32("match_result"); set => Accessor.SetInt32("match_result", value); } - - - public IProtobufRepeatedFieldValueType TeamScores - { get => new ProtobufRepeatedFieldValueType(Accessor, "team_scores"); } - - - public CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirm Confirm - { get => new CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirmImpl(NativeNetMessages.GetNestedMessage(Address, "confirm"), false); } - - - public int ReservationStage - { get => Accessor.GetInt32("reservation_stage"); set => Accessor.SetInt32("reservation_stage", value); } - - - public int MatchDuration - { get => Accessor.GetInt32("match_duration"); set => Accessor.SetInt32("match_duration", value); } - - - public IProtobufRepeatedFieldValueType EnemyKills - { get => new ProtobufRepeatedFieldValueType(Accessor, "enemy_kills"); } - - - public IProtobufRepeatedFieldValueType EnemyHeadshots - { get => new ProtobufRepeatedFieldValueType(Accessor, "enemy_headshots"); } - - - public IProtobufRepeatedFieldValueType Enemy3ks - { get => new ProtobufRepeatedFieldValueType(Accessor, "enemy_3ks"); } - - - public IProtobufRepeatedFieldValueType Enemy4ks - { get => new ProtobufRepeatedFieldValueType(Accessor, "enemy_4ks"); } - - - public IProtobufRepeatedFieldValueType Enemy5ks - { get => new ProtobufRepeatedFieldValueType(Accessor, "enemy_5ks"); } - - - public IProtobufRepeatedFieldValueType Mvps - { get => new ProtobufRepeatedFieldValueType(Accessor, "mvps"); } - - - public uint SpectatorsCount - { get => Accessor.GetUInt32("spectators_count"); set => Accessor.SetUInt32("spectators_count", value); } - - - public uint SpectatorsCountTv - { get => Accessor.GetUInt32("spectators_count_tv"); set => Accessor.SetUInt32("spectators_count_tv", value); } - - - public uint SpectatorsCountLnk - { get => Accessor.GetUInt32("spectators_count_lnk"); set => Accessor.SetUInt32("spectators_count_lnk", value); } - - - public IProtobufRepeatedFieldValueType EnemyKillsAgg - { get => new ProtobufRepeatedFieldValueType(Accessor, "enemy_kills_agg"); } - - - public CMsgGCCStrike15_v2_MatchmakingServerRoundStats_DropInfo DropInfo - { get => new CMsgGCCStrike15_v2_MatchmakingServerRoundStats_DropInfoImpl(NativeNetMessages.GetNestedMessage(Address, "drop_info"), false); } - - - public bool BSwitchedTeams - { get => Accessor.GetBool("b_switched_teams"); set => Accessor.SetBool("b_switched_teams", value); } - - - public IProtobufRepeatedFieldValueType Enemy2ks - { get => new ProtobufRepeatedFieldValueType(Accessor, "enemy_2ks"); } - - - public IProtobufRepeatedFieldValueType PlayerSpawned - { get => new ProtobufRepeatedFieldValueType(Accessor, "player_spawned"); } - - - public IProtobufRepeatedFieldValueType TeamSpawnCount - { get => new ProtobufRepeatedFieldValueType(Accessor, "team_spawn_count"); } - - - public uint MaxRounds - { get => Accessor.GetUInt32("max_rounds"); set => Accessor.SetUInt32("max_rounds", value); } - - - public int MapId - { get => Accessor.GetInt32("map_id"); set => Accessor.SetInt32("map_id", value); } - -} + public CMsgGCCStrike15_v2_MatchmakingServerRoundStatsImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong Reservationid + { get => Accessor.GetUInt64("reservationid"); set => Accessor.SetUInt64("reservationid", value); } + public CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve Reservation + { get => new CMsgGCCStrike15_v2_MatchmakingGC2ServerReserveImpl(NativeNetMessages.GetNestedMessage(Address, "reservation"), false); } + public string Map + { get => Accessor.GetString("map"); set => Accessor.SetString("map", value); } + public int Round + { get => Accessor.GetInt32("round"); set => Accessor.SetInt32("round", value); } + public IProtobufRepeatedFieldValueType Kills + { get => new ProtobufRepeatedFieldValueType(Accessor, "kills"); } + public IProtobufRepeatedFieldValueType Assists + { get => new ProtobufRepeatedFieldValueType(Accessor, "assists"); } + public IProtobufRepeatedFieldValueType Deaths + { get => new ProtobufRepeatedFieldValueType(Accessor, "deaths"); } + public IProtobufRepeatedFieldValueType Scores + { get => new ProtobufRepeatedFieldValueType(Accessor, "scores"); } + public IProtobufRepeatedFieldValueType Pings + { get => new ProtobufRepeatedFieldValueType(Accessor, "pings"); } + public int RoundResult + { get => Accessor.GetInt32("round_result"); set => Accessor.SetInt32("round_result", value); } + public int MatchResult + { get => Accessor.GetInt32("match_result"); set => Accessor.SetInt32("match_result", value); } + public IProtobufRepeatedFieldValueType TeamScores + { get => new ProtobufRepeatedFieldValueType(Accessor, "team_scores"); } + public CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirm Confirm + { get => new CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirmImpl(NativeNetMessages.GetNestedMessage(Address, "confirm"), false); } + public int ReservationStage + { get => Accessor.GetInt32("reservation_stage"); set => Accessor.SetInt32("reservation_stage", value); } + public int MatchDuration + { get => Accessor.GetInt32("match_duration"); set => Accessor.SetInt32("match_duration", value); } + public IProtobufRepeatedFieldValueType EnemyKills + { get => new ProtobufRepeatedFieldValueType(Accessor, "enemy_kills"); } + public IProtobufRepeatedFieldValueType EnemyHeadshots + { get => new ProtobufRepeatedFieldValueType(Accessor, "enemy_headshots"); } + public IProtobufRepeatedFieldValueType Enemy3ks + { get => new ProtobufRepeatedFieldValueType(Accessor, "enemy_3ks"); } + public IProtobufRepeatedFieldValueType Enemy4ks + { get => new ProtobufRepeatedFieldValueType(Accessor, "enemy_4ks"); } + public IProtobufRepeatedFieldValueType Enemy5ks + { get => new ProtobufRepeatedFieldValueType(Accessor, "enemy_5ks"); } + public IProtobufRepeatedFieldValueType Mvps + { get => new ProtobufRepeatedFieldValueType(Accessor, "mvps"); } + public uint SpectatorsCount + { get => Accessor.GetUInt32("spectators_count"); set => Accessor.SetUInt32("spectators_count", value); } + public uint SpectatorsCountTv + { get => Accessor.GetUInt32("spectators_count_tv"); set => Accessor.SetUInt32("spectators_count_tv", value); } + public uint SpectatorsCountLnk + { get => Accessor.GetUInt32("spectators_count_lnk"); set => Accessor.SetUInt32("spectators_count_lnk", value); } + public IProtobufRepeatedFieldValueType EnemyKillsAgg + { get => new ProtobufRepeatedFieldValueType(Accessor, "enemy_kills_agg"); } + public CMsgGCCStrike15_v2_MatchmakingServerRoundStats_DropInfo DropInfo + { get => new CMsgGCCStrike15_v2_MatchmakingServerRoundStats_DropInfoImpl(NativeNetMessages.GetNestedMessage(Address, "drop_info"), false); } + public bool BSwitchedTeams + { get => Accessor.GetBool("b_switched_teams"); set => Accessor.SetBool("b_switched_teams", value); } + public IProtobufRepeatedFieldValueType Enemy2ks + { get => new ProtobufRepeatedFieldValueType(Accessor, "enemy_2ks"); } + public IProtobufRepeatedFieldValueType PlayerSpawned + { get => new ProtobufRepeatedFieldValueType(Accessor, "player_spawned"); } + public IProtobufRepeatedFieldValueType TeamSpawnCount + { get => new ProtobufRepeatedFieldValueType(Accessor, "team_spawn_count"); } + public uint MaxRounds + { get => Accessor.GetUInt32("max_rounds"); set => Accessor.SetUInt32("max_rounds", value); } + public int MapId + { get => Accessor.GetInt32("map_id"); set => Accessor.SetInt32("map_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingServerRoundStats_DropInfoImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingServerRoundStats_DropInfoImpl.cs index 584a49bc5..2faeeef7b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingServerRoundStats_DropInfoImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingServerRoundStats_DropInfoImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_MatchmakingServerRoundStats_DropInfoImpl : TypedProtobuf, CMsgGCCStrike15_v2_MatchmakingServerRoundStats_DropInfo { - public CMsgGCCStrike15_v2_MatchmakingServerRoundStats_DropInfoImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint AccountMvp - { get => Accessor.GetUInt32("account_mvp"); set => Accessor.SetUInt32("account_mvp", value); } + public CMsgGCCStrike15_v2_MatchmakingServerRoundStats_DropInfoImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public uint AccountMvp + { get => Accessor.GetUInt32("account_mvp"); set => Accessor.SetUInt32("account_mvp", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingStartImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingStartImpl.cs index 6d489e17f..1473d2d0a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingStartImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingStartImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,40 +8,24 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_MatchmakingStartImpl : TypedProtobuf, CMsgGCCStrike15_v2_MatchmakingStart { - public CMsgGCCStrike15_v2_MatchmakingStartImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldValueType AccountIds - { get => new ProtobufRepeatedFieldValueType(Accessor, "account_ids"); } - - - public uint GameType - { get => Accessor.GetUInt32("game_type"); set => Accessor.SetUInt32("game_type", value); } - - - public string TicketData - { get => Accessor.GetString("ticket_data"); set => Accessor.SetString("ticket_data", value); } - - - public uint ClientVersion - { get => Accessor.GetUInt32("client_version"); set => Accessor.SetUInt32("client_version", value); } - - - public TournamentMatchSetup TournamentMatch - { get => new TournamentMatchSetupImpl(NativeNetMessages.GetNestedMessage(Address, "tournament_match"), false); } - - - public bool PrimeOnly - { get => Accessor.GetBool("prime_only"); set => Accessor.SetBool("prime_only", value); } - - - public uint TvControl - { get => Accessor.GetUInt32("tv_control"); set => Accessor.SetUInt32("tv_control", value); } - - - public ulong LobbyId - { get => Accessor.GetUInt64("lobby_id"); set => Accessor.SetUInt64("lobby_id", value); } - -} + public CMsgGCCStrike15_v2_MatchmakingStartImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public IProtobufRepeatedFieldValueType AccountIds + { get => new ProtobufRepeatedFieldValueType(Accessor, "account_ids"); } + public uint GameType + { get => Accessor.GetUInt32("game_type"); set => Accessor.SetUInt32("game_type", value); } + public string TicketData + { get => Accessor.GetString("ticket_data"); set => Accessor.SetString("ticket_data", value); } + public uint ClientVersion + { get => Accessor.GetUInt32("client_version"); set => Accessor.SetUInt32("client_version", value); } + public TournamentMatchSetup TournamentMatch + { get => new TournamentMatchSetupImpl(NativeNetMessages.GetNestedMessage(Address, "tournament_match"), false); } + public bool PrimeOnly + { get => Accessor.GetBool("prime_only"); set => Accessor.SetBool("prime_only", value); } + public uint TvControl + { get => Accessor.GetUInt32("tv_control"); set => Accessor.SetUInt32("tv_control", value); } + public ulong LobbyId + { get => Accessor.GetUInt64("lobby_id"); set => Accessor.SetUInt64("lobby_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingStopImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingStopImpl.cs index 1d36d165e..abc1e478d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingStopImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_MatchmakingStopImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_MatchmakingStopImpl : TypedProtobuf, CMsgGCCStrike15_v2_MatchmakingStop { - public CMsgGCCStrike15_v2_MatchmakingStopImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Abandon - { get => Accessor.GetInt32("abandon"); set => Accessor.SetInt32("abandon", value); } + public CMsgGCCStrike15_v2_MatchmakingStopImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public int Abandon + { get => Accessor.GetInt32("abandon"); set => Accessor.SetInt32("abandon", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Party_InviteImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Party_InviteImpl.cs index fbbb7d6fd..2b68c79ec 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Party_InviteImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Party_InviteImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_Party_InviteImpl : TypedProtobuf, CMsgGCCStrike15_v2_Party_Invite { - public CMsgGCCStrike15_v2_Party_InviteImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Accountid - { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } - - - public uint Lobbyid - { get => Accessor.GetUInt32("lobbyid"); set => Accessor.SetUInt32("lobbyid", value); } - -} + public CMsgGCCStrike15_v2_Party_InviteImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Accountid + { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } + public uint Lobbyid + { get => Accessor.GetUInt32("lobbyid"); set => Accessor.SetUInt32("lobbyid", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Party_RegisterImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Party_RegisterImpl.cs index d1793f10c..cbf3f6fd6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Party_RegisterImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Party_RegisterImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,44 +8,26 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_Party_RegisterImpl : TypedProtobuf, CMsgGCCStrike15_v2_Party_Register { - public CMsgGCCStrike15_v2_Party_RegisterImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Id - { get => Accessor.GetUInt32("id"); set => Accessor.SetUInt32("id", value); } - - - public uint Ver - { get => Accessor.GetUInt32("ver"); set => Accessor.SetUInt32("ver", value); } - - - public uint Apr - { get => Accessor.GetUInt32("apr"); set => Accessor.SetUInt32("apr", value); } - - - public uint Ark - { get => Accessor.GetUInt32("ark"); set => Accessor.SetUInt32("ark", value); } - - - public uint Nby - { get => Accessor.GetUInt32("nby"); set => Accessor.SetUInt32("nby", value); } - - - public uint Grp - { get => Accessor.GetUInt32("grp"); set => Accessor.SetUInt32("grp", value); } - - - public uint Slots - { get => Accessor.GetUInt32("slots"); set => Accessor.SetUInt32("slots", value); } - - - public uint Launcher - { get => Accessor.GetUInt32("launcher"); set => Accessor.SetUInt32("launcher", value); } - - - public uint GameType - { get => Accessor.GetUInt32("game_type"); set => Accessor.SetUInt32("game_type", value); } - -} + public CMsgGCCStrike15_v2_Party_RegisterImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Id + { get => Accessor.GetUInt32("id"); set => Accessor.SetUInt32("id", value); } + public uint Ver + { get => Accessor.GetUInt32("ver"); set => Accessor.SetUInt32("ver", value); } + public uint Apr + { get => Accessor.GetUInt32("apr"); set => Accessor.SetUInt32("apr", value); } + public uint Ark + { get => Accessor.GetUInt32("ark"); set => Accessor.SetUInt32("ark", value); } + public uint Nby + { get => Accessor.GetUInt32("nby"); set => Accessor.SetUInt32("nby", value); } + public uint Grp + { get => Accessor.GetUInt32("grp"); set => Accessor.SetUInt32("grp", value); } + public uint Slots + { get => Accessor.GetUInt32("slots"); set => Accessor.SetUInt32("slots", value); } + public uint Launcher + { get => Accessor.GetUInt32("launcher"); set => Accessor.SetUInt32("launcher", value); } + public uint GameType + { get => Accessor.GetUInt32("game_type"); set => Accessor.SetUInt32("game_type", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Party_SearchImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Party_SearchImpl.cs index ef9422e3b..ef092b351 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Party_SearchImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Party_SearchImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,32 +8,20 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_Party_SearchImpl : TypedProtobuf, CMsgGCCStrike15_v2_Party_Search { - public CMsgGCCStrike15_v2_Party_SearchImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Ver - { get => Accessor.GetUInt32("ver"); set => Accessor.SetUInt32("ver", value); } - - - public uint Apr - { get => Accessor.GetUInt32("apr"); set => Accessor.SetUInt32("apr", value); } - - - public uint Ark - { get => Accessor.GetUInt32("ark"); set => Accessor.SetUInt32("ark", value); } - - - public IProtobufRepeatedFieldValueType Grps - { get => new ProtobufRepeatedFieldValueType(Accessor, "grps"); } - - - public uint Launcher - { get => Accessor.GetUInt32("launcher"); set => Accessor.SetUInt32("launcher", value); } - - - public uint GameType - { get => Accessor.GetUInt32("game_type"); set => Accessor.SetUInt32("game_type", value); } - -} + public CMsgGCCStrike15_v2_Party_SearchImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Ver + { get => Accessor.GetUInt32("ver"); set => Accessor.SetUInt32("ver", value); } + public uint Apr + { get => Accessor.GetUInt32("apr"); set => Accessor.SetUInt32("apr", value); } + public uint Ark + { get => Accessor.GetUInt32("ark"); set => Accessor.SetUInt32("ark", value); } + public IProtobufRepeatedFieldValueType Grps + { get => new ProtobufRepeatedFieldValueType(Accessor, "grps"); } + public uint Launcher + { get => Accessor.GetUInt32("launcher"); set => Accessor.SetUInt32("launcher", value); } + public uint GameType + { get => Accessor.GetUInt32("game_type"); set => Accessor.SetUInt32("game_type", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Party_SearchResultsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Party_SearchResultsImpl.cs index 845e8b913..a7424271f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Party_SearchResultsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Party_SearchResultsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_Party_SearchResultsImpl : TypedProtobuf, CMsgGCCStrike15_v2_Party_SearchResults { - public CMsgGCCStrike15_v2_Party_SearchResultsImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldSubMessageType Entries - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "entries"); } + public CMsgGCCStrike15_v2_Party_SearchResultsImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public IProtobufRepeatedFieldSubMessageType Entries + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "entries"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Party_SearchResults_EntryImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Party_SearchResults_EntryImpl.cs index 9981f774f..c1bdb986a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Party_SearchResults_EntryImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Party_SearchResults_EntryImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,36 +8,22 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_Party_SearchResults_EntryImpl : TypedProtobuf, CMsgGCCStrike15_v2_Party_SearchResults_Entry { - public CMsgGCCStrike15_v2_Party_SearchResults_EntryImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Id - { get => Accessor.GetUInt32("id"); set => Accessor.SetUInt32("id", value); } - - - public uint Grp - { get => Accessor.GetUInt32("grp"); set => Accessor.SetUInt32("grp", value); } - - - public uint GameType - { get => Accessor.GetUInt32("game_type"); set => Accessor.SetUInt32("game_type", value); } - - - public uint Apr - { get => Accessor.GetUInt32("apr"); set => Accessor.SetUInt32("apr", value); } - - - public uint Ark - { get => Accessor.GetUInt32("ark"); set => Accessor.SetUInt32("ark", value); } - - - public uint Loc - { get => Accessor.GetUInt32("loc"); set => Accessor.SetUInt32("loc", value); } - - - public uint Accountid - { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } - -} + public CMsgGCCStrike15_v2_Party_SearchResults_EntryImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Id + { get => Accessor.GetUInt32("id"); set => Accessor.SetUInt32("id", value); } + public uint Grp + { get => Accessor.GetUInt32("grp"); set => Accessor.SetUInt32("grp", value); } + public uint GameType + { get => Accessor.GetUInt32("game_type"); set => Accessor.SetUInt32("game_type", value); } + public uint Apr + { get => Accessor.GetUInt32("apr"); set => Accessor.SetUInt32("apr", value); } + public uint Ark + { get => Accessor.GetUInt32("ark"); set => Accessor.SetUInt32("ark", value); } + public uint Loc + { get => Accessor.GetUInt32("loc"); set => Accessor.SetUInt32("loc", value); } + public uint Accountid + { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignmentImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignmentImpl.cs index 5618e370a..200dbc29a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignmentImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignmentImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,52 +8,30 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignmentImpl : TypedProtobuf, CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment { - public CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignmentImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Caseid - { get => Accessor.GetUInt64("caseid"); set => Accessor.SetUInt64("caseid", value); } - - - public string Caseurl - { get => Accessor.GetString("caseurl"); set => Accessor.SetString("caseurl", value); } - - - public uint Verdict - { get => Accessor.GetUInt32("verdict"); set => Accessor.SetUInt32("verdict", value); } - - - public uint Timestamp - { get => Accessor.GetUInt32("timestamp"); set => Accessor.SetUInt32("timestamp", value); } - - - public uint Throttleseconds - { get => Accessor.GetUInt32("throttleseconds"); set => Accessor.SetUInt32("throttleseconds", value); } - - - public uint Suspectid - { get => Accessor.GetUInt32("suspectid"); set => Accessor.SetUInt32("suspectid", value); } - - - public uint Fractionid - { get => Accessor.GetUInt32("fractionid"); set => Accessor.SetUInt32("fractionid", value); } - - - public uint Numrounds - { get => Accessor.GetUInt32("numrounds"); set => Accessor.SetUInt32("numrounds", value); } - - - public uint Fractionrounds - { get => Accessor.GetUInt32("fractionrounds"); set => Accessor.SetUInt32("fractionrounds", value); } - - - public int Streakconvictions - { get => Accessor.GetInt32("streakconvictions"); set => Accessor.SetInt32("streakconvictions", value); } - - - public uint Reason - { get => Accessor.GetUInt32("reason"); set => Accessor.SetUInt32("reason", value); } - -} + public CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignmentImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong Caseid + { get => Accessor.GetUInt64("caseid"); set => Accessor.SetUInt64("caseid", value); } + public string Caseurl + { get => Accessor.GetString("caseurl"); set => Accessor.SetString("caseurl", value); } + public uint Verdict + { get => Accessor.GetUInt32("verdict"); set => Accessor.SetUInt32("verdict", value); } + public uint Timestamp + { get => Accessor.GetUInt32("timestamp"); set => Accessor.SetUInt32("timestamp", value); } + public uint Throttleseconds + { get => Accessor.GetUInt32("throttleseconds"); set => Accessor.SetUInt32("throttleseconds", value); } + public uint Suspectid + { get => Accessor.GetUInt32("suspectid"); set => Accessor.SetUInt32("suspectid", value); } + public uint Fractionid + { get => Accessor.GetUInt32("fractionid"); set => Accessor.SetUInt32("fractionid", value); } + public uint Numrounds + { get => Accessor.GetUInt32("numrounds"); set => Accessor.SetUInt32("numrounds", value); } + public uint Fractionrounds + { get => Accessor.GetUInt32("fractionrounds"); set => Accessor.SetUInt32("fractionrounds", value); } + public int Streakconvictions + { get => Accessor.GetInt32("streakconvictions"); set => Accessor.SetInt32("streakconvictions", value); } + public uint Reason + { get => Accessor.GetUInt32("reason"); set => Accessor.SetUInt32("reason", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PlayerOverwatchCaseStatusImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PlayerOverwatchCaseStatusImpl.cs index 2aa16911f..02e5213ce 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PlayerOverwatchCaseStatusImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PlayerOverwatchCaseStatusImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_PlayerOverwatchCaseStatusImpl : TypedProtobuf, CMsgGCCStrike15_v2_PlayerOverwatchCaseStatus { - public CMsgGCCStrike15_v2_PlayerOverwatchCaseStatusImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Caseid - { get => Accessor.GetUInt64("caseid"); set => Accessor.SetUInt64("caseid", value); } - - - public uint Statusid - { get => Accessor.GetUInt32("statusid"); set => Accessor.SetUInt32("statusid", value); } - -} + public CMsgGCCStrike15_v2_PlayerOverwatchCaseStatusImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong Caseid + { get => Accessor.GetUInt64("caseid"); set => Accessor.SetUInt64("caseid", value); } + public uint Statusid + { get => Accessor.GetUInt32("statusid"); set => Accessor.SetUInt32("statusid", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PlayerOverwatchCaseUpdateImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PlayerOverwatchCaseUpdateImpl.cs index 2fdbe8959..6363544b8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PlayerOverwatchCaseUpdateImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PlayerOverwatchCaseUpdateImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,40 +8,24 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_PlayerOverwatchCaseUpdateImpl : TypedProtobuf, CMsgGCCStrike15_v2_PlayerOverwatchCaseUpdate { - public CMsgGCCStrike15_v2_PlayerOverwatchCaseUpdateImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Caseid - { get => Accessor.GetUInt64("caseid"); set => Accessor.SetUInt64("caseid", value); } - - - public uint Suspectid - { get => Accessor.GetUInt32("suspectid"); set => Accessor.SetUInt32("suspectid", value); } - - - public uint Fractionid - { get => Accessor.GetUInt32("fractionid"); set => Accessor.SetUInt32("fractionid", value); } - - - public uint RptAimbot - { get => Accessor.GetUInt32("rpt_aimbot"); set => Accessor.SetUInt32("rpt_aimbot", value); } - - - public uint RptWallhack - { get => Accessor.GetUInt32("rpt_wallhack"); set => Accessor.SetUInt32("rpt_wallhack", value); } - - - public uint RptSpeedhack - { get => Accessor.GetUInt32("rpt_speedhack"); set => Accessor.SetUInt32("rpt_speedhack", value); } - - - public uint RptTeamharm - { get => Accessor.GetUInt32("rpt_teamharm"); set => Accessor.SetUInt32("rpt_teamharm", value); } - - - public uint Reason - { get => Accessor.GetUInt32("reason"); set => Accessor.SetUInt32("reason", value); } - -} + public CMsgGCCStrike15_v2_PlayerOverwatchCaseUpdateImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong Caseid + { get => Accessor.GetUInt64("caseid"); set => Accessor.SetUInt64("caseid", value); } + public uint Suspectid + { get => Accessor.GetUInt32("suspectid"); set => Accessor.SetUInt32("suspectid", value); } + public uint Fractionid + { get => Accessor.GetUInt32("fractionid"); set => Accessor.SetUInt32("fractionid", value); } + public uint RptAimbot + { get => Accessor.GetUInt32("rpt_aimbot"); set => Accessor.SetUInt32("rpt_aimbot", value); } + public uint RptWallhack + { get => Accessor.GetUInt32("rpt_wallhack"); set => Accessor.SetUInt32("rpt_wallhack", value); } + public uint RptSpeedhack + { get => Accessor.GetUInt32("rpt_speedhack"); set => Accessor.SetUInt32("rpt_speedhack", value); } + public uint RptTeamharm + { get => Accessor.GetUInt32("rpt_teamharm"); set => Accessor.SetUInt32("rpt_teamharm", value); } + public uint Reason + { get => Accessor.GetUInt32("reason"); set => Accessor.SetUInt32("reason", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PlayersProfileImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PlayersProfileImpl.cs index bcee916db..bb1f5d886 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PlayersProfileImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PlayersProfileImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_PlayersProfileImpl : TypedProtobuf, CMsgGCCStrike15_v2_PlayersProfile { - public CMsgGCCStrike15_v2_PlayersProfileImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint RequestId - { get => Accessor.GetUInt32("request_id"); set => Accessor.SetUInt32("request_id", value); } - - - public IProtobufRepeatedFieldSubMessageType AccountProfiles - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "account_profiles"); } - -} + public CMsgGCCStrike15_v2_PlayersProfileImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint RequestId + { get => Accessor.GetUInt32("request_id"); set => Accessor.SetUInt32("request_id", value); } + public IProtobufRepeatedFieldSubMessageType AccountProfiles + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "account_profiles"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PredictionsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PredictionsImpl.cs index 327b3d4f8..bd09edf9c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PredictionsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PredictionsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_PredictionsImpl : TypedProtobuf, CMsgGCCStrike15_v2_Predictions { - public CMsgGCCStrike15_v2_PredictionsImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint EventId - { get => Accessor.GetUInt32("event_id"); set => Accessor.SetUInt32("event_id", value); } - - - public IProtobufRepeatedFieldSubMessageType GroupMatchTeamPicks - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "group_match_team_picks"); } - -} + public CMsgGCCStrike15_v2_PredictionsImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint EventId + { get => Accessor.GetUInt32("event_id"); set => Accessor.SetUInt32("event_id", value); } + public IProtobufRepeatedFieldSubMessageType GroupMatchTeamPicks + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "group_match_team_picks"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Predictions_GroupMatchTeamPickImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Predictions_GroupMatchTeamPickImpl.cs index 20ca02fbb..f1fa27366 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Predictions_GroupMatchTeamPickImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Predictions_GroupMatchTeamPickImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_Predictions_GroupMatchTeamPickImpl : TypedProtobuf, CMsgGCCStrike15_v2_Predictions_GroupMatchTeamPick { - public CMsgGCCStrike15_v2_Predictions_GroupMatchTeamPickImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Sectionid - { get => Accessor.GetInt32("sectionid"); set => Accessor.SetInt32("sectionid", value); } - - - public int Groupid - { get => Accessor.GetInt32("groupid"); set => Accessor.SetInt32("groupid", value); } - - - public int Index - { get => Accessor.GetInt32("index"); set => Accessor.SetInt32("index", value); } - - - public int Teamid - { get => Accessor.GetInt32("teamid"); set => Accessor.SetInt32("teamid", value); } - - - public ulong Itemid - { get => Accessor.GetUInt64("itemid"); set => Accessor.SetUInt64("itemid", value); } - -} + public CMsgGCCStrike15_v2_Predictions_GroupMatchTeamPickImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Sectionid + { get => Accessor.GetInt32("sectionid"); set => Accessor.SetInt32("sectionid", value); } + public int Groupid + { get => Accessor.GetInt32("groupid"); set => Accessor.SetInt32("groupid", value); } + public int Index + { get => Accessor.GetInt32("index"); set => Accessor.SetInt32("index", value); } + public int Teamid + { get => Accessor.GetInt32("teamid"); set => Accessor.SetInt32("teamid", value); } + public ulong Itemid + { get => Accessor.GetUInt64("itemid"); set => Accessor.SetUInt64("itemid", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PremierSeasonSummaryImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PremierSeasonSummaryImpl.cs index 3431dd8bf..ba6fcd7e4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PremierSeasonSummaryImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PremierSeasonSummaryImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_PremierSeasonSummaryImpl : TypedProtobuf, CMsgGCCStrike15_v2_PremierSeasonSummary { - public CMsgGCCStrike15_v2_PremierSeasonSummaryImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint AccountId - { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } - - - public uint SeasonId - { get => Accessor.GetUInt32("season_id"); set => Accessor.SetUInt32("season_id", value); } - - - public IProtobufRepeatedFieldSubMessageType DataPerWeek - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "data_per_week"); } - - - public IProtobufRepeatedFieldSubMessageType DataPerMap - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "data_per_map"); } - -} + public CMsgGCCStrike15_v2_PremierSeasonSummaryImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint AccountId + { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } + public uint SeasonId + { get => Accessor.GetUInt32("season_id"); set => Accessor.SetUInt32("season_id", value); } + public IProtobufRepeatedFieldSubMessageType DataPerWeek + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "data_per_week"); } + public IProtobufRepeatedFieldSubMessageType DataPerMap + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "data_per_map"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerMapImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerMapImpl.cs index ab6219ec9..b800c0474 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerMapImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerMapImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,60 +8,34 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerMapImpl : TypedProtobuf, CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerMap { - public CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerMapImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint MapId - { get => Accessor.GetUInt32("map_id"); set => Accessor.SetUInt32("map_id", value); } - - - public uint Wins - { get => Accessor.GetUInt32("wins"); set => Accessor.SetUInt32("wins", value); } - - - public uint Ties - { get => Accessor.GetUInt32("ties"); set => Accessor.SetUInt32("ties", value); } - - - public uint Losses - { get => Accessor.GetUInt32("losses"); set => Accessor.SetUInt32("losses", value); } - - - public uint Rounds - { get => Accessor.GetUInt32("rounds"); set => Accessor.SetUInt32("rounds", value); } - - - public uint Kills - { get => Accessor.GetUInt32("kills"); set => Accessor.SetUInt32("kills", value); } - - - public uint Headshots - { get => Accessor.GetUInt32("headshots"); set => Accessor.SetUInt32("headshots", value); } - - - public uint Assists - { get => Accessor.GetUInt32("assists"); set => Accessor.SetUInt32("assists", value); } - - - public uint Deaths - { get => Accessor.GetUInt32("deaths"); set => Accessor.SetUInt32("deaths", value); } - - - public uint Mvps - { get => Accessor.GetUInt32("mvps"); set => Accessor.SetUInt32("mvps", value); } - - - public uint Rounds3k - { get => Accessor.GetUInt32("rounds_3k"); set => Accessor.SetUInt32("rounds_3k", value); } - - - public uint Rounds4k - { get => Accessor.GetUInt32("rounds_4k"); set => Accessor.SetUInt32("rounds_4k", value); } - - - public uint Rounds5k - { get => Accessor.GetUInt32("rounds_5k"); set => Accessor.SetUInt32("rounds_5k", value); } - -} + public CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerMapImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint MapId + { get => Accessor.GetUInt32("map_id"); set => Accessor.SetUInt32("map_id", value); } + public uint Wins + { get => Accessor.GetUInt32("wins"); set => Accessor.SetUInt32("wins", value); } + public uint Ties + { get => Accessor.GetUInt32("ties"); set => Accessor.SetUInt32("ties", value); } + public uint Losses + { get => Accessor.GetUInt32("losses"); set => Accessor.SetUInt32("losses", value); } + public uint Rounds + { get => Accessor.GetUInt32("rounds"); set => Accessor.SetUInt32("rounds", value); } + public uint Kills + { get => Accessor.GetUInt32("kills"); set => Accessor.SetUInt32("kills", value); } + public uint Headshots + { get => Accessor.GetUInt32("headshots"); set => Accessor.SetUInt32("headshots", value); } + public uint Assists + { get => Accessor.GetUInt32("assists"); set => Accessor.SetUInt32("assists", value); } + public uint Deaths + { get => Accessor.GetUInt32("deaths"); set => Accessor.SetUInt32("deaths", value); } + public uint Mvps + { get => Accessor.GetUInt32("mvps"); set => Accessor.SetUInt32("mvps", value); } + public uint Rounds3k + { get => Accessor.GetUInt32("rounds_3k"); set => Accessor.SetUInt32("rounds_3k", value); } + public uint Rounds4k + { get => Accessor.GetUInt32("rounds_4k"); set => Accessor.SetUInt32("rounds_4k", value); } + public uint Rounds5k + { get => Accessor.GetUInt32("rounds_5k"); set => Accessor.SetUInt32("rounds_5k", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerWeekImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerWeekImpl.cs index 9dcb0069f..06be013cb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerWeekImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerWeekImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerWeekImpl : TypedProtobuf, CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerWeek { - public CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerWeekImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong WeekId - { get => Accessor.GetUInt64("week_id"); set => Accessor.SetUInt64("week_id", value); } - - - public uint RankId - { get => Accessor.GetUInt32("rank_id"); set => Accessor.SetUInt32("rank_id", value); } - - - public uint MatchesPlayed - { get => Accessor.GetUInt32("matches_played"); set => Accessor.SetUInt32("matches_played", value); } - -} + public CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerWeekImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong WeekId + { get => Accessor.GetUInt64("week_id"); set => Accessor.SetUInt64("week_id", value); } + public uint RankId + { get => Accessor.GetUInt32("rank_id"); set => Accessor.SetUInt32("rank_id", value); } + public uint MatchesPlayed + { get => Accessor.GetUInt32("matches_played"); set => Accessor.SetUInt32("matches_played", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Server2GCClientValidateImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Server2GCClientValidateImpl.cs index e9d2a77be..6875d2d32 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Server2GCClientValidateImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_Server2GCClientValidateImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_Server2GCClientValidateImpl : TypedProtobuf, CMsgGCCStrike15_v2_Server2GCClientValidate { - public CMsgGCCStrike15_v2_Server2GCClientValidateImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Accountid - { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } + public CMsgGCCStrike15_v2_Server2GCClientValidateImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public uint Accountid + { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ServerNotificationForUserPenaltyImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ServerNotificationForUserPenaltyImpl.cs index afe55e5af..105f84f61 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ServerNotificationForUserPenaltyImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ServerNotificationForUserPenaltyImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ServerNotificationForUserPenaltyImpl : TypedProtobuf, CMsgGCCStrike15_v2_ServerNotificationForUserPenalty { - public CMsgGCCStrike15_v2_ServerNotificationForUserPenaltyImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint AccountId - { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } - - - public uint Reason - { get => Accessor.GetUInt32("reason"); set => Accessor.SetUInt32("reason", value); } - - - public uint Seconds - { get => Accessor.GetUInt32("seconds"); set => Accessor.SetUInt32("seconds", value); } - - - public bool CommunicationCooldown - { get => Accessor.GetBool("communication_cooldown"); set => Accessor.SetBool("communication_cooldown", value); } - -} + public CMsgGCCStrike15_v2_ServerNotificationForUserPenaltyImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint AccountId + { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } + public uint Reason + { get => Accessor.GetUInt32("reason"); set => Accessor.SetUInt32("reason", value); } + public uint Seconds + { get => Accessor.GetUInt32("seconds"); set => Accessor.SetUInt32("seconds", value); } + public bool CommunicationCooldown + { get => Accessor.GetBool("communication_cooldown"); set => Accessor.SetBool("communication_cooldown", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ServerVarValueNotificationInfoImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ServerVarValueNotificationInfoImpl.cs index 6312d105e..6f76059f7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ServerVarValueNotificationInfoImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_ServerVarValueNotificationInfoImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_ServerVarValueNotificationInfoImpl : TypedProtobuf, CMsgGCCStrike15_v2_ServerVarValueNotificationInfo { - public CMsgGCCStrike15_v2_ServerVarValueNotificationInfoImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Accountid - { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } - - - public IProtobufRepeatedFieldValueType Viewangles - { get => new ProtobufRepeatedFieldValueType(Accessor, "viewangles"); } - - - public uint Type - { get => Accessor.GetUInt32("type"); set => Accessor.SetUInt32("type", value); } - - - public IProtobufRepeatedFieldValueType Userdata - { get => new ProtobufRepeatedFieldValueType(Accessor, "userdata"); } - -} + public CMsgGCCStrike15_v2_ServerVarValueNotificationInfoImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Accountid + { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } + public IProtobufRepeatedFieldValueType Viewangles + { get => new ProtobufRepeatedFieldValueType(Accessor, "viewangles"); } + public uint Type + { get => Accessor.GetUInt32("type"); set => Accessor.SetUInt32("type", value); } + public IProtobufRepeatedFieldValueType Userdata + { get => new ProtobufRepeatedFieldValueType(Accessor, "userdata"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_SetEventFavoriteImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_SetEventFavoriteImpl.cs index 6d41fa788..7ee433233 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_SetEventFavoriteImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_SetEventFavoriteImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_SetEventFavoriteImpl : TypedProtobuf, CMsgGCCStrike15_v2_SetEventFavorite { - public CMsgGCCStrike15_v2_SetEventFavoriteImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Eventid - { get => Accessor.GetUInt64("eventid"); set => Accessor.SetUInt64("eventid", value); } - - - public bool IsFavorite - { get => Accessor.GetBool("is_favorite"); set => Accessor.SetBool("is_favorite", value); } - -} + public CMsgGCCStrike15_v2_SetEventFavoriteImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong Eventid + { get => Accessor.GetUInt64("eventid"); set => Accessor.SetUInt64("eventid", value); } + public bool IsFavorite + { get => Accessor.GetBool("is_favorite"); set => Accessor.SetBool("is_favorite", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeNameImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeNameImpl.cs index 81dddbe7f..fe613e1f1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeNameImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeNameImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeNameImpl : TypedProtobuf, CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeName { - public CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeNameImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string LeaderboardSafeName - { get => Accessor.GetString("leaderboard_safe_name"); set => Accessor.SetString("leaderboard_safe_name", value); } + public CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeNameImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public string LeaderboardSafeName + { get => Accessor.GetString("leaderboard_safe_name"); set => Accessor.SetString("leaderboard_safe_name", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_WatchInfoUsersImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_WatchInfoUsersImpl.cs index c870713ee..8b6b1d530 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_WatchInfoUsersImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCStrike15_v2_WatchInfoUsersImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCStrike15_v2_WatchInfoUsersImpl : TypedProtobuf, CMsgGCCStrike15_v2_WatchInfoUsers { - public CMsgGCCStrike15_v2_WatchInfoUsersImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint RequestId - { get => Accessor.GetUInt32("request_id"); set => Accessor.SetUInt32("request_id", value); } - - - public IProtobufRepeatedFieldValueType AccountIds - { get => new ProtobufRepeatedFieldValueType(Accessor, "account_ids"); } - - - public IProtobufRepeatedFieldSubMessageType WatchableMatchInfos - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "watchable_match_infos"); } - - - public uint ExtendedTimeout - { get => Accessor.GetUInt32("extended_timeout"); set => Accessor.SetUInt32("extended_timeout", value); } - -} + public CMsgGCCStrike15_v2_WatchInfoUsersImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint RequestId + { get => Accessor.GetUInt32("request_id"); set => Accessor.SetUInt32("request_id", value); } + public IProtobufRepeatedFieldValueType AccountIds + { get => new ProtobufRepeatedFieldValueType(Accessor, "account_ids"); } + public IProtobufRepeatedFieldSubMessageType WatchableMatchInfos + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "watchable_match_infos"); } + public uint ExtendedTimeout + { get => Accessor.GetUInt32("extended_timeout"); set => Accessor.SetUInt32("extended_timeout", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCClientDisplayNotificationImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCClientDisplayNotificationImpl.cs index 8896ee539..2abbeccff 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCClientDisplayNotificationImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCClientDisplayNotificationImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCClientDisplayNotificationImpl : TypedProtobuf, CMsgGCClientDisplayNotification { - public CMsgGCClientDisplayNotificationImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string NotificationTitleLocalizationKey - { get => Accessor.GetString("notification_title_localization_key"); set => Accessor.SetString("notification_title_localization_key", value); } - - - public string NotificationBodyLocalizationKey - { get => Accessor.GetString("notification_body_localization_key"); set => Accessor.SetString("notification_body_localization_key", value); } - - - public IProtobufRepeatedFieldValueType BodySubstringKeys - { get => new ProtobufRepeatedFieldValueType(Accessor, "body_substring_keys"); } - - - public IProtobufRepeatedFieldValueType BodySubstringValues - { get => new ProtobufRepeatedFieldValueType(Accessor, "body_substring_values"); } - -} + public CMsgGCClientDisplayNotificationImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string NotificationTitleLocalizationKey + { get => Accessor.GetString("notification_title_localization_key"); set => Accessor.SetString("notification_title_localization_key", value); } + public string NotificationBodyLocalizationKey + { get => Accessor.GetString("notification_body_localization_key"); set => Accessor.SetString("notification_body_localization_key", value); } + public IProtobufRepeatedFieldValueType BodySubstringKeys + { get => new ProtobufRepeatedFieldValueType(Accessor, "body_substring_keys"); } + public IProtobufRepeatedFieldValueType BodySubstringValues + { get => new ProtobufRepeatedFieldValueType(Accessor, "body_substring_values"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCClientVersionUpdatedImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCClientVersionUpdatedImpl.cs index 5be39f32e..e28238152 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCClientVersionUpdatedImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCClientVersionUpdatedImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCClientVersionUpdatedImpl : TypedProtobuf, CMsgGCClientVersionUpdated { - public CMsgGCClientVersionUpdatedImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint ClientVersion - { get => Accessor.GetUInt32("client_version"); set => Accessor.SetUInt32("client_version", value); } + public CMsgGCClientVersionUpdatedImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public uint ClientVersion + { get => Accessor.GetUInt32("client_version"); set => Accessor.SetUInt32("client_version", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCollectItemImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCollectItemImpl.cs index 45765d432..9d69a5857 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCollectItemImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCollectItemImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCollectItemImpl : TypedProtobuf, CMsgGCCollectItem { - public CMsgGCCollectItemImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong CollectionItemId - { get => Accessor.GetUInt64("collection_item_id"); set => Accessor.SetUInt64("collection_item_id", value); } - - - public ulong SubjectItemId - { get => Accessor.GetUInt64("subject_item_id"); set => Accessor.SetUInt64("subject_item_id", value); } - -} + public CMsgGCCollectItemImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong CollectionItemId + { get => Accessor.GetUInt64("collection_item_id"); set => Accessor.SetUInt64("collection_item_id", value); } + public ulong SubjectItemId + { get => Accessor.GetUInt64("subject_item_id"); set => Accessor.SetUInt64("subject_item_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCstrike15_v2_ClientRedeemFreeRewardImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCstrike15_v2_ClientRedeemFreeRewardImpl.cs index 91d91f36a..35b59e40a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCstrike15_v2_ClientRedeemFreeRewardImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCstrike15_v2_ClientRedeemFreeRewardImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCstrike15_v2_ClientRedeemFreeRewardImpl : TypedProtobuf, CMsgGCCstrike15_v2_ClientRedeemFreeReward { - public CMsgGCCstrike15_v2_ClientRedeemFreeRewardImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint GenerationTime - { get => Accessor.GetUInt32("generation_time"); set => Accessor.SetUInt32("generation_time", value); } - - - public uint RedeemableBalance - { get => Accessor.GetUInt32("redeemable_balance"); set => Accessor.SetUInt32("redeemable_balance", value); } - - - public IProtobufRepeatedFieldValueType Items - { get => new ProtobufRepeatedFieldValueType(Accessor, "items"); } - -} + public CMsgGCCstrike15_v2_ClientRedeemFreeRewardImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint GenerationTime + { get => Accessor.GetUInt32("generation_time"); set => Accessor.SetUInt32("generation_time", value); } + public uint RedeemableBalance + { get => Accessor.GetUInt32("redeemable_balance"); set => Accessor.SetUInt32("redeemable_balance", value); } + public IProtobufRepeatedFieldValueType Items + { get => new ProtobufRepeatedFieldValueType(Accessor, "items"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCstrike15_v2_ClientRedeemMissionRewardImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCstrike15_v2_ClientRedeemMissionRewardImpl.cs index 2626faf53..9b4d35fd7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCstrike15_v2_ClientRedeemMissionRewardImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCstrike15_v2_ClientRedeemMissionRewardImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCstrike15_v2_ClientRedeemMissionRewardImpl : TypedProtobuf, CMsgGCCstrike15_v2_ClientRedeemMissionReward { - public CMsgGCCstrike15_v2_ClientRedeemMissionRewardImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint CampaignId - { get => Accessor.GetUInt32("campaign_id"); set => Accessor.SetUInt32("campaign_id", value); } - - - public uint RedeemId - { get => Accessor.GetUInt32("redeem_id"); set => Accessor.SetUInt32("redeem_id", value); } - - - public uint RedeemableBalance - { get => Accessor.GetUInt32("redeemable_balance"); set => Accessor.SetUInt32("redeemable_balance", value); } - - - public uint ExpectedCost - { get => Accessor.GetUInt32("expected_cost"); set => Accessor.SetUInt32("expected_cost", value); } - - - public int BidControl - { get => Accessor.GetInt32("bid_control"); set => Accessor.SetInt32("bid_control", value); } - -} + public CMsgGCCstrike15_v2_ClientRedeemMissionRewardImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint CampaignId + { get => Accessor.GetUInt32("campaign_id"); set => Accessor.SetUInt32("campaign_id", value); } + public uint RedeemId + { get => Accessor.GetUInt32("redeem_id"); set => Accessor.SetUInt32("redeem_id", value); } + public uint RedeemableBalance + { get => Accessor.GetUInt32("redeemable_balance"); set => Accessor.SetUInt32("redeemable_balance", value); } + public uint ExpectedCost + { get => Accessor.GetUInt32("expected_cost"); set => Accessor.SetUInt32("expected_cost", value); } + public int BidControl + { get => Accessor.GetInt32("bid_control"); set => Accessor.SetInt32("bid_control", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCstrike15_v2_GC2ServerNotifyXPRewardedImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCstrike15_v2_GC2ServerNotifyXPRewardedImpl.cs index 38b97c6be..4de5faa37 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCstrike15_v2_GC2ServerNotifyXPRewardedImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCCstrike15_v2_GC2ServerNotifyXPRewardedImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,48 +8,28 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCCstrike15_v2_GC2ServerNotifyXPRewardedImpl : TypedProtobuf, CMsgGCCstrike15_v2_GC2ServerNotifyXPRewarded { - public CMsgGCCstrike15_v2_GC2ServerNotifyXPRewardedImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldSubMessageType XpProgressData - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "xp_progress_data"); } - - - public uint AccountId - { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } - - - public uint CurrentXp - { get => Accessor.GetUInt32("current_xp"); set => Accessor.SetUInt32("current_xp", value); } - - - public uint CurrentLevel - { get => Accessor.GetUInt32("current_level"); set => Accessor.SetUInt32("current_level", value); } - - - public uint UpgradedDefidx - { get => Accessor.GetUInt32("upgraded_defidx"); set => Accessor.SetUInt32("upgraded_defidx", value); } - - - public uint OperationPointsAwarded - { get => Accessor.GetUInt32("operation_points_awarded"); set => Accessor.SetUInt32("operation_points_awarded", value); } - - - public uint FreeRewards - { get => Accessor.GetUInt32("free_rewards"); set => Accessor.SetUInt32("free_rewards", value); } - - - public uint XpTrailRemaining - { get => Accessor.GetUInt32("xp_trail_remaining"); set => Accessor.SetUInt32("xp_trail_remaining", value); } - - - public int XpTrailXpNeeded - { get => Accessor.GetInt32("xp_trail_xp_needed"); set => Accessor.SetInt32("xp_trail_xp_needed", value); } - - - public uint XpTrailLevel - { get => Accessor.GetUInt32("xp_trail_level"); set => Accessor.SetUInt32("xp_trail_level", value); } - -} + public CMsgGCCstrike15_v2_GC2ServerNotifyXPRewardedImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public IProtobufRepeatedFieldSubMessageType XpProgressData + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "xp_progress_data"); } + public uint AccountId + { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } + public uint CurrentXp + { get => Accessor.GetUInt32("current_xp"); set => Accessor.SetUInt32("current_xp", value); } + public uint CurrentLevel + { get => Accessor.GetUInt32("current_level"); set => Accessor.SetUInt32("current_level", value); } + public uint UpgradedDefidx + { get => Accessor.GetUInt32("upgraded_defidx"); set => Accessor.SetUInt32("upgraded_defidx", value); } + public uint OperationPointsAwarded + { get => Accessor.GetUInt32("operation_points_awarded"); set => Accessor.SetUInt32("operation_points_awarded", value); } + public uint FreeRewards + { get => Accessor.GetUInt32("free_rewards"); set => Accessor.SetUInt32("free_rewards", value); } + public uint XpTrailRemaining + { get => Accessor.GetUInt32("xp_trail_remaining"); set => Accessor.SetUInt32("xp_trail_remaining", value); } + public int XpTrailXpNeeded + { get => Accessor.GetInt32("xp_trail_xp_needed"); set => Accessor.SetInt32("xp_trail_xp_needed", value); } + public uint XpTrailLevel + { get => Accessor.GetUInt32("xp_trail_level"); set => Accessor.SetUInt32("xp_trail_level", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCDev_SchemaReservationRequestImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCDev_SchemaReservationRequestImpl.cs index bdf50f2c8..565618c0d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCDev_SchemaReservationRequestImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCDev_SchemaReservationRequestImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCDev_SchemaReservationRequestImpl : TypedProtobuf, CMsgGCDev_SchemaReservationRequest { - public CMsgGCDev_SchemaReservationRequestImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string SchemaTypename - { get => Accessor.GetString("schema_typename"); set => Accessor.SetString("schema_typename", value); } - - - public string InstanceName - { get => Accessor.GetString("instance_name"); set => Accessor.SetString("instance_name", value); } - - - public ulong Context - { get => Accessor.GetUInt64("context"); set => Accessor.SetUInt64("context", value); } - - - public ulong Id - { get => Accessor.GetUInt64("id"); set => Accessor.SetUInt64("id", value); } - -} + public CMsgGCDev_SchemaReservationRequestImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string SchemaTypename + { get => Accessor.GetString("schema_typename"); set => Accessor.SetString("schema_typename", value); } + public string InstanceName + { get => Accessor.GetString("instance_name"); set => Accessor.SetString("instance_name", value); } + public ulong Context + { get => Accessor.GetUInt64("context"); set => Accessor.SetUInt64("context", value); } + public ulong Id + { get => Accessor.GetUInt64("id"); set => Accessor.SetUInt64("id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCErrorImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCErrorImpl.cs index 738d8e9b2..7713a4a44 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCErrorImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCErrorImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCErrorImpl : TypedProtobuf, CMsgGCError { - public CMsgGCErrorImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string ErrorText - { get => Accessor.GetString("error_text"); set => Accessor.SetString("error_text", value); } + public CMsgGCErrorImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public string ErrorText + { get => Accessor.GetString("error_text"); set => Accessor.SetString("error_text", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCGiftedItemsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCGiftedItemsImpl.cs index d0155b809..a718ec64e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCGiftedItemsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCGiftedItemsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCGiftedItemsImpl : TypedProtobuf, CMsgGCGiftedItems { - public CMsgGCGiftedItemsImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Accountid - { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } - - - public uint Giftdefindex - { get => Accessor.GetUInt32("giftdefindex"); set => Accessor.SetUInt32("giftdefindex", value); } - - - public uint MaxGiftsPossible - { get => Accessor.GetUInt32("max_gifts_possible"); set => Accessor.SetUInt32("max_gifts_possible", value); } - - - public uint NumEligibleRecipients - { get => Accessor.GetUInt32("num_eligible_recipients"); set => Accessor.SetUInt32("num_eligible_recipients", value); } - - - public IProtobufRepeatedFieldValueType RecipientsAccountids - { get => new ProtobufRepeatedFieldValueType(Accessor, "recipients_accountids"); } - -} + public CMsgGCGiftedItemsImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Accountid + { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } + public uint Giftdefindex + { get => Accessor.GetUInt32("giftdefindex"); set => Accessor.SetUInt32("giftdefindex", value); } + public uint MaxGiftsPossible + { get => Accessor.GetUInt32("max_gifts_possible"); set => Accessor.SetUInt32("max_gifts_possible", value); } + public uint NumEligibleRecipients + { get => Accessor.GetUInt32("num_eligible_recipients"); set => Accessor.SetUInt32("num_eligible_recipients", value); } + public IProtobufRepeatedFieldValueType RecipientsAccountids + { get => new ProtobufRepeatedFieldValueType(Accessor, "recipients_accountids"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCHAccountPhoneNumberChangeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCHAccountPhoneNumberChangeImpl.cs index 4f9c722ca..789febd37 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCHAccountPhoneNumberChangeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCHAccountPhoneNumberChangeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCHAccountPhoneNumberChangeImpl : TypedProtobuf, CMsgGCHAccountPhoneNumberChange { - public CMsgGCHAccountPhoneNumberChangeImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Steamid - { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } - - - public uint Appid - { get => Accessor.GetUInt32("appid"); set => Accessor.SetUInt32("appid", value); } - - - public ulong PhoneId - { get => Accessor.GetUInt64("phone_id"); set => Accessor.SetUInt64("phone_id", value); } - - - public bool IsVerified - { get => Accessor.GetBool("is_verified"); set => Accessor.SetBool("is_verified", value); } - - - public bool IsIdentifying - { get => Accessor.GetBool("is_identifying"); set => Accessor.SetBool("is_identifying", value); } - -} + public CMsgGCHAccountPhoneNumberChangeImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong Steamid + { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } + public uint Appid + { get => Accessor.GetUInt32("appid"); set => Accessor.SetUInt32("appid", value); } + public ulong PhoneId + { get => Accessor.GetUInt64("phone_id"); set => Accessor.SetUInt64("phone_id", value); } + public bool IsVerified + { get => Accessor.GetBool("is_verified"); set => Accessor.SetBool("is_verified", value); } + public bool IsIdentifying + { get => Accessor.GetBool("is_identifying"); set => Accessor.SetBool("is_identifying", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCHInviteUserToLobbyImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCHInviteUserToLobbyImpl.cs index 8d70cc386..77c38b6b7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCHInviteUserToLobbyImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCHInviteUserToLobbyImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCHInviteUserToLobbyImpl : TypedProtobuf, CMsgGCHInviteUserToLobby { - public CMsgGCHInviteUserToLobbyImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Steamid - { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } - - - public uint Appid - { get => Accessor.GetUInt32("appid"); set => Accessor.SetUInt32("appid", value); } - - - public ulong SteamidInvited - { get => Accessor.GetUInt64("steamid_invited"); set => Accessor.SetUInt64("steamid_invited", value); } - - - public ulong SteamidLobby - { get => Accessor.GetUInt64("steamid_lobby"); set => Accessor.SetUInt64("steamid_lobby", value); } - -} + public CMsgGCHInviteUserToLobbyImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong Steamid + { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } + public uint Appid + { get => Accessor.GetUInt32("appid"); set => Accessor.SetUInt32("appid", value); } + public ulong SteamidInvited + { get => Accessor.GetUInt64("steamid_invited"); set => Accessor.SetUInt64("steamid_invited", value); } + public ulong SteamidLobby + { get => Accessor.GetUInt64("steamid_lobby"); set => Accessor.SetUInt64("steamid_lobby", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCHRecurringSubscriptionStatusChangeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCHRecurringSubscriptionStatusChangeImpl.cs index 1f0d4da5a..8aa42d0b3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCHRecurringSubscriptionStatusChangeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCHRecurringSubscriptionStatusChangeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCHRecurringSubscriptionStatusChangeImpl : TypedProtobuf, CMsgGCHRecurringSubscriptionStatusChange { - public CMsgGCHRecurringSubscriptionStatusChangeImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Steamid - { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } - - - public uint Appid - { get => Accessor.GetUInt32("appid"); set => Accessor.SetUInt32("appid", value); } - - - public ulong Agreementid - { get => Accessor.GetUInt64("agreementid"); set => Accessor.SetUInt64("agreementid", value); } - - - public bool Active - { get => Accessor.GetBool("active"); set => Accessor.SetBool("active", value); } - -} + public CMsgGCHRecurringSubscriptionStatusChangeImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong Steamid + { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } + public uint Appid + { get => Accessor.GetUInt32("appid"); set => Accessor.SetUInt32("appid", value); } + public ulong Agreementid + { get => Accessor.GetUInt64("agreementid"); set => Accessor.SetUInt64("agreementid", value); } + public bool Active + { get => Accessor.GetBool("active"); set => Accessor.SetBool("active", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCHVacVerificationChangeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCHVacVerificationChangeImpl.cs index c52906a40..362d7d677 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCHVacVerificationChangeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCHVacVerificationChangeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCHVacVerificationChangeImpl : TypedProtobuf, CMsgGCHVacVerificationChange { - public CMsgGCHVacVerificationChangeImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Steamid - { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } - - - public uint Appid - { get => Accessor.GetUInt32("appid"); set => Accessor.SetUInt32("appid", value); } - - - public bool IsVerified - { get => Accessor.GetBool("is_verified"); set => Accessor.SetBool("is_verified", value); } - -} + public CMsgGCHVacVerificationChangeImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong Steamid + { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } + public uint Appid + { get => Accessor.GetUInt32("appid"); set => Accessor.SetUInt32("appid", value); } + public bool IsVerified + { get => Accessor.GetBool("is_verified"); set => Accessor.SetBool("is_verified", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCIncrementKillCountResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCIncrementKillCountResponseImpl.cs index f54d8a508..0149c5ba2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCIncrementKillCountResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCIncrementKillCountResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCIncrementKillCountResponseImpl : TypedProtobuf, CMsgGCIncrementKillCountResponse { - public CMsgGCIncrementKillCountResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint KillerAccountId - { get => Accessor.GetUInt32("killer_account_id"); set => Accessor.SetUInt32("killer_account_id", value); } - - - public uint NumKills - { get => Accessor.GetUInt32("num_kills"); set => Accessor.SetUInt32("num_kills", value); } - - - public uint ItemDef - { get => Accessor.GetUInt32("item_def"); set => Accessor.SetUInt32("item_def", value); } - - - public uint LevelType - { get => Accessor.GetUInt32("level_type"); set => Accessor.SetUInt32("level_type", value); } - -} + public CMsgGCIncrementKillCountResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint KillerAccountId + { get => Accessor.GetUInt32("killer_account_id"); set => Accessor.SetUInt32("killer_account_id", value); } + public uint NumKills + { get => Accessor.GetUInt32("num_kills"); set => Accessor.SetUInt32("num_kills", value); } + public uint ItemDef + { get => Accessor.GetUInt32("item_def"); set => Accessor.SetUInt32("item_def", value); } + public uint LevelType + { get => Accessor.GetUInt32("level_type"); set => Accessor.SetUInt32("level_type", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCItemCustomizationNotificationImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCItemCustomizationNotificationImpl.cs index a5589033e..57b4fd05c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCItemCustomizationNotificationImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCItemCustomizationNotificationImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCItemCustomizationNotificationImpl : TypedProtobuf, CMsgGCItemCustomizationNotification { - public CMsgGCItemCustomizationNotificationImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldValueType ItemId - { get => new ProtobufRepeatedFieldValueType(Accessor, "item_id"); } - - - public uint Request - { get => Accessor.GetUInt32("request"); set => Accessor.SetUInt32("request", value); } - - - public IProtobufRepeatedFieldValueType ExtraData - { get => new ProtobufRepeatedFieldValueType(Accessor, "extra_data"); } - -} + public CMsgGCItemCustomizationNotificationImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public IProtobufRepeatedFieldValueType ItemId + { get => new ProtobufRepeatedFieldValueType(Accessor, "item_id"); } + public uint Request + { get => Accessor.GetUInt32("request"); set => Accessor.SetUInt32("request", value); } + public IProtobufRepeatedFieldValueType ExtraData + { get => new ProtobufRepeatedFieldValueType(Accessor, "extra_data"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCItemPreviewItemBoughtNotificationImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCItemPreviewItemBoughtNotificationImpl.cs index 941d793e1..b4f7d2994 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCItemPreviewItemBoughtNotificationImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCItemPreviewItemBoughtNotificationImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCItemPreviewItemBoughtNotificationImpl : TypedProtobuf, CMsgGCItemPreviewItemBoughtNotification { - public CMsgGCItemPreviewItemBoughtNotificationImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint ItemDefIndex - { get => Accessor.GetUInt32("item_def_index"); set => Accessor.SetUInt32("item_def_index", value); } + public CMsgGCItemPreviewItemBoughtNotificationImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public uint ItemDefIndex + { get => Accessor.GetUInt32("item_def_index"); set => Accessor.SetUInt32("item_def_index", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCMultiplexMessageImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCMultiplexMessageImpl.cs index 98119d92e..71af39257 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCMultiplexMessageImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCMultiplexMessageImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCMultiplexMessageImpl : TypedProtobuf, CMsgGCMultiplexMessage { - public CMsgGCMultiplexMessageImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Msgtype - { get => Accessor.GetUInt32("msgtype"); set => Accessor.SetUInt32("msgtype", value); } - - - public byte[] Payload - { get => Accessor.GetBytes("payload"); set => Accessor.SetBytes("payload", value); } - - - public IProtobufRepeatedFieldValueType Steamids - { get => new ProtobufRepeatedFieldValueType(Accessor, "steamids"); } - - - public bool Replytogc - { get => Accessor.GetBool("replytogc"); set => Accessor.SetBool("replytogc", value); } - -} + public CMsgGCMultiplexMessageImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Msgtype + { get => Accessor.GetUInt32("msgtype"); set => Accessor.SetUInt32("msgtype", value); } + public byte[] Payload + { get => Accessor.GetBytes("payload"); set => Accessor.SetBytes("payload", value); } + public IProtobufRepeatedFieldValueType Steamids + { get => new ProtobufRepeatedFieldValueType(Accessor, "steamids"); } + public bool Replytogc + { get => Accessor.GetBool("replytogc"); set => Accessor.SetBool("replytogc", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCMultiplexMessage_ResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCMultiplexMessage_ResponseImpl.cs index d8112be75..b0ab66f52 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCMultiplexMessage_ResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCMultiplexMessage_ResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCMultiplexMessage_ResponseImpl : TypedProtobuf, CMsgGCMultiplexMessage_Response { - public CMsgGCMultiplexMessage_ResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Msgtype - { get => Accessor.GetUInt32("msgtype"); set => Accessor.SetUInt32("msgtype", value); } + public CMsgGCMultiplexMessage_ResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public uint Msgtype + { get => Accessor.GetUInt32("msgtype"); set => Accessor.SetUInt32("msgtype", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCNameItemNotificationImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCNameItemNotificationImpl.cs index f30c784a9..22c148c8b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCNameItemNotificationImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCNameItemNotificationImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCNameItemNotificationImpl : TypedProtobuf, CMsgGCNameItemNotification { - public CMsgGCNameItemNotificationImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong PlayerSteamid - { get => Accessor.GetUInt64("player_steamid"); set => Accessor.SetUInt64("player_steamid", value); } - - - public uint ItemDefIndex - { get => Accessor.GetUInt32("item_def_index"); set => Accessor.SetUInt32("item_def_index", value); } - - - public string ItemNameCustom - { get => Accessor.GetString("item_name_custom"); set => Accessor.SetString("item_name_custom", value); } - -} + public CMsgGCNameItemNotificationImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong PlayerSteamid + { get => Accessor.GetUInt64("player_steamid"); set => Accessor.SetUInt64("player_steamid", value); } + public uint ItemDefIndex + { get => Accessor.GetUInt32("item_def_index"); set => Accessor.SetUInt32("item_def_index", value); } + public string ItemNameCustom + { get => Accessor.GetString("item_name_custom"); set => Accessor.SetString("item_name_custom", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCReportAbuseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCReportAbuseImpl.cs index 07d794efd..775f73e14 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCReportAbuseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCReportAbuseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,36 +8,22 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCReportAbuseImpl : TypedProtobuf, CMsgGCReportAbuse { - public CMsgGCReportAbuseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong TargetSteamId - { get => Accessor.GetUInt64("target_steam_id"); set => Accessor.SetUInt64("target_steam_id", value); } - - - public string Description - { get => Accessor.GetString("description"); set => Accessor.SetString("description", value); } - - - public ulong Gid - { get => Accessor.GetUInt64("gid"); set => Accessor.SetUInt64("gid", value); } - - - public uint AbuseType - { get => Accessor.GetUInt32("abuse_type"); set => Accessor.SetUInt32("abuse_type", value); } - - - public uint ContentType - { get => Accessor.GetUInt32("content_type"); set => Accessor.SetUInt32("content_type", value); } - - - public uint TargetGameServerIp - { get => Accessor.GetUInt32("target_game_server_ip"); set => Accessor.SetUInt32("target_game_server_ip", value); } - - - public uint TargetGameServerPort - { get => Accessor.GetUInt32("target_game_server_port"); set => Accessor.SetUInt32("target_game_server_port", value); } - -} + public CMsgGCReportAbuseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong TargetSteamId + { get => Accessor.GetUInt64("target_steam_id"); set => Accessor.SetUInt64("target_steam_id", value); } + public string Description + { get => Accessor.GetString("description"); set => Accessor.SetString("description", value); } + public ulong Gid + { get => Accessor.GetUInt64("gid"); set => Accessor.SetUInt64("gid", value); } + public uint AbuseType + { get => Accessor.GetUInt32("abuse_type"); set => Accessor.SetUInt32("abuse_type", value); } + public uint ContentType + { get => Accessor.GetUInt32("content_type"); set => Accessor.SetUInt32("content_type", value); } + public uint TargetGameServerIp + { get => Accessor.GetUInt32("target_game_server_ip"); set => Accessor.SetUInt32("target_game_server_ip", value); } + public uint TargetGameServerPort + { get => Accessor.GetUInt32("target_game_server_port"); set => Accessor.SetUInt32("target_game_server_port", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCReportAbuseResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCReportAbuseResponseImpl.cs index 1e4c42c44..fde936e74 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCReportAbuseResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCReportAbuseResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCReportAbuseResponseImpl : TypedProtobuf, CMsgGCReportAbuseResponse { - public CMsgGCReportAbuseResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong TargetSteamId - { get => Accessor.GetUInt64("target_steam_id"); set => Accessor.SetUInt64("target_steam_id", value); } - - - public uint Result - { get => Accessor.GetUInt32("result"); set => Accessor.SetUInt32("result", value); } - - - public string ErrorMessage - { get => Accessor.GetString("error_message"); set => Accessor.SetString("error_message", value); } - -} + public CMsgGCReportAbuseResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong TargetSteamId + { get => Accessor.GetUInt64("target_steam_id"); set => Accessor.SetUInt64("target_steam_id", value); } + public uint Result + { get => Accessor.GetUInt32("result"); set => Accessor.SetUInt32("result", value); } + public string ErrorMessage + { get => Accessor.GetString("error_message"); set => Accessor.SetString("error_message", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCRequestAnnouncementsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCRequestAnnouncementsImpl.cs index e9982ccce..31f27446a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCRequestAnnouncementsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCRequestAnnouncementsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,9 +8,8 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCRequestAnnouncementsImpl : TypedProtobuf, CMsgGCRequestAnnouncements { - public CMsgGCRequestAnnouncementsImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - + public CMsgGCRequestAnnouncementsImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCRequestAnnouncementsResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCRequestAnnouncementsResponseImpl.cs index 7d95a3e56..4995891b2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCRequestAnnouncementsResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCRequestAnnouncementsResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCRequestAnnouncementsResponseImpl : TypedProtobuf, CMsgGCRequestAnnouncementsResponse { - public CMsgGCRequestAnnouncementsResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string AnnouncementTitle - { get => Accessor.GetString("announcement_title"); set => Accessor.SetString("announcement_title", value); } - - - public string Announcement - { get => Accessor.GetString("announcement"); set => Accessor.SetString("announcement", value); } - - - public string NextmatchTitle - { get => Accessor.GetString("nextmatch_title"); set => Accessor.SetString("nextmatch_title", value); } - - - public string Nextmatch - { get => Accessor.GetString("nextmatch"); set => Accessor.SetString("nextmatch", value); } - -} + public CMsgGCRequestAnnouncementsResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string AnnouncementTitle + { get => Accessor.GetString("announcement_title"); set => Accessor.SetString("announcement_title", value); } + public string Announcement + { get => Accessor.GetString("announcement"); set => Accessor.SetString("announcement", value); } + public string NextmatchTitle + { get => Accessor.GetString("nextmatch_title"); set => Accessor.SetString("nextmatch_title", value); } + public string Nextmatch + { get => Accessor.GetString("nextmatch"); set => Accessor.SetString("nextmatch", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCRequestSessionIPImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCRequestSessionIPImpl.cs index c6b195697..9d02d04eb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCRequestSessionIPImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCRequestSessionIPImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCRequestSessionIPImpl : TypedProtobuf, CMsgGCRequestSessionIP { - public CMsgGCRequestSessionIPImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Steamid - { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } + public CMsgGCRequestSessionIPImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public ulong Steamid + { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCRequestSessionIPResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCRequestSessionIPResponseImpl.cs index 9f1f61ae3..1bc4e4976 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCRequestSessionIPResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCRequestSessionIPResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCRequestSessionIPResponseImpl : TypedProtobuf, CMsgGCRequestSessionIPResponse { - public CMsgGCRequestSessionIPResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Ip - { get => Accessor.GetUInt32("ip"); set => Accessor.SetUInt32("ip", value); } + public CMsgGCRequestSessionIPResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public uint Ip + { get => Accessor.GetUInt32("ip"); set => Accessor.SetUInt32("ip", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCServerVersionUpdatedImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCServerVersionUpdatedImpl.cs index a1e6a07ab..aaa392330 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCServerVersionUpdatedImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCServerVersionUpdatedImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCServerVersionUpdatedImpl : TypedProtobuf, CMsgGCServerVersionUpdated { - public CMsgGCServerVersionUpdatedImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint ServerVersion - { get => Accessor.GetUInt32("server_version"); set => Accessor.SetUInt32("server_version", value); } + public CMsgGCServerVersionUpdatedImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public uint ServerVersion + { get => Accessor.GetUInt32("server_version"); set => Accessor.SetUInt32("server_version", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCShowItemsPickedUpImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCShowItemsPickedUpImpl.cs index 6a0599942..6e47ee2b5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCShowItemsPickedUpImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCShowItemsPickedUpImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCShowItemsPickedUpImpl : TypedProtobuf, CMsgGCShowItemsPickedUp { - public CMsgGCShowItemsPickedUpImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong PlayerSteamid - { get => Accessor.GetUInt64("player_steamid"); set => Accessor.SetUInt64("player_steamid", value); } + public CMsgGCShowItemsPickedUpImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public ulong PlayerSteamid + { get => Accessor.GetUInt64("player_steamid"); set => Accessor.SetUInt64("player_steamid", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCStorePurchaseCancelImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCStorePurchaseCancelImpl.cs index d4a3bb5ee..6b499e959 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCStorePurchaseCancelImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCStorePurchaseCancelImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCStorePurchaseCancelImpl : TypedProtobuf, CMsgGCStorePurchaseCancel { - public CMsgGCStorePurchaseCancelImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong TxnId - { get => Accessor.GetUInt64("txn_id"); set => Accessor.SetUInt64("txn_id", value); } + public CMsgGCStorePurchaseCancelImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public ulong TxnId + { get => Accessor.GetUInt64("txn_id"); set => Accessor.SetUInt64("txn_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCStorePurchaseCancelResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCStorePurchaseCancelResponseImpl.cs index e1fd136a4..f71239fba 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCStorePurchaseCancelResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCStorePurchaseCancelResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCStorePurchaseCancelResponseImpl : TypedProtobuf, CMsgGCStorePurchaseCancelResponse { - public CMsgGCStorePurchaseCancelResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Result - { get => Accessor.GetUInt32("result"); set => Accessor.SetUInt32("result", value); } + public CMsgGCStorePurchaseCancelResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public uint Result + { get => Accessor.GetUInt32("result"); set => Accessor.SetUInt32("result", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCStorePurchaseFinalizeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCStorePurchaseFinalizeImpl.cs index 0997448e5..b45bda665 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCStorePurchaseFinalizeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCStorePurchaseFinalizeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCStorePurchaseFinalizeImpl : TypedProtobuf, CMsgGCStorePurchaseFinalize { - public CMsgGCStorePurchaseFinalizeImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong TxnId - { get => Accessor.GetUInt64("txn_id"); set => Accessor.SetUInt64("txn_id", value); } + public CMsgGCStorePurchaseFinalizeImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public ulong TxnId + { get => Accessor.GetUInt64("txn_id"); set => Accessor.SetUInt64("txn_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCStorePurchaseFinalizeResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCStorePurchaseFinalizeResponseImpl.cs index 40738ab42..7faa77f45 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCStorePurchaseFinalizeResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCStorePurchaseFinalizeResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCStorePurchaseFinalizeResponseImpl : TypedProtobuf, CMsgGCStorePurchaseFinalizeResponse { - public CMsgGCStorePurchaseFinalizeResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Result - { get => Accessor.GetUInt32("result"); set => Accessor.SetUInt32("result", value); } - - - public IProtobufRepeatedFieldValueType ItemIds - { get => new ProtobufRepeatedFieldValueType(Accessor, "item_ids"); } - -} + public CMsgGCStorePurchaseFinalizeResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Result + { get => Accessor.GetUInt32("result"); set => Accessor.SetUInt32("result", value); } + public IProtobufRepeatedFieldValueType ItemIds + { get => new ProtobufRepeatedFieldValueType(Accessor, "item_ids"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCStorePurchaseInitImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCStorePurchaseInitImpl.cs index fd58d1618..6b7a4dcb3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCStorePurchaseInitImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCStorePurchaseInitImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCStorePurchaseInitImpl : TypedProtobuf, CMsgGCStorePurchaseInit { - public CMsgGCStorePurchaseInitImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string Country - { get => Accessor.GetString("country"); set => Accessor.SetString("country", value); } - - - public int Language - { get => Accessor.GetInt32("language"); set => Accessor.SetInt32("language", value); } - - - public int Currency - { get => Accessor.GetInt32("currency"); set => Accessor.SetInt32("currency", value); } - - - public IProtobufRepeatedFieldSubMessageType LineItems - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "line_items"); } - -} + public CMsgGCStorePurchaseInitImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string Country + { get => Accessor.GetString("country"); set => Accessor.SetString("country", value); } + public int Language + { get => Accessor.GetInt32("language"); set => Accessor.SetInt32("language", value); } + public int Currency + { get => Accessor.GetInt32("currency"); set => Accessor.SetInt32("currency", value); } + public IProtobufRepeatedFieldSubMessageType LineItems + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "line_items"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCStorePurchaseInitResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCStorePurchaseInitResponseImpl.cs index 62c5cdaf7..65e9d5b5b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCStorePurchaseInitResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCStorePurchaseInitResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCStorePurchaseInitResponseImpl : TypedProtobuf, CMsgGCStorePurchaseInitResponse { - public CMsgGCStorePurchaseInitResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Result - { get => Accessor.GetInt32("result"); set => Accessor.SetInt32("result", value); } - - - public ulong TxnId - { get => Accessor.GetUInt64("txn_id"); set => Accessor.SetUInt64("txn_id", value); } - - - public string Url - { get => Accessor.GetString("url"); set => Accessor.SetString("url", value); } - - - public IProtobufRepeatedFieldValueType ItemIds - { get => new ProtobufRepeatedFieldValueType(Accessor, "item_ids"); } - -} + public CMsgGCStorePurchaseInitResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Result + { get => Accessor.GetInt32("result"); set => Accessor.SetInt32("result", value); } + public ulong TxnId + { get => Accessor.GetUInt64("txn_id"); set => Accessor.SetUInt64("txn_id", value); } + public string Url + { get => Accessor.GetString("url"); set => Accessor.SetString("url", value); } + public IProtobufRepeatedFieldValueType ItemIds + { get => new ProtobufRepeatedFieldValueType(Accessor, "item_ids"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToClientSteamDatagramTicketImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToClientSteamDatagramTicketImpl.cs index 6f83ae193..979d5a430 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToClientSteamDatagramTicketImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToClientSteamDatagramTicketImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCToClientSteamDatagramTicketImpl : TypedProtobuf, CMsgGCToClientSteamDatagramTicket { - public CMsgGCToClientSteamDatagramTicketImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public byte[] SerializedTicket - { get => Accessor.GetBytes("serialized_ticket"); set => Accessor.SetBytes("serialized_ticket", value); } + public CMsgGCToClientSteamDatagramTicketImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public byte[] SerializedTicket + { get => Accessor.GetBytes("serialized_ticket"); set => Accessor.SetBytes("serialized_ticket", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCBannedWordListBroadcastImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCBannedWordListBroadcastImpl.cs index 5848b5edb..0584a654d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCBannedWordListBroadcastImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCBannedWordListBroadcastImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCToGCBannedWordListBroadcastImpl : TypedProtobuf, CMsgGCToGCBannedWordListBroadcast { - public CMsgGCToGCBannedWordListBroadcastImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public CMsgGCBannedWordListResponse Broadcast - { get => new CMsgGCBannedWordListResponseImpl(NativeNetMessages.GetNestedMessage(Address, "broadcast"), false); } + public CMsgGCToGCBannedWordListBroadcastImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public CMsgGCBannedWordListResponse Broadcast + { get => new CMsgGCBannedWordListResponseImpl(NativeNetMessages.GetNestedMessage(Address, "broadcast"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCBannedWordListUpdatedImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCBannedWordListUpdatedImpl.cs index 1f7200b98..d62e6ad83 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCBannedWordListUpdatedImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCBannedWordListUpdatedImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCToGCBannedWordListUpdatedImpl : TypedProtobuf, CMsgGCToGCBannedWordListUpdated { - public CMsgGCToGCBannedWordListUpdatedImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint GroupId - { get => Accessor.GetUInt32("group_id"); set => Accessor.SetUInt32("group_id", value); } + public CMsgGCToGCBannedWordListUpdatedImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public uint GroupId + { get => Accessor.GetUInt32("group_id"); set => Accessor.SetUInt32("group_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCBroadcastConsoleCommandImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCBroadcastConsoleCommandImpl.cs index ee3a8c16b..8f0497fd2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCBroadcastConsoleCommandImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCBroadcastConsoleCommandImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCToGCBroadcastConsoleCommandImpl : TypedProtobuf, CMsgGCToGCBroadcastConsoleCommand { - public CMsgGCToGCBroadcastConsoleCommandImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string ConCommand - { get => Accessor.GetString("con_command"); set => Accessor.SetString("con_command", value); } + public CMsgGCToGCBroadcastConsoleCommandImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public string ConCommand + { get => Accessor.GetString("con_command"); set => Accessor.SetString("con_command", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCDirtyMultipleSDOCacheImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCDirtyMultipleSDOCacheImpl.cs index 30da21ef1..b8dcaf710 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCDirtyMultipleSDOCacheImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCDirtyMultipleSDOCacheImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCToGCDirtyMultipleSDOCacheImpl : TypedProtobuf, CMsgGCToGCDirtyMultipleSDOCache { - public CMsgGCToGCDirtyMultipleSDOCacheImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint SdoType - { get => Accessor.GetUInt32("sdo_type"); set => Accessor.SetUInt32("sdo_type", value); } - - - public IProtobufRepeatedFieldValueType KeyUint64 - { get => new ProtobufRepeatedFieldValueType(Accessor, "key_uint64"); } - -} + public CMsgGCToGCDirtyMultipleSDOCacheImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint SdoType + { get => Accessor.GetUInt32("sdo_type"); set => Accessor.SetUInt32("sdo_type", value); } + public IProtobufRepeatedFieldValueType KeyUint64 + { get => new ProtobufRepeatedFieldValueType(Accessor, "key_uint64"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCDirtySDOCacheImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCDirtySDOCacheImpl.cs index 7c63c469e..43ec35085 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCDirtySDOCacheImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCDirtySDOCacheImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCToGCDirtySDOCacheImpl : TypedProtobuf, CMsgGCToGCDirtySDOCache { - public CMsgGCToGCDirtySDOCacheImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint SdoType - { get => Accessor.GetUInt32("sdo_type"); set => Accessor.SetUInt32("sdo_type", value); } - - - public ulong KeyUint64 - { get => Accessor.GetUInt64("key_uint64"); set => Accessor.SetUInt64("key_uint64", value); } - -} + public CMsgGCToGCDirtySDOCacheImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint SdoType + { get => Accessor.GetUInt32("sdo_type"); set => Accessor.SetUInt32("sdo_type", value); } + public ulong KeyUint64 + { get => Accessor.GetUInt64("key_uint64"); set => Accessor.SetUInt64("key_uint64", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCIsTrustedServerImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCIsTrustedServerImpl.cs index adb242d16..0fe995877 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCIsTrustedServerImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCIsTrustedServerImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCToGCIsTrustedServerImpl : TypedProtobuf, CMsgGCToGCIsTrustedServer { - public CMsgGCToGCIsTrustedServerImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong SteamId - { get => Accessor.GetUInt64("steam_id"); set => Accessor.SetUInt64("steam_id", value); } + public CMsgGCToGCIsTrustedServerImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public ulong SteamId + { get => Accessor.GetUInt64("steam_id"); set => Accessor.SetUInt64("steam_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCIsTrustedServerResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCIsTrustedServerResponseImpl.cs index 04ac989d7..0fc25556e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCIsTrustedServerResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCIsTrustedServerResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCToGCIsTrustedServerResponseImpl : TypedProtobuf, CMsgGCToGCIsTrustedServerResponse { - public CMsgGCToGCIsTrustedServerResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public bool IsTrusted - { get => Accessor.GetBool("is_trusted"); set => Accessor.SetBool("is_trusted", value); } + public CMsgGCToGCIsTrustedServerResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public bool IsTrusted + { get => Accessor.GetBool("is_trusted"); set => Accessor.SetBool("is_trusted", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCRequestPassportItemGrantImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCRequestPassportItemGrantImpl.cs index 95acbb02d..700e868ad 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCRequestPassportItemGrantImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCRequestPassportItemGrantImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCToGCRequestPassportItemGrantImpl : TypedProtobuf, CMsgGCToGCRequestPassportItemGrant { - public CMsgGCToGCRequestPassportItemGrantImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong SteamId - { get => Accessor.GetUInt64("steam_id"); set => Accessor.SetUInt64("steam_id", value); } - - - public uint LeagueId - { get => Accessor.GetUInt32("league_id"); set => Accessor.SetUInt32("league_id", value); } - - - public int RewardFlag - { get => Accessor.GetInt32("reward_flag"); set => Accessor.SetInt32("reward_flag", value); } - -} + public CMsgGCToGCRequestPassportItemGrantImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong SteamId + { get => Accessor.GetUInt64("steam_id"); set => Accessor.SetUInt64("steam_id", value); } + public uint LeagueId + { get => Accessor.GetUInt32("league_id"); set => Accessor.SetUInt32("league_id", value); } + public int RewardFlag + { get => Accessor.GetInt32("reward_flag"); set => Accessor.SetInt32("reward_flag", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCUpdateSQLKeyValueImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCUpdateSQLKeyValueImpl.cs index 0429e51f6..57ceffc7d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCUpdateSQLKeyValueImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCUpdateSQLKeyValueImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCToGCUpdateSQLKeyValueImpl : TypedProtobuf, CMsgGCToGCUpdateSQLKeyValue { - public CMsgGCToGCUpdateSQLKeyValueImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string KeyName - { get => Accessor.GetString("key_name"); set => Accessor.SetString("key_name", value); } + public CMsgGCToGCUpdateSQLKeyValueImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public string KeyName + { get => Accessor.GetString("key_name"); set => Accessor.SetString("key_name", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCWebAPIAccountChangedImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCWebAPIAccountChangedImpl.cs index cc7a4043f..85bd74df8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCWebAPIAccountChangedImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCToGCWebAPIAccountChangedImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,9 +8,8 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCToGCWebAPIAccountChangedImpl : TypedProtobuf, CMsgGCToGCWebAPIAccountChanged { - public CMsgGCToGCWebAPIAccountChangedImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - + public CMsgGCToGCWebAPIAccountChangedImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCUpdateSessionIPImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCUpdateSessionIPImpl.cs index 66d681aba..7ffea8948 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCUpdateSessionIPImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCUpdateSessionIPImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCUpdateSessionIPImpl : TypedProtobuf, CMsgGCUpdateSessionIP { - public CMsgGCUpdateSessionIPImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Steamid - { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } - - - public uint Ip - { get => Accessor.GetUInt32("ip"); set => Accessor.SetUInt32("ip", value); } - -} + public CMsgGCUpdateSessionIPImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong Steamid + { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } + public uint Ip + { get => Accessor.GetUInt32("ip"); set => Accessor.SetUInt32("ip", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCUserTrackTimePlayedConsecutivelyImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCUserTrackTimePlayedConsecutivelyImpl.cs index 226259523..501c3c121 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCUserTrackTimePlayedConsecutivelyImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGCUserTrackTimePlayedConsecutivelyImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGCUserTrackTimePlayedConsecutivelyImpl : TypedProtobuf, CMsgGCUserTrackTimePlayedConsecutively { - public CMsgGCUserTrackTimePlayedConsecutivelyImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint State - { get => Accessor.GetUInt32("state"); set => Accessor.SetUInt32("state", value); } + public CMsgGCUserTrackTimePlayedConsecutivelyImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public uint State + { get => Accessor.GetUInt32("state"); set => Accessor.SetUInt32("state", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGC_GlobalGame_PlayImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGC_GlobalGame_PlayImpl.cs index f7e58732f..4e326da09 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGC_GlobalGame_PlayImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGC_GlobalGame_PlayImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGC_GlobalGame_PlayImpl : TypedProtobuf, CMsgGC_GlobalGame_Play { - public CMsgGC_GlobalGame_PlayImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Ticket - { get => Accessor.GetUInt64("ticket"); set => Accessor.SetUInt64("ticket", value); } - - - public uint Gametimems - { get => Accessor.GetUInt32("gametimems"); set => Accessor.SetUInt32("gametimems", value); } - - - public uint Msperpoint - { get => Accessor.GetUInt32("msperpoint"); set => Accessor.SetUInt32("msperpoint", value); } - -} + public CMsgGC_GlobalGame_PlayImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong Ticket + { get => Accessor.GetUInt64("ticket"); set => Accessor.SetUInt64("ticket", value); } + public uint Gametimems + { get => Accessor.GetUInt32("gametimems"); set => Accessor.SetUInt32("gametimems", value); } + public uint Msperpoint + { get => Accessor.GetUInt32("msperpoint"); set => Accessor.SetUInt32("msperpoint", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGC_GlobalGame_SubscribeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGC_GlobalGame_SubscribeImpl.cs index a37fc4af6..ad04b1334 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGC_GlobalGame_SubscribeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGC_GlobalGame_SubscribeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGC_GlobalGame_SubscribeImpl : TypedProtobuf, CMsgGC_GlobalGame_Subscribe { - public CMsgGC_GlobalGame_SubscribeImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Ticket - { get => Accessor.GetUInt64("ticket"); set => Accessor.SetUInt64("ticket", value); } + public CMsgGC_GlobalGame_SubscribeImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public ulong Ticket + { get => Accessor.GetUInt64("ticket"); set => Accessor.SetUInt64("ticket", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGC_GlobalGame_UnsubscribeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGC_GlobalGame_UnsubscribeImpl.cs index 71716f3a2..0d027be47 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGC_GlobalGame_UnsubscribeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGC_GlobalGame_UnsubscribeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGC_GlobalGame_UnsubscribeImpl : TypedProtobuf, CMsgGC_GlobalGame_Unsubscribe { - public CMsgGC_GlobalGame_UnsubscribeImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Timeleft - { get => Accessor.GetInt32("timeleft"); set => Accessor.SetInt32("timeleft", value); } + public CMsgGC_GlobalGame_UnsubscribeImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public int Timeleft + { get => Accessor.GetInt32("timeleft"); set => Accessor.SetInt32("timeleft", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGC_ServerQuestUpdateDataImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGC_ServerQuestUpdateDataImpl.cs index b88bb124c..462e2556a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGC_ServerQuestUpdateDataImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGC_ServerQuestUpdateDataImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGC_ServerQuestUpdateDataImpl : TypedProtobuf, CMsgGC_ServerQuestUpdateData { - public CMsgGC_ServerQuestUpdateDataImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldSubMessageType PlayerQuestData - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "player_quest_data"); } - - - public byte[] BinaryData - { get => Accessor.GetBytes("binary_data"); set => Accessor.SetBytes("binary_data", value); } - - - public uint MmGameMode - { get => Accessor.GetUInt32("mm_game_mode"); set => Accessor.SetUInt32("mm_game_mode", value); } - - - public ScoreLeaderboardData Missionlbsdata - { get => new ScoreLeaderboardDataImpl(NativeNetMessages.GetNestedMessage(Address, "missionlbsdata"), false); } - - - public uint Flags - { get => Accessor.GetUInt32("flags"); set => Accessor.SetUInt32("flags", value); } - -} + public CMsgGC_ServerQuestUpdateDataImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public IProtobufRepeatedFieldSubMessageType PlayerQuestData + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "player_quest_data"); } + public byte[] BinaryData + { get => Accessor.GetBytes("binary_data"); set => Accessor.SetBytes("binary_data", value); } + public uint MmGameMode + { get => Accessor.GetUInt32("mm_game_mode"); set => Accessor.SetUInt32("mm_game_mode", value); } + public ScoreLeaderboardData Missionlbsdata + { get => new ScoreLeaderboardDataImpl(NativeNetMessages.GetNestedMessage(Address, "missionlbsdata"), false); } + public uint Flags + { get => Accessor.GetUInt32("flags"); set => Accessor.SetUInt32("flags", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGameServerInfoImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGameServerInfoImpl.cs index 51b3a8254..b60d558a5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGameServerInfoImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgGameServerInfoImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,80 +8,44 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgGameServerInfoImpl : TypedProtobuf, CMsgGameServerInfo { - public CMsgGameServerInfoImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint ServerPublicIpAddr - { get => Accessor.GetUInt32("server_public_ip_addr"); set => Accessor.SetUInt32("server_public_ip_addr", value); } - - - public uint ServerPrivateIpAddr - { get => Accessor.GetUInt32("server_private_ip_addr"); set => Accessor.SetUInt32("server_private_ip_addr", value); } - - - public uint ServerPort - { get => Accessor.GetUInt32("server_port"); set => Accessor.SetUInt32("server_port", value); } - - - public uint ServerTvPort - { get => Accessor.GetUInt32("server_tv_port"); set => Accessor.SetUInt32("server_tv_port", value); } - - - public string ServerKey - { get => Accessor.GetString("server_key"); set => Accessor.SetString("server_key", value); } - - - public bool ServerHibernation - { get => Accessor.GetBool("server_hibernation"); set => Accessor.SetBool("server_hibernation", value); } - - - public CMsgGameServerInfo_ServerType ServerType - { get => (CMsgGameServerInfo_ServerType)Accessor.GetInt32("server_type"); set => Accessor.SetInt32("server_type", (int)value); } - - - public uint ServerRegion - { get => Accessor.GetUInt32("server_region"); set => Accessor.SetUInt32("server_region", value); } - - - public float ServerLoadavg - { get => Accessor.GetFloat("server_loadavg"); set => Accessor.SetFloat("server_loadavg", value); } - - - public float ServerTvBroadcastTime - { get => Accessor.GetFloat("server_tv_broadcast_time"); set => Accessor.SetFloat("server_tv_broadcast_time", value); } - - - public float ServerGameTime - { get => Accessor.GetFloat("server_game_time"); set => Accessor.SetFloat("server_game_time", value); } - - - public ulong ServerRelayConnectedSteamId - { get => Accessor.GetUInt64("server_relay_connected_steam_id"); set => Accessor.SetUInt64("server_relay_connected_steam_id", value); } - - - public uint RelaySlotsMax - { get => Accessor.GetUInt32("relay_slots_max"); set => Accessor.SetUInt32("relay_slots_max", value); } - - - public int RelaysConnected - { get => Accessor.GetInt32("relays_connected"); set => Accessor.SetInt32("relays_connected", value); } - - - public int RelayClientsConnected - { get => Accessor.GetInt32("relay_clients_connected"); set => Accessor.SetInt32("relay_clients_connected", value); } - - - public ulong RelayedGameServerSteamId - { get => Accessor.GetUInt64("relayed_game_server_steam_id"); set => Accessor.SetUInt64("relayed_game_server_steam_id", value); } - - - public uint ParentRelayCount - { get => Accessor.GetUInt32("parent_relay_count"); set => Accessor.SetUInt32("parent_relay_count", value); } - - - public ulong TvSecretCode - { get => Accessor.GetUInt64("tv_secret_code"); set => Accessor.SetUInt64("tv_secret_code", value); } - -} + public CMsgGameServerInfoImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint ServerPublicIpAddr + { get => Accessor.GetUInt32("server_public_ip_addr"); set => Accessor.SetUInt32("server_public_ip_addr", value); } + public uint ServerPrivateIpAddr + { get => Accessor.GetUInt32("server_private_ip_addr"); set => Accessor.SetUInt32("server_private_ip_addr", value); } + public uint ServerPort + { get => Accessor.GetUInt32("server_port"); set => Accessor.SetUInt32("server_port", value); } + public uint ServerTvPort + { get => Accessor.GetUInt32("server_tv_port"); set => Accessor.SetUInt32("server_tv_port", value); } + public string ServerKey + { get => Accessor.GetString("server_key"); set => Accessor.SetString("server_key", value); } + public bool ServerHibernation + { get => Accessor.GetBool("server_hibernation"); set => Accessor.SetBool("server_hibernation", value); } + public CMsgGameServerInfo_ServerType ServerType + { get => (CMsgGameServerInfo_ServerType)Accessor.GetInt32("server_type"); set => Accessor.SetInt32("server_type", (int)value); } + public uint ServerRegion + { get => Accessor.GetUInt32("server_region"); set => Accessor.SetUInt32("server_region", value); } + public float ServerLoadavg + { get => Accessor.GetFloat("server_loadavg"); set => Accessor.SetFloat("server_loadavg", value); } + public float ServerTvBroadcastTime + { get => Accessor.GetFloat("server_tv_broadcast_time"); set => Accessor.SetFloat("server_tv_broadcast_time", value); } + public float ServerGameTime + { get => Accessor.GetFloat("server_game_time"); set => Accessor.SetFloat("server_game_time", value); } + public ulong ServerRelayConnectedSteamId + { get => Accessor.GetUInt64("server_relay_connected_steam_id"); set => Accessor.SetUInt64("server_relay_connected_steam_id", value); } + public uint RelaySlotsMax + { get => Accessor.GetUInt32("relay_slots_max"); set => Accessor.SetUInt32("relay_slots_max", value); } + public int RelaysConnected + { get => Accessor.GetInt32("relays_connected"); set => Accessor.SetInt32("relays_connected", value); } + public int RelayClientsConnected + { get => Accessor.GetInt32("relay_clients_connected"); set => Accessor.SetInt32("relay_clients_connected", value); } + public ulong RelayedGameServerSteamId + { get => Accessor.GetUInt64("relayed_game_server_steam_id"); set => Accessor.SetUInt64("relayed_game_server_steam_id", value); } + public uint ParentRelayCount + { get => Accessor.GetUInt32("parent_relay_count"); set => Accessor.SetUInt32("parent_relay_count", value); } + public ulong TvSecretCode + { get => Accessor.GetUInt64("tv_secret_code"); set => Accessor.SetUInt64("tv_secret_code", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgIPCAddressImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgIPCAddressImpl.cs index 0142ac3c8..c1299b985 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgIPCAddressImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgIPCAddressImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgIPCAddressImpl : TypedProtobuf, CMsgIPCAddress { - public CMsgIPCAddressImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong ComputerGuid - { get => Accessor.GetUInt64("computer_guid"); set => Accessor.SetUInt64("computer_guid", value); } - - - public uint ProcessId - { get => Accessor.GetUInt32("process_id"); set => Accessor.SetUInt32("process_id", value); } - -} + public CMsgIPCAddressImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong ComputerGuid + { get => Accessor.GetUInt64("computer_guid"); set => Accessor.SetUInt64("computer_guid", value); } + public uint ProcessId + { get => Accessor.GetUInt32("process_id"); set => Accessor.SetUInt32("process_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgIncrementKillCountAttributeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgIncrementKillCountAttributeImpl.cs index aa405e87c..8762b5c6c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgIncrementKillCountAttributeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgIncrementKillCountAttributeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgIncrementKillCountAttributeImpl : TypedProtobuf, CMsgIncrementKillCountAttribute { - public CMsgIncrementKillCountAttributeImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint KillerAccountId - { get => Accessor.GetUInt32("killer_account_id"); set => Accessor.SetUInt32("killer_account_id", value); } - - - public uint VictimAccountId - { get => Accessor.GetUInt32("victim_account_id"); set => Accessor.SetUInt32("victim_account_id", value); } - - - public ulong ItemId - { get => Accessor.GetUInt64("item_id"); set => Accessor.SetUInt64("item_id", value); } - - - public uint EventType - { get => Accessor.GetUInt32("event_type"); set => Accessor.SetUInt32("event_type", value); } - - - public uint Amount - { get => Accessor.GetUInt32("amount"); set => Accessor.SetUInt32("amount", value); } - -} + public CMsgIncrementKillCountAttributeImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint KillerAccountId + { get => Accessor.GetUInt32("killer_account_id"); set => Accessor.SetUInt32("killer_account_id", value); } + public uint VictimAccountId + { get => Accessor.GetUInt32("victim_account_id"); set => Accessor.SetUInt32("victim_account_id", value); } + public ulong ItemId + { get => Accessor.GetUInt64("item_id"); set => Accessor.SetUInt64("item_id", value); } + public uint EventType + { get => Accessor.GetUInt32("event_type"); set => Accessor.SetUInt32("event_type", value); } + public uint Amount + { get => Accessor.GetUInt32("amount"); set => Accessor.SetUInt32("amount", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgInvitationCreatedImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgInvitationCreatedImpl.cs index d4344d2e8..692644091 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgInvitationCreatedImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgInvitationCreatedImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgInvitationCreatedImpl : TypedProtobuf, CMsgInvitationCreated { - public CMsgInvitationCreatedImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong GroupId - { get => Accessor.GetUInt64("group_id"); set => Accessor.SetUInt64("group_id", value); } - - - public ulong SteamId - { get => Accessor.GetUInt64("steam_id"); set => Accessor.SetUInt64("steam_id", value); } - -} + public CMsgInvitationCreatedImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong GroupId + { get => Accessor.GetUInt64("group_id"); set => Accessor.SetUInt64("group_id", value); } + public ulong SteamId + { get => Accessor.GetUInt64("steam_id"); set => Accessor.SetUInt64("steam_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgInviteToPartyImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgInviteToPartyImpl.cs index a52297fff..e939cd053 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgInviteToPartyImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgInviteToPartyImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgInviteToPartyImpl : TypedProtobuf, CMsgInviteToParty { - public CMsgInviteToPartyImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong SteamId - { get => Accessor.GetUInt64("steam_id"); set => Accessor.SetUInt64("steam_id", value); } - - - public uint ClientVersion - { get => Accessor.GetUInt32("client_version"); set => Accessor.SetUInt32("client_version", value); } - - - public uint TeamInvite - { get => Accessor.GetUInt32("team_invite"); set => Accessor.SetUInt32("team_invite", value); } - -} + public CMsgInviteToPartyImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong SteamId + { get => Accessor.GetUInt64("steam_id"); set => Accessor.SetUInt64("steam_id", value); } + public uint ClientVersion + { get => Accessor.GetUInt32("client_version"); set => Accessor.SetUInt32("client_version", value); } + public uint TeamInvite + { get => Accessor.GetUInt32("team_invite"); set => Accessor.SetUInt32("team_invite", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgItemAcknowledgedImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgItemAcknowledgedImpl.cs index b3716e759..672c31cbb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgItemAcknowledgedImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgItemAcknowledgedImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgItemAcknowledgedImpl : TypedProtobuf, CMsgItemAcknowledged { - public CMsgItemAcknowledgedImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public CEconItemPreviewDataBlock Iteminfo - { get => new CEconItemPreviewDataBlockImpl(NativeNetMessages.GetNestedMessage(Address, "iteminfo"), false); } + public CMsgItemAcknowledgedImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public CEconItemPreviewDataBlock Iteminfo + { get => new CEconItemPreviewDataBlockImpl(NativeNetMessages.GetNestedMessage(Address, "iteminfo"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgItemAcknowledged__DEPRECATEDImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgItemAcknowledged__DEPRECATEDImpl.cs index efe3ecefa..62ea15023 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgItemAcknowledged__DEPRECATEDImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgItemAcknowledged__DEPRECATEDImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,36 +8,22 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgItemAcknowledged__DEPRECATEDImpl : TypedProtobuf, CMsgItemAcknowledged__DEPRECATED { - public CMsgItemAcknowledged__DEPRECATEDImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint AccountId - { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } - - - public uint Inventory - { get => Accessor.GetUInt32("inventory"); set => Accessor.SetUInt32("inventory", value); } - - - public uint DefIndex - { get => Accessor.GetUInt32("def_index"); set => Accessor.SetUInt32("def_index", value); } - - - public uint Quality - { get => Accessor.GetUInt32("quality"); set => Accessor.SetUInt32("quality", value); } - - - public uint Rarity - { get => Accessor.GetUInt32("rarity"); set => Accessor.SetUInt32("rarity", value); } - - - public uint Origin - { get => Accessor.GetUInt32("origin"); set => Accessor.SetUInt32("origin", value); } - - - public ulong ItemId - { get => Accessor.GetUInt64("item_id"); set => Accessor.SetUInt64("item_id", value); } - -} + public CMsgItemAcknowledged__DEPRECATEDImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint AccountId + { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } + public uint Inventory + { get => Accessor.GetUInt32("inventory"); set => Accessor.SetUInt32("inventory", value); } + public uint DefIndex + { get => Accessor.GetUInt32("def_index"); set => Accessor.SetUInt32("def_index", value); } + public uint Quality + { get => Accessor.GetUInt32("quality"); set => Accessor.SetUInt32("quality", value); } + public uint Rarity + { get => Accessor.GetUInt32("rarity"); set => Accessor.SetUInt32("rarity", value); } + public uint Origin + { get => Accessor.GetUInt32("origin"); set => Accessor.SetUInt32("origin", value); } + public ulong ItemId + { get => Accessor.GetUInt64("item_id"); set => Accessor.SetUInt64("item_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgKickFromPartyImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgKickFromPartyImpl.cs index 13ce2174c..17d2cdf07 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgKickFromPartyImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgKickFromPartyImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgKickFromPartyImpl : TypedProtobuf, CMsgKickFromParty { - public CMsgKickFromPartyImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong SteamId - { get => Accessor.GetUInt64("steam_id"); set => Accessor.SetUInt64("steam_id", value); } + public CMsgKickFromPartyImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public ulong SteamId + { get => Accessor.GetUInt64("steam_id"); set => Accessor.SetUInt64("steam_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgLANServerAvailableImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgLANServerAvailableImpl.cs index 7a0e1c0c0..ce73a4a2c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgLANServerAvailableImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgLANServerAvailableImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgLANServerAvailableImpl : TypedProtobuf, CMsgLANServerAvailable { - public CMsgLANServerAvailableImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong LobbyId - { get => Accessor.GetUInt64("lobby_id"); set => Accessor.SetUInt64("lobby_id", value); } + public CMsgLANServerAvailableImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public ulong LobbyId + { get => Accessor.GetUInt64("lobby_id"); set => Accessor.SetUInt64("lobby_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgLeavePartyImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgLeavePartyImpl.cs index 53fa2d067..8511c9b8f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgLeavePartyImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgLeavePartyImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,9 +8,8 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgLeavePartyImpl : TypedProtobuf, CMsgLeaveParty { - public CMsgLeavePartyImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - + public CMsgLeavePartyImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgLegacySource1ClientWelcomeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgLegacySource1ClientWelcomeImpl.cs index 1afdddc8a..25ecb4be0 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgLegacySource1ClientWelcomeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgLegacySource1ClientWelcomeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,52 +8,30 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgLegacySource1ClientWelcomeImpl : TypedProtobuf, CMsgLegacySource1ClientWelcome { - public CMsgLegacySource1ClientWelcomeImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Version - { get => Accessor.GetUInt32("version"); set => Accessor.SetUInt32("version", value); } - - - public byte[] GameData - { get => Accessor.GetBytes("game_data"); set => Accessor.SetBytes("game_data", value); } - - - public IProtobufRepeatedFieldSubMessageType OutofdateSubscribedCaches - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "outofdate_subscribed_caches"); } - - - public IProtobufRepeatedFieldSubMessageType UptodateSubscribedCaches - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "uptodate_subscribed_caches"); } - - - public CMsgLegacySource1ClientWelcome_Location Location - { get => new CMsgLegacySource1ClientWelcome_LocationImpl(NativeNetMessages.GetNestedMessage(Address, "location"), false); } - - - public byte[] GameData2 - { get => Accessor.GetBytes("game_data2"); set => Accessor.SetBytes("game_data2", value); } - - - public uint Rtime32GcWelcomeTimestamp - { get => Accessor.GetUInt32("rtime32_gc_welcome_timestamp"); set => Accessor.SetUInt32("rtime32_gc_welcome_timestamp", value); } - - - public uint Currency - { get => Accessor.GetUInt32("currency"); set => Accessor.SetUInt32("currency", value); } - - - public uint Balance - { get => Accessor.GetUInt32("balance"); set => Accessor.SetUInt32("balance", value); } - - - public string BalanceUrl - { get => Accessor.GetString("balance_url"); set => Accessor.SetString("balance_url", value); } - - - public string TxnCountryCode - { get => Accessor.GetString("txn_country_code"); set => Accessor.SetString("txn_country_code", value); } - -} + public CMsgLegacySource1ClientWelcomeImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Version + { get => Accessor.GetUInt32("version"); set => Accessor.SetUInt32("version", value); } + public byte[] GameData + { get => Accessor.GetBytes("game_data"); set => Accessor.SetBytes("game_data", value); } + public IProtobufRepeatedFieldSubMessageType OutofdateSubscribedCaches + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "outofdate_subscribed_caches"); } + public IProtobufRepeatedFieldSubMessageType UptodateSubscribedCaches + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "uptodate_subscribed_caches"); } + public CMsgLegacySource1ClientWelcome_Location Location + { get => new CMsgLegacySource1ClientWelcome_LocationImpl(NativeNetMessages.GetNestedMessage(Address, "location"), false); } + public byte[] GameData2 + { get => Accessor.GetBytes("game_data2"); set => Accessor.SetBytes("game_data2", value); } + public uint Rtime32GcWelcomeTimestamp + { get => Accessor.GetUInt32("rtime32_gc_welcome_timestamp"); set => Accessor.SetUInt32("rtime32_gc_welcome_timestamp", value); } + public uint Currency + { get => Accessor.GetUInt32("currency"); set => Accessor.SetUInt32("currency", value); } + public uint Balance + { get => Accessor.GetUInt32("balance"); set => Accessor.SetUInt32("balance", value); } + public string BalanceUrl + { get => Accessor.GetString("balance_url"); set => Accessor.SetString("balance_url", value); } + public string TxnCountryCode + { get => Accessor.GetString("txn_country_code"); set => Accessor.SetString("txn_country_code", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgLegacySource1ClientWelcome_LocationImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgLegacySource1ClientWelcome_LocationImpl.cs index 821a567d7..9b913600b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgLegacySource1ClientWelcome_LocationImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgLegacySource1ClientWelcome_LocationImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgLegacySource1ClientWelcome_LocationImpl : TypedProtobuf, CMsgLegacySource1ClientWelcome_Location { - public CMsgLegacySource1ClientWelcome_LocationImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public float Latitude - { get => Accessor.GetFloat("latitude"); set => Accessor.SetFloat("latitude", value); } - - - public float Longitude - { get => Accessor.GetFloat("longitude"); set => Accessor.SetFloat("longitude", value); } - - - public string Country - { get => Accessor.GetString("country"); set => Accessor.SetString("country", value); } - -} + public CMsgLegacySource1ClientWelcome_LocationImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public float Latitude + { get => Accessor.GetFloat("latitude"); set => Accessor.SetFloat("latitude", value); } + public float Longitude + { get => Accessor.GetFloat("longitude"); set => Accessor.SetFloat("longitude", value); } + public string Country + { get => Accessor.GetString("country"); set => Accessor.SetString("country", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgModifyItemAttributeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgModifyItemAttributeImpl.cs index e5abdb4f4..e09b8713e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgModifyItemAttributeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgModifyItemAttributeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgModifyItemAttributeImpl : TypedProtobuf, CMsgModifyItemAttribute { - public CMsgModifyItemAttributeImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong ItemId - { get => Accessor.GetUInt64("item_id"); set => Accessor.SetUInt64("item_id", value); } - - - public uint AttrDefidx - { get => Accessor.GetUInt32("attr_defidx"); set => Accessor.SetUInt32("attr_defidx", value); } - - - public uint AttrValue - { get => Accessor.GetUInt32("attr_value"); set => Accessor.SetUInt32("attr_value", value); } - -} + public CMsgModifyItemAttributeImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong ItemId + { get => Accessor.GetUInt64("item_id"); set => Accessor.SetUInt64("item_id", value); } + public uint AttrDefidx + { get => Accessor.GetUInt32("attr_defidx"); set => Accessor.SetUInt32("attr_defidx", value); } + public uint AttrValue + { get => Accessor.GetUInt32("attr_value"); set => Accessor.SetUInt32("attr_value", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgOpenCrateImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgOpenCrateImpl.cs index 8e3585d1c..a96ec1cb9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgOpenCrateImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgOpenCrateImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgOpenCrateImpl : TypedProtobuf, CMsgOpenCrate { - public CMsgOpenCrateImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong ToolItemId - { get => Accessor.GetUInt64("tool_item_id"); set => Accessor.SetUInt64("tool_item_id", value); } - - - public ulong SubjectItemId - { get => Accessor.GetUInt64("subject_item_id"); set => Accessor.SetUInt64("subject_item_id", value); } - - - public bool ForRental - { get => Accessor.GetBool("for_rental"); set => Accessor.SetBool("for_rental", value); } - - - public uint PointsRemaining - { get => Accessor.GetUInt32("points_remaining"); set => Accessor.SetUInt32("points_remaining", value); } - -} + public CMsgOpenCrateImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong ToolItemId + { get => Accessor.GetUInt64("tool_item_id"); set => Accessor.SetUInt64("tool_item_id", value); } + public ulong SubjectItemId + { get => Accessor.GetUInt64("subject_item_id"); set => Accessor.SetUInt64("subject_item_id", value); } + public bool ForRental + { get => Accessor.GetBool("for_rental"); set => Accessor.SetBool("for_rental", value); } + public uint PointsRemaining + { get => Accessor.GetUInt32("points_remaining"); set => Accessor.SetUInt32("points_remaining", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgPartyInviteResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgPartyInviteResponseImpl.cs index 4c453c3b9..ba4042fb5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgPartyInviteResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgPartyInviteResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgPartyInviteResponseImpl : TypedProtobuf, CMsgPartyInviteResponse { - public CMsgPartyInviteResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong PartyId - { get => Accessor.GetUInt64("party_id"); set => Accessor.SetUInt64("party_id", value); } - - - public bool Accept - { get => Accessor.GetBool("accept"); set => Accessor.SetBool("accept", value); } - - - public uint ClientVersion - { get => Accessor.GetUInt32("client_version"); set => Accessor.SetUInt32("client_version", value); } - - - public uint TeamInvite - { get => Accessor.GetUInt32("team_invite"); set => Accessor.SetUInt32("team_invite", value); } - -} + public CMsgPartyInviteResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong PartyId + { get => Accessor.GetUInt64("party_id"); set => Accessor.SetUInt64("party_id", value); } + public bool Accept + { get => Accessor.GetBool("accept"); set => Accessor.SetBool("accept", value); } + public uint ClientVersion + { get => Accessor.GetUInt32("client_version"); set => Accessor.SetUInt32("client_version", value); } + public uint TeamInvite + { get => Accessor.GetUInt32("team_invite"); set => Accessor.SetUInt32("team_invite", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgPlaceDecalEventImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgPlaceDecalEventImpl.cs index b56ba23db..7b457401c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgPlaceDecalEventImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgPlaceDecalEventImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,60 +8,34 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgPlaceDecalEventImpl : NetMessage, CMsgPlaceDecalEvent { - public CMsgPlaceDecalEventImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public Vector Position - { get => Accessor.GetVector("position"); set => Accessor.SetVector("position", value); } - - - public Vector Normal - { get => Accessor.GetVector("normal"); set => Accessor.SetVector("normal", value); } - - - public Vector Saxis - { get => Accessor.GetVector("saxis"); set => Accessor.SetVector("saxis", value); } - - - public int Boneindex - { get => Accessor.GetInt32("boneindex"); set => Accessor.SetInt32("boneindex", value); } - - - public int Triangleindex - { get => Accessor.GetInt32("triangleindex"); set => Accessor.SetInt32("triangleindex", value); } - - - public uint Flags - { get => Accessor.GetUInt32("flags"); set => Accessor.SetUInt32("flags", value); } - - - public uint Color - { get => Accessor.GetUInt32("color"); set => Accessor.SetUInt32("color", value); } - - - public int RandomSeed - { get => Accessor.GetInt32("random_seed"); set => Accessor.SetInt32("random_seed", value); } - - - public uint DecalGroupName - { get => Accessor.GetUInt32("decal_group_name"); set => Accessor.SetUInt32("decal_group_name", value); } - - - public float SizeOverride - { get => Accessor.GetFloat("size_override"); set => Accessor.SetFloat("size_override", value); } - - - public uint Entityhandle - { get => Accessor.GetUInt32("entityhandle"); set => Accessor.SetUInt32("entityhandle", value); } - - - public ulong MaterialId - { get => Accessor.GetUInt64("material_id"); set => Accessor.SetUInt64("material_id", value); } - - - public uint SequenceName - { get => Accessor.GetUInt32("sequence_name"); set => Accessor.SetUInt32("sequence_name", value); } - -} + public CMsgPlaceDecalEventImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public Vector Position + { get => Accessor.GetVector("position"); set => Accessor.SetVector("position", value); } + public Vector Normal + { get => Accessor.GetVector("normal"); set => Accessor.SetVector("normal", value); } + public Vector Saxis + { get => Accessor.GetVector("saxis"); set => Accessor.SetVector("saxis", value); } + public int Boneindex + { get => Accessor.GetInt32("boneindex"); set => Accessor.SetInt32("boneindex", value); } + public int Triangleindex + { get => Accessor.GetInt32("triangleindex"); set => Accessor.SetInt32("triangleindex", value); } + public uint Flags + { get => Accessor.GetUInt32("flags"); set => Accessor.SetUInt32("flags", value); } + public uint Color + { get => Accessor.GetUInt32("color"); set => Accessor.SetUInt32("color", value); } + public int RandomSeed + { get => Accessor.GetInt32("random_seed"); set => Accessor.SetInt32("random_seed", value); } + public uint DecalGroupName + { get => Accessor.GetUInt32("decal_group_name"); set => Accessor.SetUInt32("decal_group_name", value); } + public float SizeOverride + { get => Accessor.GetFloat("size_override"); set => Accessor.SetFloat("size_override", value); } + public uint Entityhandle + { get => Accessor.GetUInt32("entityhandle"); set => Accessor.SetUInt32("entityhandle", value); } + public ulong MaterialId + { get => Accessor.GetUInt64("material_id"); set => Accessor.SetUInt64("material_id", value); } + public uint SequenceName + { get => Accessor.GetUInt32("sequence_name"); set => Accessor.SetUInt32("sequence_name", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgPlayerBulletHitImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgPlayerBulletHitImpl.cs index f08f94236..95d6a4473 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgPlayerBulletHitImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgPlayerBulletHitImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,36 +8,22 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgPlayerBulletHitImpl : TypedProtobuf, CMsgPlayerBulletHit { - public CMsgPlayerBulletHitImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int AttackerSlot - { get => Accessor.GetInt32("attacker_slot"); set => Accessor.SetInt32("attacker_slot", value); } - - - public int VictimSlot - { get => Accessor.GetInt32("victim_slot"); set => Accessor.SetInt32("victim_slot", value); } - - - public Vector VictimPos - { get => Accessor.GetVector("victim_pos"); set => Accessor.SetVector("victim_pos", value); } - - - public int HitGroup - { get => Accessor.GetInt32("hit_group"); set => Accessor.SetInt32("hit_group", value); } - - - public int Damage - { get => Accessor.GetInt32("damage"); set => Accessor.SetInt32("damage", value); } - - - public int PenetrationCount - { get => Accessor.GetInt32("penetration_count"); set => Accessor.SetInt32("penetration_count", value); } - - - public bool IsKill - { get => Accessor.GetBool("is_kill"); set => Accessor.SetBool("is_kill", value); } - -} + public CMsgPlayerBulletHitImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int AttackerSlot + { get => Accessor.GetInt32("attacker_slot"); set => Accessor.SetInt32("attacker_slot", value); } + public int VictimSlot + { get => Accessor.GetInt32("victim_slot"); set => Accessor.SetInt32("victim_slot", value); } + public Vector VictimPos + { get => Accessor.GetVector("victim_pos"); set => Accessor.SetVector("victim_pos", value); } + public int HitGroup + { get => Accessor.GetInt32("hit_group"); set => Accessor.SetInt32("hit_group", value); } + public int Damage + { get => Accessor.GetInt32("damage"); set => Accessor.SetInt32("damage", value); } + public int PenetrationCount + { get => Accessor.GetInt32("penetration_count"); set => Accessor.SetInt32("penetration_count", value); } + public bool IsKill + { get => Accessor.GetBool("is_kill"); set => Accessor.SetBool("is_kill", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgPlayerInfoImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgPlayerInfoImpl.cs index e7ab77d6a..de99a59b1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgPlayerInfoImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgPlayerInfoImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,32 +8,20 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgPlayerInfoImpl : TypedProtobuf, CMsgPlayerInfo { - public CMsgPlayerInfoImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string Name - { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } - - - public ulong Xuid - { get => Accessor.GetUInt64("xuid"); set => Accessor.SetUInt64("xuid", value); } - - - public int Userid - { get => Accessor.GetInt32("userid"); set => Accessor.SetInt32("userid", value); } - - - public ulong Steamid - { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } - - - public bool Fakeplayer - { get => Accessor.GetBool("fakeplayer"); set => Accessor.SetBool("fakeplayer", value); } - - - public bool Ishltv - { get => Accessor.GetBool("ishltv"); set => Accessor.SetBool("ishltv", value); } - -} + public CMsgPlayerInfoImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string Name + { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } + public ulong Xuid + { get => Accessor.GetUInt64("xuid"); set => Accessor.SetUInt64("xuid", value); } + public int Userid + { get => Accessor.GetInt32("userid"); set => Accessor.SetInt32("userid", value); } + public ulong Steamid + { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } + public bool Fakeplayer + { get => Accessor.GetBool("fakeplayer"); set => Accessor.SetBool("fakeplayer", value); } + public bool Ishltv + { get => Accessor.GetBool("ishltv"); set => Accessor.SetBool("ishltv", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgProtoBufHeaderImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgProtoBufHeaderImpl.cs new file mode 100644 index 000000000..f6926cfbe --- /dev/null +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgProtoBufHeaderImpl.cs @@ -0,0 +1,37 @@ +using SwiftlyS2.Core.Natives; +using SwiftlyS2.Core.NetMessages; +using SwiftlyS2.Shared.Natives; +using SwiftlyS2.Shared.NetMessages; +using SwiftlyS2.Shared.ProtobufDefinitions; + +namespace SwiftlyS2.Core.ProtobufDefinitions; + +internal class CMsgProtoBufHeaderImpl : TypedProtobuf, CMsgProtoBufHeader +{ + public CMsgProtoBufHeaderImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong ClientSteamId + { get => Accessor.GetUInt64("client_steam_id"); set => Accessor.SetUInt64("client_steam_id", value); } + public int ClientSessionId + { get => Accessor.GetInt32("client_session_id"); set => Accessor.SetInt32("client_session_id", value); } + public uint SourceAppId + { get => Accessor.GetUInt32("source_app_id"); set => Accessor.SetUInt32("source_app_id", value); } + public ulong JobIdSource + { get => Accessor.GetUInt64("job_id_source"); set => Accessor.SetUInt64("job_id_source", value); } + public ulong JobIdTarget + { get => Accessor.GetUInt64("job_id_target"); set => Accessor.SetUInt64("job_id_target", value); } + public string TargetJobName + { get => Accessor.GetString("target_job_name"); set => Accessor.SetString("target_job_name", value); } + public int Eresult + { get => Accessor.GetInt32("eresult"); set => Accessor.SetInt32("eresult", value); } + public string ErrorMessage + { get => Accessor.GetString("error_message"); set => Accessor.SetString("error_message", value); } + public uint Ip + { get => Accessor.GetUInt32("ip"); set => Accessor.SetUInt32("ip", value); } + public GCProtoBufMsgSrc GcMsgSrc + { get => (GCProtoBufMsgSrc)Accessor.GetInt32("gc_msg_src"); set => Accessor.SetInt32("gc_msg_src", (int)value); } + public uint GcDirIndexSource + { get => Accessor.GetUInt32("gc_dir_index_source"); set => Accessor.SetUInt32("gc_dir_index_source", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgQAngleImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgQAngleImpl.cs index 04ba4efef..e00c4d071 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgQAngleImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgQAngleImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgQAngleImpl : TypedProtobuf, CMsgQAngle { - public CMsgQAngleImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public float X - { get => Accessor.GetFloat("x"); set => Accessor.SetFloat("x", value); } - - - public float Y - { get => Accessor.GetFloat("y"); set => Accessor.SetFloat("y", value); } - - - public float Z - { get => Accessor.GetFloat("z"); set => Accessor.SetFloat("z", value); } - -} + public CMsgQAngleImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public float X + { get => Accessor.GetFloat("x"); set => Accessor.SetFloat("x", value); } + public float Y + { get => Accessor.GetFloat("y"); set => Accessor.SetFloat("y", value); } + public float Z + { get => Accessor.GetFloat("z"); set => Accessor.SetFloat("z", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgQuaternionImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgQuaternionImpl.cs index 93234ba78..dffb64c5d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgQuaternionImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgQuaternionImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgQuaternionImpl : TypedProtobuf, CMsgQuaternion { - public CMsgQuaternionImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public float X - { get => Accessor.GetFloat("x"); set => Accessor.SetFloat("x", value); } - - - public float Y - { get => Accessor.GetFloat("y"); set => Accessor.SetFloat("y", value); } - - - public float Z - { get => Accessor.GetFloat("z"); set => Accessor.SetFloat("z", value); } - - - public float W - { get => Accessor.GetFloat("w"); set => Accessor.SetFloat("w", value); } - -} + public CMsgQuaternionImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public float X + { get => Accessor.GetFloat("x"); set => Accessor.SetFloat("x", value); } + public float Y + { get => Accessor.GetFloat("y"); set => Accessor.SetFloat("y", value); } + public float Z + { get => Accessor.GetFloat("z"); set => Accessor.SetFloat("z", value); } + public float W + { get => Accessor.GetFloat("w"); set => Accessor.SetFloat("w", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgRGBAImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgRGBAImpl.cs index 4e44dbdab..f8a047f48 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgRGBAImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgRGBAImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgRGBAImpl : TypedProtobuf, CMsgRGBA { - public CMsgRGBAImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int R - { get => Accessor.GetInt32("r"); set => Accessor.SetInt32("r", value); } - - - public int G - { get => Accessor.GetInt32("g"); set => Accessor.SetInt32("g", value); } - - - public int B - { get => Accessor.GetInt32("b"); set => Accessor.SetInt32("b", value); } - - - public int A - { get => Accessor.GetInt32("a"); set => Accessor.SetInt32("a", value); } - -} + public CMsgRGBAImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int R + { get => Accessor.GetInt32("r"); set => Accessor.SetInt32("r", value); } + public int G + { get => Accessor.GetInt32("g"); set => Accessor.SetInt32("g", value); } + public int B + { get => Accessor.GetInt32("b"); set => Accessor.SetInt32("b", value); } + public int A + { get => Accessor.GetInt32("a"); set => Accessor.SetInt32("a", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgRecurringMissionSchemaImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgRecurringMissionSchemaImpl.cs index 5900f2367..3ea801190 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgRecurringMissionSchemaImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgRecurringMissionSchemaImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgRecurringMissionSchemaImpl : TypedProtobuf, CMsgRecurringMissionSchema { - public CMsgRecurringMissionSchemaImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldSubMessageType Missions - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "missions"); } + public CMsgRecurringMissionSchemaImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public IProtobufRepeatedFieldSubMessageType Missions + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "missions"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgRecurringMissionSchema_MissionTemplateListImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgRecurringMissionSchema_MissionTemplateListImpl.cs index a820166b5..f36202c84 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgRecurringMissionSchema_MissionTemplateListImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgRecurringMissionSchema_MissionTemplateListImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgRecurringMissionSchema_MissionTemplateListImpl : TypedProtobuf, CMsgRecurringMissionSchema_MissionTemplateList { - public CMsgRecurringMissionSchema_MissionTemplateListImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Period - { get => Accessor.GetUInt32("period"); set => Accessor.SetUInt32("period", value); } - - - public IProtobufRepeatedFieldValueType MissionTemplates - { get => new ProtobufRepeatedFieldValueType(Accessor, "mission_templates"); } - -} + public CMsgRecurringMissionSchema_MissionTemplateListImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Period + { get => Accessor.GetUInt32("period"); set => Accessor.SetUInt32("period", value); } + public IProtobufRepeatedFieldValueType MissionTemplates + { get => new ProtobufRepeatedFieldValueType(Accessor, "mission_templates"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgReplayUploadedToYouTubeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgReplayUploadedToYouTubeImpl.cs index 6dffc7586..65cfd9bfb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgReplayUploadedToYouTubeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgReplayUploadedToYouTubeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgReplayUploadedToYouTubeImpl : TypedProtobuf, CMsgReplayUploadedToYouTube { - public CMsgReplayUploadedToYouTubeImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string YoutubeUrl - { get => Accessor.GetString("youtube_url"); set => Accessor.SetString("youtube_url", value); } - - - public string YoutubeAccountName - { get => Accessor.GetString("youtube_account_name"); set => Accessor.SetString("youtube_account_name", value); } - - - public ulong SessionId - { get => Accessor.GetUInt64("session_id"); set => Accessor.SetUInt64("session_id", value); } - -} + public CMsgReplayUploadedToYouTubeImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string YoutubeUrl + { get => Accessor.GetString("youtube_url"); set => Accessor.SetString("youtube_url", value); } + public string YoutubeAccountName + { get => Accessor.GetString("youtube_account_name"); set => Accessor.SetString("youtube_account_name", value); } + public ulong SessionId + { get => Accessor.GetUInt64("session_id"); set => Accessor.SetUInt64("session_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgReplicateConVarsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgReplicateConVarsImpl.cs index 6cf942ea9..5c34f5ab7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgReplicateConVarsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgReplicateConVarsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgReplicateConVarsImpl : TypedProtobuf, CMsgReplicateConVars { - public CMsgReplicateConVarsImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldSubMessageType Convars - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "convars"); } + public CMsgReplicateConVarsImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public IProtobufRepeatedFieldSubMessageType Convars + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "convars"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgRequestInventoryRefreshImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgRequestInventoryRefreshImpl.cs index 831d6c71a..46378177d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgRequestInventoryRefreshImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgRequestInventoryRefreshImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,9 +8,8 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgRequestInventoryRefreshImpl : TypedProtobuf, CMsgRequestInventoryRefresh { - public CMsgRequestInventoryRefreshImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - + public CMsgRequestInventoryRefreshImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgRequestRecurringMissionScheduleImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgRequestRecurringMissionScheduleImpl.cs index a9b5c1174..417be145f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgRequestRecurringMissionScheduleImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgRequestRecurringMissionScheduleImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,9 +8,8 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgRequestRecurringMissionScheduleImpl : TypedProtobuf, CMsgRequestRecurringMissionSchedule { - public CMsgRequestRecurringMissionScheduleImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - + public CMsgRequestRecurringMissionScheduleImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSDONoMemcachedImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSDONoMemcachedImpl.cs index 6516c414a..d5a3600e1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSDONoMemcachedImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSDONoMemcachedImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,9 +8,8 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSDONoMemcachedImpl : TypedProtobuf, CMsgSDONoMemcached { - public CMsgSDONoMemcachedImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - + public CMsgSDONoMemcachedImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOCacheHaveVersionImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOCacheHaveVersionImpl.cs index b292316e5..eb92382ed 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOCacheHaveVersionImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOCacheHaveVersionImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSOCacheHaveVersionImpl : TypedProtobuf, CMsgSOCacheHaveVersion { - public CMsgSOCacheHaveVersionImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public CMsgSOIDOwner Soid - { get => new CMsgSOIDOwnerImpl(NativeNetMessages.GetNestedMessage(Address, "soid"), false); } - - - public ulong Version - { get => Accessor.GetUInt64("version"); set => Accessor.SetUInt64("version", value); } - -} + public CMsgSOCacheHaveVersionImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public CMsgSOIDOwner Soid + { get => new CMsgSOIDOwnerImpl(NativeNetMessages.GetNestedMessage(Address, "soid"), false); } + public ulong Version + { get => Accessor.GetUInt64("version"); set => Accessor.SetUInt64("version", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOCacheSubscribedImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOCacheSubscribedImpl.cs index 866a1e72f..78e658c3e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOCacheSubscribedImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOCacheSubscribedImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSOCacheSubscribedImpl : TypedProtobuf, CMsgSOCacheSubscribed { - public CMsgSOCacheSubscribedImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldSubMessageType Objects - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "objects"); } - - - public ulong Version - { get => Accessor.GetUInt64("version"); set => Accessor.SetUInt64("version", value); } - - - public CMsgSOIDOwner OwnerSoid - { get => new CMsgSOIDOwnerImpl(NativeNetMessages.GetNestedMessage(Address, "owner_soid"), false); } - -} + public CMsgSOCacheSubscribedImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public IProtobufRepeatedFieldSubMessageType Objects + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "objects"); } + public ulong Version + { get => Accessor.GetUInt64("version"); set => Accessor.SetUInt64("version", value); } + public CMsgSOIDOwner OwnerSoid + { get => new CMsgSOIDOwnerImpl(NativeNetMessages.GetNestedMessage(Address, "owner_soid"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOCacheSubscribed_SubscribedTypeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOCacheSubscribed_SubscribedTypeImpl.cs index e1ae1ef24..04ddcf34e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOCacheSubscribed_SubscribedTypeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOCacheSubscribed_SubscribedTypeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSOCacheSubscribed_SubscribedTypeImpl : TypedProtobuf, CMsgSOCacheSubscribed_SubscribedType { - public CMsgSOCacheSubscribed_SubscribedTypeImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int TypeId - { get => Accessor.GetInt32("type_id"); set => Accessor.SetInt32("type_id", value); } - - - public IProtobufRepeatedFieldValueType ObjectData - { get => new ProtobufRepeatedFieldValueType(Accessor, "object_data"); } - -} + public CMsgSOCacheSubscribed_SubscribedTypeImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int TypeId + { get => Accessor.GetInt32("type_id"); set => Accessor.SetInt32("type_id", value); } + public IProtobufRepeatedFieldValueType ObjectData + { get => new ProtobufRepeatedFieldValueType(Accessor, "object_data"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOCacheSubscriptionCheckImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOCacheSubscriptionCheckImpl.cs index 4316b1948..b60991ea8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOCacheSubscriptionCheckImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOCacheSubscriptionCheckImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSOCacheSubscriptionCheckImpl : TypedProtobuf, CMsgSOCacheSubscriptionCheck { - public CMsgSOCacheSubscriptionCheckImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Version - { get => Accessor.GetUInt64("version"); set => Accessor.SetUInt64("version", value); } - - - public CMsgSOIDOwner OwnerSoid - { get => new CMsgSOIDOwnerImpl(NativeNetMessages.GetNestedMessage(Address, "owner_soid"), false); } - -} + public CMsgSOCacheSubscriptionCheckImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong Version + { get => Accessor.GetUInt64("version"); set => Accessor.SetUInt64("version", value); } + public CMsgSOIDOwner OwnerSoid + { get => new CMsgSOIDOwnerImpl(NativeNetMessages.GetNestedMessage(Address, "owner_soid"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOCacheSubscriptionRefreshImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOCacheSubscriptionRefreshImpl.cs index ad35061eb..58fa6b7b7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOCacheSubscriptionRefreshImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOCacheSubscriptionRefreshImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSOCacheSubscriptionRefreshImpl : TypedProtobuf, CMsgSOCacheSubscriptionRefresh { - public CMsgSOCacheSubscriptionRefreshImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public CMsgSOIDOwner OwnerSoid - { get => new CMsgSOIDOwnerImpl(NativeNetMessages.GetNestedMessage(Address, "owner_soid"), false); } + public CMsgSOCacheSubscriptionRefreshImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public CMsgSOIDOwner OwnerSoid + { get => new CMsgSOIDOwnerImpl(NativeNetMessages.GetNestedMessage(Address, "owner_soid"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOCacheUnsubscribedImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOCacheUnsubscribedImpl.cs index 2bfb90d15..77675b117 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOCacheUnsubscribedImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOCacheUnsubscribedImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSOCacheUnsubscribedImpl : TypedProtobuf, CMsgSOCacheUnsubscribed { - public CMsgSOCacheUnsubscribedImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public CMsgSOIDOwner OwnerSoid - { get => new CMsgSOIDOwnerImpl(NativeNetMessages.GetNestedMessage(Address, "owner_soid"), false); } + public CMsgSOCacheUnsubscribedImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public CMsgSOIDOwner OwnerSoid + { get => new CMsgSOIDOwnerImpl(NativeNetMessages.GetNestedMessage(Address, "owner_soid"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOCacheVersionImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOCacheVersionImpl.cs index 677a01679..76a7668aa 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOCacheVersionImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOCacheVersionImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSOCacheVersionImpl : TypedProtobuf, CMsgSOCacheVersion { - public CMsgSOCacheVersionImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Version - { get => Accessor.GetUInt64("version"); set => Accessor.SetUInt64("version", value); } + public CMsgSOCacheVersionImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public ulong Version + { get => Accessor.GetUInt64("version"); set => Accessor.SetUInt64("version", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOIDOwnerImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOIDOwnerImpl.cs index 66285b336..7c18e2a8d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOIDOwnerImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOIDOwnerImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSOIDOwnerImpl : TypedProtobuf, CMsgSOIDOwner { - public CMsgSOIDOwnerImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Type - { get => Accessor.GetUInt32("type"); set => Accessor.SetUInt32("type", value); } - - - public ulong Id - { get => Accessor.GetUInt64("id"); set => Accessor.SetUInt64("id", value); } - -} + public CMsgSOIDOwnerImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Type + { get => Accessor.GetUInt32("type"); set => Accessor.SetUInt32("type", value); } + public ulong Id + { get => Accessor.GetUInt64("id"); set => Accessor.SetUInt64("id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOMultipleObjectsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOMultipleObjectsImpl.cs index 61fd51465..f8d49fd29 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOMultipleObjectsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOMultipleObjectsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSOMultipleObjectsImpl : TypedProtobuf, CMsgSOMultipleObjects { - public CMsgSOMultipleObjectsImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldSubMessageType ObjectsModified - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "objects_modified"); } - - - public ulong Version - { get => Accessor.GetUInt64("version"); set => Accessor.SetUInt64("version", value); } - - - public CMsgSOIDOwner OwnerSoid - { get => new CMsgSOIDOwnerImpl(NativeNetMessages.GetNestedMessage(Address, "owner_soid"), false); } - -} + public CMsgSOMultipleObjectsImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public IProtobufRepeatedFieldSubMessageType ObjectsModified + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "objects_modified"); } + public ulong Version + { get => Accessor.GetUInt64("version"); set => Accessor.SetUInt64("version", value); } + public CMsgSOIDOwner OwnerSoid + { get => new CMsgSOIDOwnerImpl(NativeNetMessages.GetNestedMessage(Address, "owner_soid"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOMultipleObjects_SingleObjectImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOMultipleObjects_SingleObjectImpl.cs index e0a696a7f..1f7c18b6c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOMultipleObjects_SingleObjectImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOMultipleObjects_SingleObjectImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSOMultipleObjects_SingleObjectImpl : TypedProtobuf, CMsgSOMultipleObjects_SingleObject { - public CMsgSOMultipleObjects_SingleObjectImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int TypeId - { get => Accessor.GetInt32("type_id"); set => Accessor.SetInt32("type_id", value); } - - - public byte[] ObjectData - { get => Accessor.GetBytes("object_data"); set => Accessor.SetBytes("object_data", value); } - -} + public CMsgSOMultipleObjects_SingleObjectImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int TypeId + { get => Accessor.GetInt32("type_id"); set => Accessor.SetInt32("type_id", value); } + public byte[] ObjectData + { get => Accessor.GetBytes("object_data"); set => Accessor.SetBytes("object_data", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOSingleObjectImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOSingleObjectImpl.cs index a96bab8f4..a1fc7fe53 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOSingleObjectImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSOSingleObjectImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSOSingleObjectImpl : TypedProtobuf, CMsgSOSingleObject { - public CMsgSOSingleObjectImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int TypeId - { get => Accessor.GetInt32("type_id"); set => Accessor.SetInt32("type_id", value); } - - - public byte[] ObjectData - { get => Accessor.GetBytes("object_data"); set => Accessor.SetBytes("object_data", value); } - - - public ulong Version - { get => Accessor.GetUInt64("version"); set => Accessor.SetUInt64("version", value); } - - - public CMsgSOIDOwner OwnerSoid - { get => new CMsgSOIDOwnerImpl(NativeNetMessages.GetNestedMessage(Address, "owner_soid"), false); } - -} + public CMsgSOSingleObjectImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int TypeId + { get => Accessor.GetInt32("type_id"); set => Accessor.SetInt32("type_id", value); } + public byte[] ObjectData + { get => Accessor.GetBytes("object_data"); set => Accessor.SetBytes("object_data", value); } + public ulong Version + { get => Accessor.GetUInt64("version"); set => Accessor.SetUInt64("version", value); } + public CMsgSOIDOwner OwnerSoid + { get => new CMsgSOIDOwnerImpl(NativeNetMessages.GetNestedMessage(Address, "owner_soid"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSerializedSOCacheImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSerializedSOCacheImpl.cs index 73da0fb7a..d8c62a0ce 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSerializedSOCacheImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSerializedSOCacheImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSerializedSOCacheImpl : TypedProtobuf, CMsgSerializedSOCache { - public CMsgSerializedSOCacheImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint FileVersion - { get => Accessor.GetUInt32("file_version"); set => Accessor.SetUInt32("file_version", value); } - - - public IProtobufRepeatedFieldSubMessageType Caches - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "caches"); } - - - public uint GcSocacheFileVersion - { get => Accessor.GetUInt32("gc_socache_file_version"); set => Accessor.SetUInt32("gc_socache_file_version", value); } - -} + public CMsgSerializedSOCacheImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint FileVersion + { get => Accessor.GetUInt32("file_version"); set => Accessor.SetUInt32("file_version", value); } + public IProtobufRepeatedFieldSubMessageType Caches + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "caches"); } + public uint GcSocacheFileVersion + { get => Accessor.GetUInt32("gc_socache_file_version"); set => Accessor.SetUInt32("gc_socache_file_version", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSerializedSOCache_CacheImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSerializedSOCache_CacheImpl.cs index c012ac52e..c9688eb2b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSerializedSOCache_CacheImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSerializedSOCache_CacheImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSerializedSOCache_CacheImpl : TypedProtobuf, CMsgSerializedSOCache_Cache { - public CMsgSerializedSOCache_CacheImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Type - { get => Accessor.GetUInt32("type"); set => Accessor.SetUInt32("type", value); } - - - public ulong Id - { get => Accessor.GetUInt64("id"); set => Accessor.SetUInt64("id", value); } - - - public IProtobufRepeatedFieldSubMessageType Versions - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "versions"); } - - - public IProtobufRepeatedFieldSubMessageType TypeCaches - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "type_caches"); } - -} + public CMsgSerializedSOCache_CacheImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Type + { get => Accessor.GetUInt32("type"); set => Accessor.SetUInt32("type", value); } + public ulong Id + { get => Accessor.GetUInt64("id"); set => Accessor.SetUInt64("id", value); } + public IProtobufRepeatedFieldSubMessageType Versions + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "versions"); } + public IProtobufRepeatedFieldSubMessageType TypeCaches + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "type_caches"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSerializedSOCache_Cache_VersionImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSerializedSOCache_Cache_VersionImpl.cs index 141e65a1b..c5810a5be 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSerializedSOCache_Cache_VersionImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSerializedSOCache_Cache_VersionImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSerializedSOCache_Cache_VersionImpl : TypedProtobuf, CMsgSerializedSOCache_Cache_Version { - public CMsgSerializedSOCache_Cache_VersionImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Service - { get => Accessor.GetUInt32("service"); set => Accessor.SetUInt32("service", value); } - - - public ulong Version - { get => Accessor.GetUInt64("version"); set => Accessor.SetUInt64("version", value); } - -} + public CMsgSerializedSOCache_Cache_VersionImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Service + { get => Accessor.GetUInt32("service"); set => Accessor.SetUInt32("service", value); } + public ulong Version + { get => Accessor.GetUInt64("version"); set => Accessor.SetUInt64("version", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSerializedSOCache_TypeCacheImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSerializedSOCache_TypeCacheImpl.cs index e3faefbf7..d7ad2bd06 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSerializedSOCache_TypeCacheImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSerializedSOCache_TypeCacheImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSerializedSOCache_TypeCacheImpl : TypedProtobuf, CMsgSerializedSOCache_TypeCache { - public CMsgSerializedSOCache_TypeCacheImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Type - { get => Accessor.GetUInt32("type"); set => Accessor.SetUInt32("type", value); } - - - public IProtobufRepeatedFieldValueType Objects - { get => new ProtobufRepeatedFieldValueType(Accessor, "objects"); } - - - public uint ServiceId - { get => Accessor.GetUInt32("service_id"); set => Accessor.SetUInt32("service_id", value); } - -} + public CMsgSerializedSOCache_TypeCacheImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Type + { get => Accessor.GetUInt32("type"); set => Accessor.SetUInt32("type", value); } + public IProtobufRepeatedFieldValueType Objects + { get => new ProtobufRepeatedFieldValueType(Accessor, "objects"); } + public uint ServiceId + { get => Accessor.GetUInt32("service_id"); set => Accessor.SetUInt32("service_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgServerAvailableImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgServerAvailableImpl.cs index e028ea5c8..25a1ae5de 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgServerAvailableImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgServerAvailableImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,9 +8,8 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgServerAvailableImpl : TypedProtobuf, CMsgServerAvailable { - public CMsgServerAvailableImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - + public CMsgServerAvailableImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgServerHelloImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgServerHelloImpl.cs index 285ab515d..9b54e72c7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgServerHelloImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgServerHelloImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,40 +8,24 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgServerHelloImpl : TypedProtobuf, CMsgServerHello { - public CMsgServerHelloImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Version - { get => Accessor.GetUInt32("version"); set => Accessor.SetUInt32("version", value); } - - - public IProtobufRepeatedFieldSubMessageType SocacheHaveVersions - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "socache_have_versions"); } - - - public uint LegacyClientSessionNeed - { get => Accessor.GetUInt32("legacy_client_session_need"); set => Accessor.SetUInt32("legacy_client_session_need", value); } - - - public uint ClientLauncher - { get => Accessor.GetUInt32("client_launcher"); set => Accessor.SetUInt32("client_launcher", value); } - - - public byte[] LegacySteamdatagramRouting - { get => Accessor.GetBytes("legacy_steamdatagram_routing"); set => Accessor.SetBytes("legacy_steamdatagram_routing", value); } - - - public uint RequiredInternalAddr - { get => Accessor.GetUInt32("required_internal_addr"); set => Accessor.SetUInt32("required_internal_addr", value); } - - - public byte[] SteamdatagramLogin - { get => Accessor.GetBytes("steamdatagram_login"); set => Accessor.SetBytes("steamdatagram_login", value); } - - - public uint SocacheControl - { get => Accessor.GetUInt32("socache_control"); set => Accessor.SetUInt32("socache_control", value); } - -} + public CMsgServerHelloImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Version + { get => Accessor.GetUInt32("version"); set => Accessor.SetUInt32("version", value); } + public IProtobufRepeatedFieldSubMessageType SocacheHaveVersions + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "socache_have_versions"); } + public uint LegacyClientSessionNeed + { get => Accessor.GetUInt32("legacy_client_session_need"); set => Accessor.SetUInt32("legacy_client_session_need", value); } + public uint ClientLauncher + { get => Accessor.GetUInt32("client_launcher"); set => Accessor.SetUInt32("client_launcher", value); } + public byte[] LegacySteamdatagramRouting + { get => Accessor.GetBytes("legacy_steamdatagram_routing"); set => Accessor.SetBytes("legacy_steamdatagram_routing", value); } + public uint RequiredInternalAddr + { get => Accessor.GetUInt32("required_internal_addr"); set => Accessor.SetUInt32("required_internal_addr", value); } + public byte[] SteamdatagramLogin + { get => Accessor.GetBytes("steamdatagram_login"); set => Accessor.SetBytes("steamdatagram_login", value); } + public uint SocacheControl + { get => Accessor.GetUInt32("socache_control"); set => Accessor.SetUInt32("socache_control", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgServerNetworkStatsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgServerNetworkStatsImpl.cs index 0972c5584..b7d8b4f19 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgServerNetworkStatsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgServerNetworkStatsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,108 +8,58 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgServerNetworkStatsImpl : TypedProtobuf, CMsgServerNetworkStats { - public CMsgServerNetworkStatsImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public bool Dedicated - { get => Accessor.GetBool("dedicated"); set => Accessor.SetBool("dedicated", value); } - - - public int CpuUsage - { get => Accessor.GetInt32("cpu_usage"); set => Accessor.SetInt32("cpu_usage", value); } - - - public int MemoryUsedMb - { get => Accessor.GetInt32("memory_used_mb"); set => Accessor.SetInt32("memory_used_mb", value); } - - - public int MemoryFreeMb - { get => Accessor.GetInt32("memory_free_mb"); set => Accessor.SetInt32("memory_free_mb", value); } - - - public int Uptime - { get => Accessor.GetInt32("uptime"); set => Accessor.SetInt32("uptime", value); } - - - public int SpawnCount - { get => Accessor.GetInt32("spawn_count"); set => Accessor.SetInt32("spawn_count", value); } - - - public int NumClients - { get => Accessor.GetInt32("num_clients"); set => Accessor.SetInt32("num_clients", value); } - - - public int NumBots - { get => Accessor.GetInt32("num_bots"); set => Accessor.SetInt32("num_bots", value); } - - - public int NumSpectators - { get => Accessor.GetInt32("num_spectators"); set => Accessor.SetInt32("num_spectators", value); } - - - public int NumTvRelays - { get => Accessor.GetInt32("num_tv_relays"); set => Accessor.SetInt32("num_tv_relays", value); } - - - public float Fps - { get => Accessor.GetFloat("fps"); set => Accessor.SetFloat("fps", value); } - - - public IProtobufRepeatedFieldSubMessageType Ports - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "ports"); } - - - public float AvgPingMs - { get => Accessor.GetFloat("avg_ping_ms"); set => Accessor.SetFloat("avg_ping_ms", value); } - - - public float AvgEngineLatencyOut - { get => Accessor.GetFloat("avg_engine_latency_out"); set => Accessor.SetFloat("avg_engine_latency_out", value); } - - - public float AvgPacketsOut - { get => Accessor.GetFloat("avg_packets_out"); set => Accessor.SetFloat("avg_packets_out", value); } - - - public float AvgPacketsIn - { get => Accessor.GetFloat("avg_packets_in"); set => Accessor.SetFloat("avg_packets_in", value); } - - - public float AvgLossOut - { get => Accessor.GetFloat("avg_loss_out"); set => Accessor.SetFloat("avg_loss_out", value); } - - - public float AvgLossIn - { get => Accessor.GetFloat("avg_loss_in"); set => Accessor.SetFloat("avg_loss_in", value); } - - - public float AvgDataOut - { get => Accessor.GetFloat("avg_data_out"); set => Accessor.SetFloat("avg_data_out", value); } - - - public float AvgDataIn - { get => Accessor.GetFloat("avg_data_in"); set => Accessor.SetFloat("avg_data_in", value); } - - - public ulong TotalDataIn - { get => Accessor.GetUInt64("total_data_in"); set => Accessor.SetUInt64("total_data_in", value); } - - - public ulong TotalPacketsIn - { get => Accessor.GetUInt64("total_packets_in"); set => Accessor.SetUInt64("total_packets_in", value); } - - - public ulong TotalDataOut - { get => Accessor.GetUInt64("total_data_out"); set => Accessor.SetUInt64("total_data_out", value); } - - - public ulong TotalPacketsOut - { get => Accessor.GetUInt64("total_packets_out"); set => Accessor.SetUInt64("total_packets_out", value); } - - - public IProtobufRepeatedFieldSubMessageType Players - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "players"); } - -} + public CMsgServerNetworkStatsImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public bool Dedicated + { get => Accessor.GetBool("dedicated"); set => Accessor.SetBool("dedicated", value); } + public int CpuUsage + { get => Accessor.GetInt32("cpu_usage"); set => Accessor.SetInt32("cpu_usage", value); } + public int MemoryUsedMb + { get => Accessor.GetInt32("memory_used_mb"); set => Accessor.SetInt32("memory_used_mb", value); } + public int MemoryFreeMb + { get => Accessor.GetInt32("memory_free_mb"); set => Accessor.SetInt32("memory_free_mb", value); } + public int Uptime + { get => Accessor.GetInt32("uptime"); set => Accessor.SetInt32("uptime", value); } + public int SpawnCount + { get => Accessor.GetInt32("spawn_count"); set => Accessor.SetInt32("spawn_count", value); } + public int NumClients + { get => Accessor.GetInt32("num_clients"); set => Accessor.SetInt32("num_clients", value); } + public int NumBots + { get => Accessor.GetInt32("num_bots"); set => Accessor.SetInt32("num_bots", value); } + public int NumSpectators + { get => Accessor.GetInt32("num_spectators"); set => Accessor.SetInt32("num_spectators", value); } + public int NumTvRelays + { get => Accessor.GetInt32("num_tv_relays"); set => Accessor.SetInt32("num_tv_relays", value); } + public float Fps + { get => Accessor.GetFloat("fps"); set => Accessor.SetFloat("fps", value); } + public IProtobufRepeatedFieldSubMessageType Ports + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "ports"); } + public float AvgPingMs + { get => Accessor.GetFloat("avg_ping_ms"); set => Accessor.SetFloat("avg_ping_ms", value); } + public float AvgEngineLatencyOut + { get => Accessor.GetFloat("avg_engine_latency_out"); set => Accessor.SetFloat("avg_engine_latency_out", value); } + public float AvgPacketsOut + { get => Accessor.GetFloat("avg_packets_out"); set => Accessor.SetFloat("avg_packets_out", value); } + public float AvgPacketsIn + { get => Accessor.GetFloat("avg_packets_in"); set => Accessor.SetFloat("avg_packets_in", value); } + public float AvgLossOut + { get => Accessor.GetFloat("avg_loss_out"); set => Accessor.SetFloat("avg_loss_out", value); } + public float AvgLossIn + { get => Accessor.GetFloat("avg_loss_in"); set => Accessor.SetFloat("avg_loss_in", value); } + public float AvgDataOut + { get => Accessor.GetFloat("avg_data_out"); set => Accessor.SetFloat("avg_data_out", value); } + public float AvgDataIn + { get => Accessor.GetFloat("avg_data_in"); set => Accessor.SetFloat("avg_data_in", value); } + public ulong TotalDataIn + { get => Accessor.GetUInt64("total_data_in"); set => Accessor.SetUInt64("total_data_in", value); } + public ulong TotalPacketsIn + { get => Accessor.GetUInt64("total_packets_in"); set => Accessor.SetUInt64("total_packets_in", value); } + public ulong TotalDataOut + { get => Accessor.GetUInt64("total_data_out"); set => Accessor.SetUInt64("total_data_out", value); } + public ulong TotalPacketsOut + { get => Accessor.GetUInt64("total_packets_out"); set => Accessor.SetUInt64("total_packets_out", value); } + public IProtobufRepeatedFieldSubMessageType Players + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "players"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgServerNetworkStats_PlayerImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgServerNetworkStats_PlayerImpl.cs index cf53a193f..0fe3a49eb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgServerNetworkStats_PlayerImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgServerNetworkStats_PlayerImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,40 +8,24 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgServerNetworkStats_PlayerImpl : TypedProtobuf, CMsgServerNetworkStats_Player { - public CMsgServerNetworkStats_PlayerImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Steamid - { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } - - - public string RemoteAddr - { get => Accessor.GetString("remote_addr"); set => Accessor.SetString("remote_addr", value); } - - - public int PingAvgMs - { get => Accessor.GetInt32("ping_avg_ms"); set => Accessor.SetInt32("ping_avg_ms", value); } - - - public float PacketLossPct - { get => Accessor.GetFloat("packet_loss_pct"); set => Accessor.SetFloat("packet_loss_pct", value); } - - - public bool IsBot - { get => Accessor.GetBool("is_bot"); set => Accessor.SetBool("is_bot", value); } - - - public float LossIn - { get => Accessor.GetFloat("loss_in"); set => Accessor.SetFloat("loss_in", value); } - - - public float LossOut - { get => Accessor.GetFloat("loss_out"); set => Accessor.SetFloat("loss_out", value); } - - - public int EngineLatencyMs - { get => Accessor.GetInt32("engine_latency_ms"); set => Accessor.SetInt32("engine_latency_ms", value); } - -} + public CMsgServerNetworkStats_PlayerImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong Steamid + { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } + public string RemoteAddr + { get => Accessor.GetString("remote_addr"); set => Accessor.SetString("remote_addr", value); } + public int PingAvgMs + { get => Accessor.GetInt32("ping_avg_ms"); set => Accessor.SetInt32("ping_avg_ms", value); } + public float PacketLossPct + { get => Accessor.GetFloat("packet_loss_pct"); set => Accessor.SetFloat("packet_loss_pct", value); } + public bool IsBot + { get => Accessor.GetBool("is_bot"); set => Accessor.SetBool("is_bot", value); } + public float LossIn + { get => Accessor.GetFloat("loss_in"); set => Accessor.SetFloat("loss_in", value); } + public float LossOut + { get => Accessor.GetFloat("loss_out"); set => Accessor.SetFloat("loss_out", value); } + public int EngineLatencyMs + { get => Accessor.GetInt32("engine_latency_ms"); set => Accessor.SetInt32("engine_latency_ms", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgServerNetworkStats_PortImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgServerNetworkStats_PortImpl.cs index 93d9d110f..90cae9527 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgServerNetworkStats_PortImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgServerNetworkStats_PortImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgServerNetworkStats_PortImpl : TypedProtobuf, CMsgServerNetworkStats_Port { - public CMsgServerNetworkStats_PortImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Port - { get => Accessor.GetInt32("port"); set => Accessor.SetInt32("port", value); } - - - public string Name - { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } - -} + public CMsgServerNetworkStats_PortImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Port + { get => Accessor.GetInt32("port"); set => Accessor.SetInt32("port", value); } + public string Name + { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgServerPeerImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgServerPeerImpl.cs index 20617d49e..7e12298ae 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgServerPeerImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgServerPeerImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,32 +8,20 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgServerPeerImpl : TypedProtobuf, CMsgServerPeer { - public CMsgServerPeerImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int PlayerSlot - { get => Accessor.GetInt32("player_slot"); set => Accessor.SetInt32("player_slot", value); } - - - public ulong Steamid - { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } - - - public CMsgIPCAddress Ipc - { get => new CMsgIPCAddressImpl(NativeNetMessages.GetNestedMessage(Address, "ipc"), false); } - - - public bool TheyHearYou - { get => Accessor.GetBool("they_hear_you"); set => Accessor.SetBool("they_hear_you", value); } - - - public bool YouHearThem - { get => Accessor.GetBool("you_hear_them"); set => Accessor.SetBool("you_hear_them", value); } - - - public bool IsListenserverHost - { get => Accessor.GetBool("is_listenserver_host"); set => Accessor.SetBool("is_listenserver_host", value); } - -} + public CMsgServerPeerImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int PlayerSlot + { get => Accessor.GetInt32("player_slot"); set => Accessor.SetInt32("player_slot", value); } + public ulong Steamid + { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } + public CMsgIPCAddress Ipc + { get => new CMsgIPCAddressImpl(NativeNetMessages.GetNestedMessage(Address, "ipc"), false); } + public bool TheyHearYou + { get => Accessor.GetBool("they_hear_you"); set => Accessor.SetBool("they_hear_you", value); } + public bool YouHearThem + { get => Accessor.GetBool("you_hear_them"); set => Accessor.SetBool("you_hear_them", value); } + public bool IsListenserverHost + { get => Accessor.GetBool("is_listenserver_host"); set => Accessor.SetBool("is_listenserver_host", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgServerUserCmdImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgServerUserCmdImpl.cs index 944c9af5c..f3dbb82d7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgServerUserCmdImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgServerUserCmdImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgServerUserCmdImpl : TypedProtobuf, CMsgServerUserCmd { - public CMsgServerUserCmdImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public byte[] Data - { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } - - - public int CmdNumber - { get => Accessor.GetInt32("cmd_number"); set => Accessor.SetInt32("cmd_number", value); } - - - public int PlayerSlot - { get => Accessor.GetInt32("player_slot"); set => Accessor.SetInt32("player_slot", value); } - - - public int ServerTickExecuted - { get => Accessor.GetInt32("server_tick_executed"); set => Accessor.SetInt32("server_tick_executed", value); } - - - public int ClientTick - { get => Accessor.GetInt32("client_tick"); set => Accessor.SetInt32("client_tick", value); } - -} + public CMsgServerUserCmdImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public byte[] Data + { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } + public int CmdNumber + { get => Accessor.GetInt32("cmd_number"); set => Accessor.SetInt32("cmd_number", value); } + public int PlayerSlot + { get => Accessor.GetInt32("player_slot"); set => Accessor.SetInt32("player_slot", value); } + public int ServerTickExecuted + { get => Accessor.GetInt32("server_tick_executed"); set => Accessor.SetInt32("server_tick_executed", value); } + public int ClientTick + { get => Accessor.GetInt32("client_tick"); set => Accessor.SetInt32("client_tick", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSetItemPositionsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSetItemPositionsImpl.cs index 8a4f451a7..b3726af7f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSetItemPositionsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSetItemPositionsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSetItemPositionsImpl : TypedProtobuf, CMsgSetItemPositions { - public CMsgSetItemPositionsImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldSubMessageType ItemPositions - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "item_positions"); } + public CMsgSetItemPositionsImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public IProtobufRepeatedFieldSubMessageType ItemPositions + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "item_positions"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSetItemPositions_ItemPositionImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSetItemPositions_ItemPositionImpl.cs index 9991bf8a3..05cb902c3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSetItemPositions_ItemPositionImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSetItemPositions_ItemPositionImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSetItemPositions_ItemPositionImpl : TypedProtobuf, CMsgSetItemPositions_ItemPosition { - public CMsgSetItemPositions_ItemPositionImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint LegacyItemId - { get => Accessor.GetUInt32("legacy_item_id"); set => Accessor.SetUInt32("legacy_item_id", value); } - - - public uint Position - { get => Accessor.GetUInt32("position"); set => Accessor.SetUInt32("position", value); } - - - public ulong ItemId - { get => Accessor.GetUInt64("item_id"); set => Accessor.SetUInt64("item_id", value); } - -} + public CMsgSetItemPositions_ItemPositionImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint LegacyItemId + { get => Accessor.GetUInt32("legacy_item_id"); set => Accessor.SetUInt32("legacy_item_id", value); } + public uint Position + { get => Accessor.GetUInt32("position"); set => Accessor.SetUInt32("position", value); } + public ulong ItemId + { get => Accessor.GetUInt64("item_id"); set => Accessor.SetUInt64("item_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSortItemsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSortItemsImpl.cs index 97dc752ae..1364a0757 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSortItemsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSortItemsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSortItemsImpl : TypedProtobuf, CMsgSortItems { - public CMsgSortItemsImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint SortType - { get => Accessor.GetUInt32("sort_type"); set => Accessor.SetUInt32("sort_type", value); } + public CMsgSortItemsImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public uint SortType + { get => Accessor.GetUInt32("sort_type"); set => Accessor.SetUInt32("sort_type", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSosSetLibraryStackFieldsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSosSetLibraryStackFieldsImpl.cs index 1a6b0b224..3ec407db0 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSosSetLibraryStackFieldsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSosSetLibraryStackFieldsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSosSetLibraryStackFieldsImpl : NetMessage, CMsgSosSetLibraryStackFields { - public CMsgSosSetLibraryStackFieldsImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint StackHash - { get => Accessor.GetUInt32("stack_hash"); set => Accessor.SetUInt32("stack_hash", value); } - - - public byte[] PackedFields - { get => Accessor.GetBytes("packed_fields"); set => Accessor.SetBytes("packed_fields", value); } - -} + public CMsgSosSetLibraryStackFieldsImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public uint StackHash + { get => Accessor.GetUInt32("stack_hash"); set => Accessor.SetUInt32("stack_hash", value); } + public byte[] PackedFields + { get => Accessor.GetBytes("packed_fields"); set => Accessor.SetBytes("packed_fields", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSosSetSoundEventParamsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSosSetSoundEventParamsImpl.cs index 3a3d2b699..4976d0620 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSosSetSoundEventParamsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSosSetSoundEventParamsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSosSetSoundEventParamsImpl : NetMessage, CMsgSosSetSoundEventParams { - public CMsgSosSetSoundEventParamsImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int SoundeventGuid - { get => Accessor.GetInt32("soundevent_guid"); set => Accessor.SetInt32("soundevent_guid", value); } - - - public byte[] PackedParams - { get => Accessor.GetBytes("packed_params"); set => Accessor.SetBytes("packed_params", value); } - -} + public CMsgSosSetSoundEventParamsImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int SoundeventGuid + { get => Accessor.GetInt32("soundevent_guid"); set => Accessor.SetInt32("soundevent_guid", value); } + public byte[] PackedParams + { get => Accessor.GetBytes("packed_params"); set => Accessor.SetBytes("packed_params", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSosStartSoundEventImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSosStartSoundEventImpl.cs index f8822781e..7554d127a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSosStartSoundEventImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSosStartSoundEventImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,32 +8,20 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSosStartSoundEventImpl : NetMessage, CMsgSosStartSoundEvent { - public CMsgSosStartSoundEventImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int SoundeventGuid - { get => Accessor.GetInt32("soundevent_guid"); set => Accessor.SetInt32("soundevent_guid", value); } - - - public uint SoundeventHash - { get => Accessor.GetUInt32("soundevent_hash"); set => Accessor.SetUInt32("soundevent_hash", value); } - - - public int SourceEntityIndex - { get => Accessor.GetInt32("source_entity_index"); set => Accessor.SetInt32("source_entity_index", value); } - - - public int Seed - { get => Accessor.GetInt32("seed"); set => Accessor.SetInt32("seed", value); } - - - public byte[] PackedParams - { get => Accessor.GetBytes("packed_params"); set => Accessor.SetBytes("packed_params", value); } - - - public float StartTime - { get => Accessor.GetFloat("start_time"); set => Accessor.SetFloat("start_time", value); } - -} + public CMsgSosStartSoundEventImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int SoundeventGuid + { get => Accessor.GetInt32("soundevent_guid"); set => Accessor.SetInt32("soundevent_guid", value); } + public uint SoundeventHash + { get => Accessor.GetUInt32("soundevent_hash"); set => Accessor.SetUInt32("soundevent_hash", value); } + public int SourceEntityIndex + { get => Accessor.GetInt32("source_entity_index"); set => Accessor.SetInt32("source_entity_index", value); } + public int Seed + { get => Accessor.GetInt32("seed"); set => Accessor.SetInt32("seed", value); } + public byte[] PackedParams + { get => Accessor.GetBytes("packed_params"); set => Accessor.SetBytes("packed_params", value); } + public float StartTime + { get => Accessor.GetFloat("start_time"); set => Accessor.SetFloat("start_time", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSosStopSoundEventHashImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSosStopSoundEventHashImpl.cs index 019fc231d..e5a87fb7d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSosStopSoundEventHashImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSosStopSoundEventHashImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSosStopSoundEventHashImpl : NetMessage, CMsgSosStopSoundEventHash { - public CMsgSosStopSoundEventHashImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint SoundeventHash - { get => Accessor.GetUInt32("soundevent_hash"); set => Accessor.SetUInt32("soundevent_hash", value); } - - - public int SourceEntityIndex - { get => Accessor.GetInt32("source_entity_index"); set => Accessor.SetInt32("source_entity_index", value); } - -} + public CMsgSosStopSoundEventHashImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public uint SoundeventHash + { get => Accessor.GetUInt32("soundevent_hash"); set => Accessor.SetUInt32("soundevent_hash", value); } + public int SourceEntityIndex + { get => Accessor.GetInt32("source_entity_index"); set => Accessor.SetInt32("source_entity_index", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSosStopSoundEventImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSosStopSoundEventImpl.cs index 9f57630b2..3276de53d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSosStopSoundEventImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSosStopSoundEventImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSosStopSoundEventImpl : NetMessage, CMsgSosStopSoundEvent { - public CMsgSosStopSoundEventImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int SoundeventGuid - { get => Accessor.GetInt32("soundevent_guid"); set => Accessor.SetInt32("soundevent_guid", value); } + public CMsgSosStopSoundEventImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public int SoundeventGuid + { get => Accessor.GetInt32("soundevent_guid"); set => Accessor.SetInt32("soundevent_guid", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource1LegacyGameEventImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource1LegacyGameEventImpl.cs index 66a6b32a9..95569b613 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource1LegacyGameEventImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource1LegacyGameEventImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -7,30 +6,20 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; -internal class CMsgSource1LegacyGameEventImpl : NetMessage, CMsgSource1LegacyGameEvent +internal class CMsgSource1LegacyGameEventImpl : TypedProtobuf, CMsgSource1LegacyGameEvent { - public CMsgSource1LegacyGameEventImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public string EventName - { get => Accessor.GetString("event_name"); set => Accessor.SetString("event_name", value); } - - - public int Eventid - { get => Accessor.GetInt32("eventid"); set => Accessor.SetInt32("eventid", value); } - - - public IProtobufRepeatedFieldSubMessageType Keys - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "keys"); } - - - public int ServerTick - { get => Accessor.GetInt32("server_tick"); set => Accessor.SetInt32("server_tick", value); } - - - public int Passthrough - { get => Accessor.GetInt32("passthrough"); set => Accessor.SetInt32("passthrough", value); } - -} + public CMsgSource1LegacyGameEventImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string EventName + { get => Accessor.GetString("event_name"); set => Accessor.SetString("event_name", value); } + public int Eventid + { get => Accessor.GetInt32("eventid"); set => Accessor.SetInt32("eventid", value); } + public IProtobufRepeatedFieldSubMessageType Keys + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "keys"); } + public int ServerTick + { get => Accessor.GetInt32("server_tick"); set => Accessor.SetInt32("server_tick", value); } + public int Passthrough + { get => Accessor.GetInt32("passthrough"); set => Accessor.SetInt32("passthrough", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource1LegacyGameEventListImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource1LegacyGameEventListImpl.cs index 34e5598d6..95fe86b5d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource1LegacyGameEventListImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource1LegacyGameEventListImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSource1LegacyGameEventListImpl : NetMessage, CMsgSource1LegacyGameEventList { - public CMsgSource1LegacyGameEventListImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public IProtobufRepeatedFieldSubMessageType Descriptors - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "descriptors"); } + public CMsgSource1LegacyGameEventListImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public IProtobufRepeatedFieldSubMessageType Descriptors + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "descriptors"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource1LegacyGameEventList_descriptor_tImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource1LegacyGameEventList_descriptor_tImpl.cs index 91a48f486..ebbfee7db 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource1LegacyGameEventList_descriptor_tImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource1LegacyGameEventList_descriptor_tImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSource1LegacyGameEventList_descriptor_tImpl : TypedProtobuf, CMsgSource1LegacyGameEventList_descriptor_t { - public CMsgSource1LegacyGameEventList_descriptor_tImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Eventid - { get => Accessor.GetInt32("eventid"); set => Accessor.SetInt32("eventid", value); } - - - public string Name - { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } - - - public IProtobufRepeatedFieldSubMessageType Keys - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "keys"); } - -} + public CMsgSource1LegacyGameEventList_descriptor_tImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Eventid + { get => Accessor.GetInt32("eventid"); set => Accessor.SetInt32("eventid", value); } + public string Name + { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } + public IProtobufRepeatedFieldSubMessageType Keys + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "keys"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource1LegacyGameEventList_key_tImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource1LegacyGameEventList_key_tImpl.cs index 444b1b584..5a6eb1f2f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource1LegacyGameEventList_key_tImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource1LegacyGameEventList_key_tImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSource1LegacyGameEventList_key_tImpl : TypedProtobuf, CMsgSource1LegacyGameEventList_key_t { - public CMsgSource1LegacyGameEventList_key_tImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Type - { get => Accessor.GetInt32("type"); set => Accessor.SetInt32("type", value); } - - - public string Name - { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } - -} + public CMsgSource1LegacyGameEventList_key_tImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Type + { get => Accessor.GetInt32("type"); set => Accessor.SetInt32("type", value); } + public string Name + { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource1LegacyGameEvent_key_tImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource1LegacyGameEvent_key_tImpl.cs index a8fc04b10..569886650 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource1LegacyGameEvent_key_tImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource1LegacyGameEvent_key_tImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,40 +8,24 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSource1LegacyGameEvent_key_tImpl : TypedProtobuf, CMsgSource1LegacyGameEvent_key_t { - public CMsgSource1LegacyGameEvent_key_tImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Type - { get => Accessor.GetInt32("type"); set => Accessor.SetInt32("type", value); } - - - public string ValString - { get => Accessor.GetString("val_string"); set => Accessor.SetString("val_string", value); } - - - public float ValFloat - { get => Accessor.GetFloat("val_float"); set => Accessor.SetFloat("val_float", value); } - - - public int ValLong - { get => Accessor.GetInt32("val_long"); set => Accessor.SetInt32("val_long", value); } - - - public int ValShort - { get => Accessor.GetInt32("val_short"); set => Accessor.SetInt32("val_short", value); } - - - public int ValByte - { get => Accessor.GetInt32("val_byte"); set => Accessor.SetInt32("val_byte", value); } - - - public bool ValBool - { get => Accessor.GetBool("val_bool"); set => Accessor.SetBool("val_bool", value); } - - - public ulong ValUint64 - { get => Accessor.GetUInt64("val_uint64"); set => Accessor.SetUInt64("val_uint64", value); } - -} + public CMsgSource1LegacyGameEvent_key_tImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Type + { get => Accessor.GetInt32("type"); set => Accessor.SetInt32("type", value); } + public string ValString + { get => Accessor.GetString("val_string"); set => Accessor.SetString("val_string", value); } + public float ValFloat + { get => Accessor.GetFloat("val_float"); set => Accessor.SetFloat("val_float", value); } + public int ValLong + { get => Accessor.GetInt32("val_long"); set => Accessor.SetInt32("val_long", value); } + public int ValShort + { get => Accessor.GetInt32("val_short"); set => Accessor.SetInt32("val_short", value); } + public int ValByte + { get => Accessor.GetInt32("val_byte"); set => Accessor.SetInt32("val_byte", value); } + public bool ValBool + { get => Accessor.GetBool("val_bool"); set => Accessor.SetBool("val_bool", value); } + public ulong ValUint64 + { get => Accessor.GetUInt64("val_uint64"); set => Accessor.SetUInt64("val_uint64", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource1LegacyListenEventsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource1LegacyListenEventsImpl.cs index 6302103d4..5ada3a24f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource1LegacyListenEventsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource1LegacyListenEventsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSource1LegacyListenEventsImpl : NetMessage, CMsgSource1LegacyListenEvents { - public CMsgSource1LegacyListenEventsImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Playerslot - { get => Accessor.GetInt32("playerslot"); set => Accessor.SetInt32("playerslot", value); } - - - public IProtobufRepeatedFieldValueType Eventarraybits - { get => new ProtobufRepeatedFieldValueType(Accessor, "eventarraybits"); } - -} + public CMsgSource1LegacyListenEventsImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Playerslot + { get => Accessor.GetInt32("playerslot"); set => Accessor.SetInt32("playerslot", value); } + public IProtobufRepeatedFieldValueType Eventarraybits + { get => new ProtobufRepeatedFieldValueType(Accessor, "eventarraybits"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource2NetworkFlowQualityImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource2NetworkFlowQualityImpl.cs index 8c755c829..a19e03ba7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource2NetworkFlowQualityImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource2NetworkFlowQualityImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,184 +8,96 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSource2NetworkFlowQualityImpl : TypedProtobuf, CMsgSource2NetworkFlowQuality { - public CMsgSource2NetworkFlowQualityImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Duration - { get => Accessor.GetUInt32("duration"); set => Accessor.SetUInt32("duration", value); } - - - public ulong BytesTotal - { get => Accessor.GetUInt64("bytes_total"); set => Accessor.SetUInt64("bytes_total", value); } - - - public ulong BytesTotalReliable - { get => Accessor.GetUInt64("bytes_total_reliable"); set => Accessor.SetUInt64("bytes_total_reliable", value); } - - - public ulong BytesTotalVoice - { get => Accessor.GetUInt64("bytes_total_voice"); set => Accessor.SetUInt64("bytes_total_voice", value); } - - - public uint BytesSecP95 - { get => Accessor.GetUInt32("bytes_sec_p95"); set => Accessor.SetUInt32("bytes_sec_p95", value); } - - - public uint BytesSecP99 - { get => Accessor.GetUInt32("bytes_sec_p99"); set => Accessor.SetUInt32("bytes_sec_p99", value); } - - - public uint EnginemsgsTotal - { get => Accessor.GetUInt32("enginemsgs_total"); set => Accessor.SetUInt32("enginemsgs_total", value); } - - - public uint EnginemsgsSecP95 - { get => Accessor.GetUInt32("enginemsgs_sec_p95"); set => Accessor.SetUInt32("enginemsgs_sec_p95", value); } - - - public uint EnginemsgsSecP99 - { get => Accessor.GetUInt32("enginemsgs_sec_p99"); set => Accessor.SetUInt32("enginemsgs_sec_p99", value); } - - - public uint NetframesTotal - { get => Accessor.GetUInt32("netframes_total"); set => Accessor.SetUInt32("netframes_total", value); } - - - public uint NetframesDropped - { get => Accessor.GetUInt32("netframes_dropped"); set => Accessor.SetUInt32("netframes_dropped", value); } - - - public uint NetframesOutoforder - { get => Accessor.GetUInt32("netframes_outoforder"); set => Accessor.SetUInt32("netframes_outoforder", value); } - - - public uint NetframesSizeExceedsMtu - { get => Accessor.GetUInt32("netframes_size_exceeds_mtu"); set => Accessor.SetUInt32("netframes_size_exceeds_mtu", value); } - - - public uint NetframesSizeP95 - { get => Accessor.GetUInt32("netframes_size_p95"); set => Accessor.SetUInt32("netframes_size_p95", value); } - - - public uint NetframesSizeP99 - { get => Accessor.GetUInt32("netframes_size_p99"); set => Accessor.SetUInt32("netframes_size_p99", value); } - - - public uint TicksTotal - { get => Accessor.GetUInt32("ticks_total"); set => Accessor.SetUInt32("ticks_total", value); } - - - public uint TicksGood - { get => Accessor.GetUInt32("ticks_good"); set => Accessor.SetUInt32("ticks_good", value); } - - - public uint TicksGoodAlmostLate - { get => Accessor.GetUInt32("ticks_good_almost_late"); set => Accessor.SetUInt32("ticks_good_almost_late", value); } - - - public uint TicksFixedDropped - { get => Accessor.GetUInt32("ticks_fixed_dropped"); set => Accessor.SetUInt32("ticks_fixed_dropped", value); } - - - public uint TicksFixedLate - { get => Accessor.GetUInt32("ticks_fixed_late"); set => Accessor.SetUInt32("ticks_fixed_late", value); } - - - public uint TicksBadDropped - { get => Accessor.GetUInt32("ticks_bad_dropped"); set => Accessor.SetUInt32("ticks_bad_dropped", value); } - - - public uint TicksBadLate - { get => Accessor.GetUInt32("ticks_bad_late"); set => Accessor.SetUInt32("ticks_bad_late", value); } - - - public uint TicksBadOther - { get => Accessor.GetUInt32("ticks_bad_other"); set => Accessor.SetUInt32("ticks_bad_other", value); } - - - public uint TickMissrateSamplesTotal - { get => Accessor.GetUInt32("tick_missrate_samples_total"); set => Accessor.SetUInt32("tick_missrate_samples_total", value); } - - - public uint TickMissrateSamplesPerfect - { get => Accessor.GetUInt32("tick_missrate_samples_perfect"); set => Accessor.SetUInt32("tick_missrate_samples_perfect", value); } - - - public uint TickMissrateSamplesPerfectnet - { get => Accessor.GetUInt32("tick_missrate_samples_perfectnet"); set => Accessor.SetUInt32("tick_missrate_samples_perfectnet", value); } - - - public uint TickMissratenetP75X10 - { get => Accessor.GetUInt32("tick_missratenet_p75_x10"); set => Accessor.SetUInt32("tick_missratenet_p75_x10", value); } - - - public uint TickMissratenetP95X10 - { get => Accessor.GetUInt32("tick_missratenet_p95_x10"); set => Accessor.SetUInt32("tick_missratenet_p95_x10", value); } - - - public uint TickMissratenetP99X10 - { get => Accessor.GetUInt32("tick_missratenet_p99_x10"); set => Accessor.SetUInt32("tick_missratenet_p99_x10", value); } - - - public int RecvmarginP1 - { get => Accessor.GetInt32("recvmargin_p1"); set => Accessor.SetInt32("recvmargin_p1", value); } - - - public int RecvmarginP5 - { get => Accessor.GetInt32("recvmargin_p5"); set => Accessor.SetInt32("recvmargin_p5", value); } - - - public int RecvmarginP25 - { get => Accessor.GetInt32("recvmargin_p25"); set => Accessor.SetInt32("recvmargin_p25", value); } - - - public int RecvmarginP50 - { get => Accessor.GetInt32("recvmargin_p50"); set => Accessor.SetInt32("recvmargin_p50", value); } - - - public int RecvmarginP75 - { get => Accessor.GetInt32("recvmargin_p75"); set => Accessor.SetInt32("recvmargin_p75", value); } - - - public int RecvmarginP95 - { get => Accessor.GetInt32("recvmargin_p95"); set => Accessor.SetInt32("recvmargin_p95", value); } - - - public uint NetframeJitterP50 - { get => Accessor.GetUInt32("netframe_jitter_p50"); set => Accessor.SetUInt32("netframe_jitter_p50", value); } - - - public uint NetframeJitterP99 - { get => Accessor.GetUInt32("netframe_jitter_p99"); set => Accessor.SetUInt32("netframe_jitter_p99", value); } - - - public uint IntervalPeakjitterP50 - { get => Accessor.GetUInt32("interval_peakjitter_p50"); set => Accessor.SetUInt32("interval_peakjitter_p50", value); } - - - public uint IntervalPeakjitterP95 - { get => Accessor.GetUInt32("interval_peakjitter_p95"); set => Accessor.SetUInt32("interval_peakjitter_p95", value); } - - - public uint PacketMisdeliveryRateP50X4 - { get => Accessor.GetUInt32("packet_misdelivery_rate_p50_x4"); set => Accessor.SetUInt32("packet_misdelivery_rate_p50_x4", value); } - - - public uint PacketMisdeliveryRateP95X4 - { get => Accessor.GetUInt32("packet_misdelivery_rate_p95_x4"); set => Accessor.SetUInt32("packet_misdelivery_rate_p95_x4", value); } - - - public uint NetPingP5 - { get => Accessor.GetUInt32("net_ping_p5"); set => Accessor.SetUInt32("net_ping_p5", value); } - - - public uint NetPingP50 - { get => Accessor.GetUInt32("net_ping_p50"); set => Accessor.SetUInt32("net_ping_p50", value); } - - - public uint NetPingP95 - { get => Accessor.GetUInt32("net_ping_p95"); set => Accessor.SetUInt32("net_ping_p95", value); } - -} + public CMsgSource2NetworkFlowQualityImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Duration + { get => Accessor.GetUInt32("duration"); set => Accessor.SetUInt32("duration", value); } + public ulong BytesTotal + { get => Accessor.GetUInt64("bytes_total"); set => Accessor.SetUInt64("bytes_total", value); } + public ulong BytesTotalReliable + { get => Accessor.GetUInt64("bytes_total_reliable"); set => Accessor.SetUInt64("bytes_total_reliable", value); } + public ulong BytesTotalVoice + { get => Accessor.GetUInt64("bytes_total_voice"); set => Accessor.SetUInt64("bytes_total_voice", value); } + public uint BytesSecP95 + { get => Accessor.GetUInt32("bytes_sec_p95"); set => Accessor.SetUInt32("bytes_sec_p95", value); } + public uint BytesSecP99 + { get => Accessor.GetUInt32("bytes_sec_p99"); set => Accessor.SetUInt32("bytes_sec_p99", value); } + public uint EnginemsgsTotal + { get => Accessor.GetUInt32("enginemsgs_total"); set => Accessor.SetUInt32("enginemsgs_total", value); } + public uint EnginemsgsSecP95 + { get => Accessor.GetUInt32("enginemsgs_sec_p95"); set => Accessor.SetUInt32("enginemsgs_sec_p95", value); } + public uint EnginemsgsSecP99 + { get => Accessor.GetUInt32("enginemsgs_sec_p99"); set => Accessor.SetUInt32("enginemsgs_sec_p99", value); } + public uint NetframesTotal + { get => Accessor.GetUInt32("netframes_total"); set => Accessor.SetUInt32("netframes_total", value); } + public uint NetframesDropped + { get => Accessor.GetUInt32("netframes_dropped"); set => Accessor.SetUInt32("netframes_dropped", value); } + public uint NetframesOutoforder + { get => Accessor.GetUInt32("netframes_outoforder"); set => Accessor.SetUInt32("netframes_outoforder", value); } + public uint NetframesSizeExceedsMtu + { get => Accessor.GetUInt32("netframes_size_exceeds_mtu"); set => Accessor.SetUInt32("netframes_size_exceeds_mtu", value); } + public uint NetframesSizeP95 + { get => Accessor.GetUInt32("netframes_size_p95"); set => Accessor.SetUInt32("netframes_size_p95", value); } + public uint NetframesSizeP99 + { get => Accessor.GetUInt32("netframes_size_p99"); set => Accessor.SetUInt32("netframes_size_p99", value); } + public uint TicksTotal + { get => Accessor.GetUInt32("ticks_total"); set => Accessor.SetUInt32("ticks_total", value); } + public uint TicksGood + { get => Accessor.GetUInt32("ticks_good"); set => Accessor.SetUInt32("ticks_good", value); } + public uint TicksGoodAlmostLate + { get => Accessor.GetUInt32("ticks_good_almost_late"); set => Accessor.SetUInt32("ticks_good_almost_late", value); } + public uint TicksFixedDropped + { get => Accessor.GetUInt32("ticks_fixed_dropped"); set => Accessor.SetUInt32("ticks_fixed_dropped", value); } + public uint TicksFixedLate + { get => Accessor.GetUInt32("ticks_fixed_late"); set => Accessor.SetUInt32("ticks_fixed_late", value); } + public uint TicksBadDropped + { get => Accessor.GetUInt32("ticks_bad_dropped"); set => Accessor.SetUInt32("ticks_bad_dropped", value); } + public uint TicksBadLate + { get => Accessor.GetUInt32("ticks_bad_late"); set => Accessor.SetUInt32("ticks_bad_late", value); } + public uint TicksBadOther + { get => Accessor.GetUInt32("ticks_bad_other"); set => Accessor.SetUInt32("ticks_bad_other", value); } + public uint TickMissrateSamplesTotal + { get => Accessor.GetUInt32("tick_missrate_samples_total"); set => Accessor.SetUInt32("tick_missrate_samples_total", value); } + public uint TickMissrateSamplesPerfect + { get => Accessor.GetUInt32("tick_missrate_samples_perfect"); set => Accessor.SetUInt32("tick_missrate_samples_perfect", value); } + public uint TickMissrateSamplesPerfectnet + { get => Accessor.GetUInt32("tick_missrate_samples_perfectnet"); set => Accessor.SetUInt32("tick_missrate_samples_perfectnet", value); } + public uint TickMissratenetP75X10 + { get => Accessor.GetUInt32("tick_missratenet_p75_x10"); set => Accessor.SetUInt32("tick_missratenet_p75_x10", value); } + public uint TickMissratenetP95X10 + { get => Accessor.GetUInt32("tick_missratenet_p95_x10"); set => Accessor.SetUInt32("tick_missratenet_p95_x10", value); } + public uint TickMissratenetP99X10 + { get => Accessor.GetUInt32("tick_missratenet_p99_x10"); set => Accessor.SetUInt32("tick_missratenet_p99_x10", value); } + public int RecvmarginP1 + { get => Accessor.GetInt32("recvmargin_p1"); set => Accessor.SetInt32("recvmargin_p1", value); } + public int RecvmarginP5 + { get => Accessor.GetInt32("recvmargin_p5"); set => Accessor.SetInt32("recvmargin_p5", value); } + public int RecvmarginP25 + { get => Accessor.GetInt32("recvmargin_p25"); set => Accessor.SetInt32("recvmargin_p25", value); } + public int RecvmarginP50 + { get => Accessor.GetInt32("recvmargin_p50"); set => Accessor.SetInt32("recvmargin_p50", value); } + public int RecvmarginP75 + { get => Accessor.GetInt32("recvmargin_p75"); set => Accessor.SetInt32("recvmargin_p75", value); } + public int RecvmarginP95 + { get => Accessor.GetInt32("recvmargin_p95"); set => Accessor.SetInt32("recvmargin_p95", value); } + public uint NetframeJitterP50 + { get => Accessor.GetUInt32("netframe_jitter_p50"); set => Accessor.SetUInt32("netframe_jitter_p50", value); } + public uint NetframeJitterP99 + { get => Accessor.GetUInt32("netframe_jitter_p99"); set => Accessor.SetUInt32("netframe_jitter_p99", value); } + public uint IntervalPeakjitterP50 + { get => Accessor.GetUInt32("interval_peakjitter_p50"); set => Accessor.SetUInt32("interval_peakjitter_p50", value); } + public uint IntervalPeakjitterP95 + { get => Accessor.GetUInt32("interval_peakjitter_p95"); set => Accessor.SetUInt32("interval_peakjitter_p95", value); } + public uint PacketMisdeliveryRateP50X4 + { get => Accessor.GetUInt32("packet_misdelivery_rate_p50_x4"); set => Accessor.SetUInt32("packet_misdelivery_rate_p50_x4", value); } + public uint PacketMisdeliveryRateP95X4 + { get => Accessor.GetUInt32("packet_misdelivery_rate_p95_x4"); set => Accessor.SetUInt32("packet_misdelivery_rate_p95_x4", value); } + public uint NetPingP5 + { get => Accessor.GetUInt32("net_ping_p5"); set => Accessor.SetUInt32("net_ping_p5", value); } + public uint NetPingP50 + { get => Accessor.GetUInt32("net_ping_p50"); set => Accessor.SetUInt32("net_ping_p50", value); } + public uint NetPingP95 + { get => Accessor.GetUInt32("net_ping_p95"); set => Accessor.SetUInt32("net_ping_p95", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource2PerfIntervalSampleImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource2PerfIntervalSampleImpl.cs index 890680f98..ed9233abb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource2PerfIntervalSampleImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource2PerfIntervalSampleImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,32 +8,20 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSource2PerfIntervalSampleImpl : TypedProtobuf, CMsgSource2PerfIntervalSample { - public CMsgSource2PerfIntervalSampleImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public float FrameTimeMaxMs - { get => Accessor.GetFloat("frame_time_max_ms"); set => Accessor.SetFloat("frame_time_max_ms", value); } - - - public float FrameTimeAvgMs - { get => Accessor.GetFloat("frame_time_avg_ms"); set => Accessor.SetFloat("frame_time_avg_ms", value); } - - - public float FrameTimeMinMs - { get => Accessor.GetFloat("frame_time_min_ms"); set => Accessor.SetFloat("frame_time_min_ms", value); } - - - public int FrameCount - { get => Accessor.GetInt32("frame_count"); set => Accessor.SetInt32("frame_count", value); } - - - public float FrameTimeTotalMs - { get => Accessor.GetFloat("frame_time_total_ms"); set => Accessor.SetFloat("frame_time_total_ms", value); } - - - public IProtobufRepeatedFieldSubMessageType Tags - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "tags"); } - -} + public CMsgSource2PerfIntervalSampleImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public float FrameTimeMaxMs + { get => Accessor.GetFloat("frame_time_max_ms"); set => Accessor.SetFloat("frame_time_max_ms", value); } + public float FrameTimeAvgMs + { get => Accessor.GetFloat("frame_time_avg_ms"); set => Accessor.SetFloat("frame_time_avg_ms", value); } + public float FrameTimeMinMs + { get => Accessor.GetFloat("frame_time_min_ms"); set => Accessor.SetFloat("frame_time_min_ms", value); } + public int FrameCount + { get => Accessor.GetInt32("frame_count"); set => Accessor.SetInt32("frame_count", value); } + public float FrameTimeTotalMs + { get => Accessor.GetFloat("frame_time_total_ms"); set => Accessor.SetFloat("frame_time_total_ms", value); } + public IProtobufRepeatedFieldSubMessageType Tags + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "tags"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource2PerfIntervalSample_TagImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource2PerfIntervalSample_TagImpl.cs index da31e326b..88ff65b65 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource2PerfIntervalSample_TagImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource2PerfIntervalSample_TagImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSource2PerfIntervalSample_TagImpl : TypedProtobuf, CMsgSource2PerfIntervalSample_Tag { - public CMsgSource2PerfIntervalSample_TagImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string Tag - { get => Accessor.GetString("tag"); set => Accessor.SetString("tag", value); } - - - public uint MaxValue - { get => Accessor.GetUInt32("max_value"); set => Accessor.SetUInt32("max_value", value); } - -} + public CMsgSource2PerfIntervalSample_TagImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string Tag + { get => Accessor.GetString("tag"); set => Accessor.SetString("tag", value); } + public uint MaxValue + { get => Accessor.GetUInt32("max_value"); set => Accessor.SetUInt32("max_value", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource2SystemSpecsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource2SystemSpecsImpl.cs index c70a0b039..8cbfc51c3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource2SystemSpecsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource2SystemSpecsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,64 +8,36 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSource2SystemSpecsImpl : TypedProtobuf, CMsgSource2SystemSpecs { - public CMsgSource2SystemSpecsImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string CpuId - { get => Accessor.GetString("cpu_id"); set => Accessor.SetString("cpu_id", value); } - - - public string CpuBrand - { get => Accessor.GetString("cpu_brand"); set => Accessor.SetString("cpu_brand", value); } - - - public uint CpuModel - { get => Accessor.GetUInt32("cpu_model"); set => Accessor.SetUInt32("cpu_model", value); } - - - public uint CpuNumPhysical - { get => Accessor.GetUInt32("cpu_num_physical"); set => Accessor.SetUInt32("cpu_num_physical", value); } - - - public uint RamPhysicalTotalMb - { get => Accessor.GetUInt32("ram_physical_total_mb"); set => Accessor.SetUInt32("ram_physical_total_mb", value); } - - - public string GpuRendersystemDllName - { get => Accessor.GetString("gpu_rendersystem_dll_name"); set => Accessor.SetString("gpu_rendersystem_dll_name", value); } - - - public uint GpuVendorId - { get => Accessor.GetUInt32("gpu_vendor_id"); set => Accessor.SetUInt32("gpu_vendor_id", value); } - - - public string GpuDriverName - { get => Accessor.GetString("gpu_driver_name"); set => Accessor.SetString("gpu_driver_name", value); } - - - public uint GpuDriverVersionHigh - { get => Accessor.GetUInt32("gpu_driver_version_high"); set => Accessor.SetUInt32("gpu_driver_version_high", value); } - - - public uint GpuDriverVersionLow - { get => Accessor.GetUInt32("gpu_driver_version_low"); set => Accessor.SetUInt32("gpu_driver_version_low", value); } - - - public uint GpuDxSupportLevel - { get => Accessor.GetUInt32("gpu_dx_support_level"); set => Accessor.SetUInt32("gpu_dx_support_level", value); } - - - public uint GpuTextureMemorySizeMb - { get => Accessor.GetUInt32("gpu_texture_memory_size_mb"); set => Accessor.SetUInt32("gpu_texture_memory_size_mb", value); } - - - public uint BackbufferWidth - { get => Accessor.GetUInt32("backbuffer_width"); set => Accessor.SetUInt32("backbuffer_width", value); } - - - public uint BackbufferHeight - { get => Accessor.GetUInt32("backbuffer_height"); set => Accessor.SetUInt32("backbuffer_height", value); } - -} + public CMsgSource2SystemSpecsImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string CpuId + { get => Accessor.GetString("cpu_id"); set => Accessor.SetString("cpu_id", value); } + public string CpuBrand + { get => Accessor.GetString("cpu_brand"); set => Accessor.SetString("cpu_brand", value); } + public uint CpuModel + { get => Accessor.GetUInt32("cpu_model"); set => Accessor.SetUInt32("cpu_model", value); } + public uint CpuNumPhysical + { get => Accessor.GetUInt32("cpu_num_physical"); set => Accessor.SetUInt32("cpu_num_physical", value); } + public uint RamPhysicalTotalMb + { get => Accessor.GetUInt32("ram_physical_total_mb"); set => Accessor.SetUInt32("ram_physical_total_mb", value); } + public string GpuRendersystemDllName + { get => Accessor.GetString("gpu_rendersystem_dll_name"); set => Accessor.SetString("gpu_rendersystem_dll_name", value); } + public uint GpuVendorId + { get => Accessor.GetUInt32("gpu_vendor_id"); set => Accessor.SetUInt32("gpu_vendor_id", value); } + public string GpuDriverName + { get => Accessor.GetString("gpu_driver_name"); set => Accessor.SetString("gpu_driver_name", value); } + public uint GpuDriverVersionHigh + { get => Accessor.GetUInt32("gpu_driver_version_high"); set => Accessor.SetUInt32("gpu_driver_version_high", value); } + public uint GpuDriverVersionLow + { get => Accessor.GetUInt32("gpu_driver_version_low"); set => Accessor.SetUInt32("gpu_driver_version_low", value); } + public uint GpuDxSupportLevel + { get => Accessor.GetUInt32("gpu_dx_support_level"); set => Accessor.SetUInt32("gpu_dx_support_level", value); } + public uint GpuTextureMemorySizeMb + { get => Accessor.GetUInt32("gpu_texture_memory_size_mb"); set => Accessor.SetUInt32("gpu_texture_memory_size_mb", value); } + public uint BackbufferWidth + { get => Accessor.GetUInt32("backbuffer_width"); set => Accessor.SetUInt32("backbuffer_width", value); } + public uint BackbufferHeight + { get => Accessor.GetUInt32("backbuffer_height"); set => Accessor.SetUInt32("backbuffer_height", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource2VProfLiteReportImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource2VProfLiteReportImpl.cs index b003dc6f9..7783ff702 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource2VProfLiteReportImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource2VProfLiteReportImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSource2VProfLiteReportImpl : TypedProtobuf, CMsgSource2VProfLiteReport { - public CMsgSource2VProfLiteReportImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public CMsgSource2VProfLiteReportItem Total - { get => new CMsgSource2VProfLiteReportItemImpl(NativeNetMessages.GetNestedMessage(Address, "total"), false); } - - - public IProtobufRepeatedFieldSubMessageType Items - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "items"); } - - - public uint DiscardedFrames - { get => Accessor.GetUInt32("discarded_frames"); set => Accessor.SetUInt32("discarded_frames", value); } - -} + public CMsgSource2VProfLiteReportImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public CMsgSource2VProfLiteReportItem Total + { get => new CMsgSource2VProfLiteReportItemImpl(NativeNetMessages.GetNestedMessage(Address, "total"), false); } + public IProtobufRepeatedFieldSubMessageType Items + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "items"); } + public uint DiscardedFrames + { get => Accessor.GetUInt32("discarded_frames"); set => Accessor.SetUInt32("discarded_frames", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource2VProfLiteReportItemImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource2VProfLiteReportItemImpl.cs index f983d05fa..8033f5364 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource2VProfLiteReportItemImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSource2VProfLiteReportItemImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,80 +8,44 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSource2VProfLiteReportItemImpl : TypedProtobuf, CMsgSource2VProfLiteReportItem { - public CMsgSource2VProfLiteReportItemImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string Name - { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } - - - public uint ActiveSamples - { get => Accessor.GetUInt32("active_samples"); set => Accessor.SetUInt32("active_samples", value); } - - - public uint ActiveSamples1secmax - { get => Accessor.GetUInt32("active_samples_1secmax"); set => Accessor.SetUInt32("active_samples_1secmax", value); } - - - public uint UsecMax - { get => Accessor.GetUInt32("usec_max"); set => Accessor.SetUInt32("usec_max", value); } - - - public uint UsecAvgActive - { get => Accessor.GetUInt32("usec_avg_active"); set => Accessor.SetUInt32("usec_avg_active", value); } - - - public uint UsecP50Active - { get => Accessor.GetUInt32("usec_p50_active"); set => Accessor.SetUInt32("usec_p50_active", value); } - - - public uint UsecP99Active - { get => Accessor.GetUInt32("usec_p99_active"); set => Accessor.SetUInt32("usec_p99_active", value); } - - - public uint UsecAvgAll - { get => Accessor.GetUInt32("usec_avg_all"); set => Accessor.SetUInt32("usec_avg_all", value); } - - - public uint UsecP50All - { get => Accessor.GetUInt32("usec_p50_all"); set => Accessor.SetUInt32("usec_p50_all", value); } - - - public uint UsecP99All - { get => Accessor.GetUInt32("usec_p99_all"); set => Accessor.SetUInt32("usec_p99_all", value); } - - - public uint Usec1secmaxAvgActive - { get => Accessor.GetUInt32("usec_1secmax_avg_active"); set => Accessor.SetUInt32("usec_1secmax_avg_active", value); } - - - public uint Usec1secmaxP50Active - { get => Accessor.GetUInt32("usec_1secmax_p50_active"); set => Accessor.SetUInt32("usec_1secmax_p50_active", value); } - - - public uint Usec1secmaxP95Active - { get => Accessor.GetUInt32("usec_1secmax_p95_active"); set => Accessor.SetUInt32("usec_1secmax_p95_active", value); } - - - public uint Usec1secmaxP99Active - { get => Accessor.GetUInt32("usec_1secmax_p99_active"); set => Accessor.SetUInt32("usec_1secmax_p99_active", value); } - - - public uint Usec1secmaxAvgAll - { get => Accessor.GetUInt32("usec_1secmax_avg_all"); set => Accessor.SetUInt32("usec_1secmax_avg_all", value); } - - - public uint Usec1secmaxP50All - { get => Accessor.GetUInt32("usec_1secmax_p50_all"); set => Accessor.SetUInt32("usec_1secmax_p50_all", value); } - - - public uint Usec1secmaxP95All - { get => Accessor.GetUInt32("usec_1secmax_p95_all"); set => Accessor.SetUInt32("usec_1secmax_p95_all", value); } - - - public uint Usec1secmaxP99All - { get => Accessor.GetUInt32("usec_1secmax_p99_all"); set => Accessor.SetUInt32("usec_1secmax_p99_all", value); } - -} + public CMsgSource2VProfLiteReportItemImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string Name + { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } + public uint ActiveSamples + { get => Accessor.GetUInt32("active_samples"); set => Accessor.SetUInt32("active_samples", value); } + public uint ActiveSamples1secmax + { get => Accessor.GetUInt32("active_samples_1secmax"); set => Accessor.SetUInt32("active_samples_1secmax", value); } + public uint UsecMax + { get => Accessor.GetUInt32("usec_max"); set => Accessor.SetUInt32("usec_max", value); } + public uint UsecAvgActive + { get => Accessor.GetUInt32("usec_avg_active"); set => Accessor.SetUInt32("usec_avg_active", value); } + public uint UsecP50Active + { get => Accessor.GetUInt32("usec_p50_active"); set => Accessor.SetUInt32("usec_p50_active", value); } + public uint UsecP99Active + { get => Accessor.GetUInt32("usec_p99_active"); set => Accessor.SetUInt32("usec_p99_active", value); } + public uint UsecAvgAll + { get => Accessor.GetUInt32("usec_avg_all"); set => Accessor.SetUInt32("usec_avg_all", value); } + public uint UsecP50All + { get => Accessor.GetUInt32("usec_p50_all"); set => Accessor.SetUInt32("usec_p50_all", value); } + public uint UsecP99All + { get => Accessor.GetUInt32("usec_p99_all"); set => Accessor.SetUInt32("usec_p99_all", value); } + public uint Usec1secmaxAvgActive + { get => Accessor.GetUInt32("usec_1secmax_avg_active"); set => Accessor.SetUInt32("usec_1secmax_avg_active", value); } + public uint Usec1secmaxP50Active + { get => Accessor.GetUInt32("usec_1secmax_p50_active"); set => Accessor.SetUInt32("usec_1secmax_p50_active", value); } + public uint Usec1secmaxP95Active + { get => Accessor.GetUInt32("usec_1secmax_p95_active"); set => Accessor.SetUInt32("usec_1secmax_p95_active", value); } + public uint Usec1secmaxP99Active + { get => Accessor.GetUInt32("usec_1secmax_p99_active"); set => Accessor.SetUInt32("usec_1secmax_p99_active", value); } + public uint Usec1secmaxAvgAll + { get => Accessor.GetUInt32("usec_1secmax_avg_all"); set => Accessor.SetUInt32("usec_1secmax_avg_all", value); } + public uint Usec1secmaxP50All + { get => Accessor.GetUInt32("usec_1secmax_p50_all"); set => Accessor.SetUInt32("usec_1secmax_p50_all", value); } + public uint Usec1secmaxP95All + { get => Accessor.GetUInt32("usec_1secmax_p95_all"); set => Accessor.SetUInt32("usec_1secmax_p95_all", value); } + public uint Usec1secmaxP99All + { get => Accessor.GetUInt32("usec_1secmax_p99_all"); set => Accessor.SetUInt32("usec_1secmax_p99_all", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgStoreGetUserDataImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgStoreGetUserDataImpl.cs index c951396a8..6581dee63 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgStoreGetUserDataImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgStoreGetUserDataImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgStoreGetUserDataImpl : TypedProtobuf, CMsgStoreGetUserData { - public CMsgStoreGetUserDataImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint PriceSheetVersion - { get => Accessor.GetUInt32("price_sheet_version"); set => Accessor.SetUInt32("price_sheet_version", value); } - - - public int Currency - { get => Accessor.GetInt32("currency"); set => Accessor.SetInt32("currency", value); } - -} + public CMsgStoreGetUserDataImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint PriceSheetVersion + { get => Accessor.GetUInt32("price_sheet_version"); set => Accessor.SetUInt32("price_sheet_version", value); } + public int Currency + { get => Accessor.GetInt32("currency"); set => Accessor.SetInt32("currency", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgStoreGetUserDataResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgStoreGetUserDataResponseImpl.cs index 6412cdebc..e56d5d58b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgStoreGetUserDataResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgStoreGetUserDataResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgStoreGetUserDataResponseImpl : TypedProtobuf, CMsgStoreGetUserDataResponse { - public CMsgStoreGetUserDataResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Result - { get => Accessor.GetInt32("result"); set => Accessor.SetInt32("result", value); } - - - public int CurrencyDeprecated - { get => Accessor.GetInt32("currency_deprecated"); set => Accessor.SetInt32("currency_deprecated", value); } - - - public string CountryDeprecated - { get => Accessor.GetString("country_deprecated"); set => Accessor.SetString("country_deprecated", value); } - - - public uint PriceSheetVersion - { get => Accessor.GetUInt32("price_sheet_version"); set => Accessor.SetUInt32("price_sheet_version", value); } - - - public byte[] PriceSheet - { get => Accessor.GetBytes("price_sheet"); set => Accessor.SetBytes("price_sheet", value); } - -} + public CMsgStoreGetUserDataResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Result + { get => Accessor.GetInt32("result"); set => Accessor.SetInt32("result", value); } + public int CurrencyDeprecated + { get => Accessor.GetInt32("currency_deprecated"); set => Accessor.SetInt32("currency_deprecated", value); } + public string CountryDeprecated + { get => Accessor.GetString("country_deprecated"); set => Accessor.SetString("country_deprecated", value); } + public uint PriceSheetVersion + { get => Accessor.GetUInt32("price_sheet_version"); set => Accessor.SetUInt32("price_sheet_version", value); } + public byte[] PriceSheet + { get => Accessor.GetBytes("price_sheet"); set => Accessor.SetBytes("price_sheet", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSystemBroadcastImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSystemBroadcastImpl.cs index 6f90c4d10..345c64121 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSystemBroadcastImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgSystemBroadcastImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgSystemBroadcastImpl : TypedProtobuf, CMsgSystemBroadcast { - public CMsgSystemBroadcastImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string Message - { get => Accessor.GetString("message"); set => Accessor.SetString("message", value); } + public CMsgSystemBroadcastImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public string Message + { get => Accessor.GetString("message"); set => Accessor.SetString("message", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEArmorRicochetImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEArmorRicochetImpl.cs index f25c38e14..7d5bf2100 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEArmorRicochetImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEArmorRicochetImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgTEArmorRicochetImpl : NetMessage, CMsgTEArmorRicochet { - public CMsgTEArmorRicochetImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public Vector Pos - { get => Accessor.GetVector("pos"); set => Accessor.SetVector("pos", value); } - - - public Vector Dir - { get => Accessor.GetVector("dir"); set => Accessor.SetVector("dir", value); } - -} + public CMsgTEArmorRicochetImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public Vector Pos + { get => Accessor.GetVector("pos"); set => Accessor.SetVector("pos", value); } + public Vector Dir + { get => Accessor.GetVector("dir"); set => Accessor.SetVector("dir", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBaseBeamImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBaseBeamImpl.cs index b1a0ec6df..5c212646d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBaseBeamImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBaseBeamImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,56 +8,32 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgTEBaseBeamImpl : TypedProtobuf, CMsgTEBaseBeam { - public CMsgTEBaseBeamImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Modelindex - { get => Accessor.GetUInt64("modelindex"); set => Accessor.SetUInt64("modelindex", value); } - - - public ulong Haloindex - { get => Accessor.GetUInt64("haloindex"); set => Accessor.SetUInt64("haloindex", value); } - - - public uint Startframe - { get => Accessor.GetUInt32("startframe"); set => Accessor.SetUInt32("startframe", value); } - - - public uint Framerate - { get => Accessor.GetUInt32("framerate"); set => Accessor.SetUInt32("framerate", value); } - - - public float Life - { get => Accessor.GetFloat("life"); set => Accessor.SetFloat("life", value); } - - - public float Width - { get => Accessor.GetFloat("width"); set => Accessor.SetFloat("width", value); } - - - public float Endwidth - { get => Accessor.GetFloat("endwidth"); set => Accessor.SetFloat("endwidth", value); } - - - public uint Fadelength - { get => Accessor.GetUInt32("fadelength"); set => Accessor.SetUInt32("fadelength", value); } - - - public float Amplitude - { get => Accessor.GetFloat("amplitude"); set => Accessor.SetFloat("amplitude", value); } - - - public uint Color - { get => Accessor.GetUInt32("color"); set => Accessor.SetUInt32("color", value); } - - - public uint Speed - { get => Accessor.GetUInt32("speed"); set => Accessor.SetUInt32("speed", value); } - - - public uint Flags - { get => Accessor.GetUInt32("flags"); set => Accessor.SetUInt32("flags", value); } - -} + public CMsgTEBaseBeamImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong Modelindex + { get => Accessor.GetUInt64("modelindex"); set => Accessor.SetUInt64("modelindex", value); } + public ulong Haloindex + { get => Accessor.GetUInt64("haloindex"); set => Accessor.SetUInt64("haloindex", value); } + public uint Startframe + { get => Accessor.GetUInt32("startframe"); set => Accessor.SetUInt32("startframe", value); } + public uint Framerate + { get => Accessor.GetUInt32("framerate"); set => Accessor.SetUInt32("framerate", value); } + public float Life + { get => Accessor.GetFloat("life"); set => Accessor.SetFloat("life", value); } + public float Width + { get => Accessor.GetFloat("width"); set => Accessor.SetFloat("width", value); } + public float Endwidth + { get => Accessor.GetFloat("endwidth"); set => Accessor.SetFloat("endwidth", value); } + public uint Fadelength + { get => Accessor.GetUInt32("fadelength"); set => Accessor.SetUInt32("fadelength", value); } + public float Amplitude + { get => Accessor.GetFloat("amplitude"); set => Accessor.SetFloat("amplitude", value); } + public uint Color + { get => Accessor.GetUInt32("color"); set => Accessor.SetUInt32("color", value); } + public uint Speed + { get => Accessor.GetUInt32("speed"); set => Accessor.SetUInt32("speed", value); } + public uint Flags + { get => Accessor.GetUInt32("flags"); set => Accessor.SetUInt32("flags", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBeamEntPointImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBeamEntPointImpl.cs index e522c1a92..40f5e49af 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBeamEntPointImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBeamEntPointImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgTEBeamEntPointImpl : NetMessage, CMsgTEBeamEntPoint { - public CMsgTEBeamEntPointImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public CMsgTEBaseBeam Base - { get => new CMsgTEBaseBeamImpl(NativeNetMessages.GetNestedMessage(Address, "base"), false); } - - - public uint Startentity - { get => Accessor.GetUInt32("startentity"); set => Accessor.SetUInt32("startentity", value); } - - - public uint Endentity - { get => Accessor.GetUInt32("endentity"); set => Accessor.SetUInt32("endentity", value); } - - - public Vector Start - { get => Accessor.GetVector("start"); set => Accessor.SetVector("start", value); } - - - public Vector End - { get => Accessor.GetVector("end"); set => Accessor.SetVector("end", value); } - -} + public CMsgTEBeamEntPointImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public CMsgTEBaseBeam Base + { get => new CMsgTEBaseBeamImpl(NativeNetMessages.GetNestedMessage(Address, "base"), false); } + public uint Startentity + { get => Accessor.GetUInt32("startentity"); set => Accessor.SetUInt32("startentity", value); } + public uint Endentity + { get => Accessor.GetUInt32("endentity"); set => Accessor.SetUInt32("endentity", value); } + public Vector Start + { get => Accessor.GetVector("start"); set => Accessor.SetVector("start", value); } + public Vector End + { get => Accessor.GetVector("end"); set => Accessor.SetVector("end", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBeamEntsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBeamEntsImpl.cs index 5d91331b5..424b0dcbd 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBeamEntsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBeamEntsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgTEBeamEntsImpl : NetMessage, CMsgTEBeamEnts { - public CMsgTEBeamEntsImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public CMsgTEBaseBeam Base - { get => new CMsgTEBaseBeamImpl(NativeNetMessages.GetNestedMessage(Address, "base"), false); } - - - public uint Startentity - { get => Accessor.GetUInt32("startentity"); set => Accessor.SetUInt32("startentity", value); } - - - public uint Endentity - { get => Accessor.GetUInt32("endentity"); set => Accessor.SetUInt32("endentity", value); } - -} + public CMsgTEBeamEntsImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public CMsgTEBaseBeam Base + { get => new CMsgTEBaseBeamImpl(NativeNetMessages.GetNestedMessage(Address, "base"), false); } + public uint Startentity + { get => Accessor.GetUInt32("startentity"); set => Accessor.SetUInt32("startentity", value); } + public uint Endentity + { get => Accessor.GetUInt32("endentity"); set => Accessor.SetUInt32("endentity", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBeamPointsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBeamPointsImpl.cs index 1a610ad02..94e10bb40 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBeamPointsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBeamPointsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgTEBeamPointsImpl : NetMessage, CMsgTEBeamPoints { - public CMsgTEBeamPointsImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public CMsgTEBaseBeam Base - { get => new CMsgTEBaseBeamImpl(NativeNetMessages.GetNestedMessage(Address, "base"), false); } - - - public Vector Start - { get => Accessor.GetVector("start"); set => Accessor.SetVector("start", value); } - - - public Vector End - { get => Accessor.GetVector("end"); set => Accessor.SetVector("end", value); } - -} + public CMsgTEBeamPointsImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public CMsgTEBaseBeam Base + { get => new CMsgTEBaseBeamImpl(NativeNetMessages.GetNestedMessage(Address, "base"), false); } + public Vector Start + { get => Accessor.GetVector("start"); set => Accessor.SetVector("start", value); } + public Vector End + { get => Accessor.GetVector("end"); set => Accessor.SetVector("end", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBeamRingImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBeamRingImpl.cs index 459209498..8431d7882 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBeamRingImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBeamRingImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgTEBeamRingImpl : NetMessage, CMsgTEBeamRing { - public CMsgTEBeamRingImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public CMsgTEBaseBeam Base - { get => new CMsgTEBaseBeamImpl(NativeNetMessages.GetNestedMessage(Address, "base"), false); } - - - public uint Startentity - { get => Accessor.GetUInt32("startentity"); set => Accessor.SetUInt32("startentity", value); } - - - public uint Endentity - { get => Accessor.GetUInt32("endentity"); set => Accessor.SetUInt32("endentity", value); } - -} + public CMsgTEBeamRingImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public CMsgTEBaseBeam Base + { get => new CMsgTEBaseBeamImpl(NativeNetMessages.GetNestedMessage(Address, "base"), false); } + public uint Startentity + { get => Accessor.GetUInt32("startentity"); set => Accessor.SetUInt32("startentity", value); } + public uint Endentity + { get => Accessor.GetUInt32("endentity"); set => Accessor.SetUInt32("endentity", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBloodStreamImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBloodStreamImpl.cs index cb4e7b927..a0488bee5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBloodStreamImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBloodStreamImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgTEBloodStreamImpl : NetMessage, CMsgTEBloodStream { - public CMsgTEBloodStreamImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public Vector Origin - { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } - - - public Vector Direction - { get => Accessor.GetVector("direction"); set => Accessor.SetVector("direction", value); } - - - public uint Color - { get => Accessor.GetUInt32("color"); set => Accessor.SetUInt32("color", value); } - - - public uint Amount - { get => Accessor.GetUInt32("amount"); set => Accessor.SetUInt32("amount", value); } - -} + public CMsgTEBloodStreamImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public Vector Origin + { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } + public Vector Direction + { get => Accessor.GetVector("direction"); set => Accessor.SetVector("direction", value); } + public uint Color + { get => Accessor.GetUInt32("color"); set => Accessor.SetUInt32("color", value); } + public uint Amount + { get => Accessor.GetUInt32("amount"); set => Accessor.SetUInt32("amount", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBubbleTrailImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBubbleTrailImpl.cs index be2010208..227d64de1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBubbleTrailImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBubbleTrailImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgTEBubbleTrailImpl : NetMessage, CMsgTEBubbleTrail { - public CMsgTEBubbleTrailImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public Vector Mins - { get => Accessor.GetVector("mins"); set => Accessor.SetVector("mins", value); } - - - public Vector Maxs - { get => Accessor.GetVector("maxs"); set => Accessor.SetVector("maxs", value); } - - - public float Waterz - { get => Accessor.GetFloat("waterz"); set => Accessor.SetFloat("waterz", value); } - - - public uint Count - { get => Accessor.GetUInt32("count"); set => Accessor.SetUInt32("count", value); } - - - public float Speed - { get => Accessor.GetFloat("speed"); set => Accessor.SetFloat("speed", value); } - -} + public CMsgTEBubbleTrailImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public Vector Mins + { get => Accessor.GetVector("mins"); set => Accessor.SetVector("mins", value); } + public Vector Maxs + { get => Accessor.GetVector("maxs"); set => Accessor.SetVector("maxs", value); } + public float Waterz + { get => Accessor.GetFloat("waterz"); set => Accessor.SetFloat("waterz", value); } + public uint Count + { get => Accessor.GetUInt32("count"); set => Accessor.SetUInt32("count", value); } + public float Speed + { get => Accessor.GetFloat("speed"); set => Accessor.SetFloat("speed", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBubblesImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBubblesImpl.cs index 3ea6e50e7..a404ee363 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBubblesImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEBubblesImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgTEBubblesImpl : NetMessage, CMsgTEBubbles { - public CMsgTEBubblesImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public Vector Mins - { get => Accessor.GetVector("mins"); set => Accessor.SetVector("mins", value); } - - - public Vector Maxs - { get => Accessor.GetVector("maxs"); set => Accessor.SetVector("maxs", value); } - - - public float Height - { get => Accessor.GetFloat("height"); set => Accessor.SetFloat("height", value); } - - - public uint Count - { get => Accessor.GetUInt32("count"); set => Accessor.SetUInt32("count", value); } - - - public float Speed - { get => Accessor.GetFloat("speed"); set => Accessor.SetFloat("speed", value); } - -} + public CMsgTEBubblesImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public Vector Mins + { get => Accessor.GetVector("mins"); set => Accessor.SetVector("mins", value); } + public Vector Maxs + { get => Accessor.GetVector("maxs"); set => Accessor.SetVector("maxs", value); } + public float Height + { get => Accessor.GetFloat("height"); set => Accessor.SetFloat("height", value); } + public uint Count + { get => Accessor.GetUInt32("count"); set => Accessor.SetUInt32("count", value); } + public float Speed + { get => Accessor.GetFloat("speed"); set => Accessor.SetFloat("speed", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEDecalImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEDecalImpl.cs index ce37ea80d..5717358cc 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEDecalImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEDecalImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgTEDecalImpl : NetMessage, CMsgTEDecal { - public CMsgTEDecalImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public Vector Origin - { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } - - - public Vector Start - { get => Accessor.GetVector("start"); set => Accessor.SetVector("start", value); } - - - public int Entity - { get => Accessor.GetInt32("entity"); set => Accessor.SetInt32("entity", value); } - - - public uint Hitbox - { get => Accessor.GetUInt32("hitbox"); set => Accessor.SetUInt32("hitbox", value); } - - - public uint Index - { get => Accessor.GetUInt32("index"); set => Accessor.SetUInt32("index", value); } - -} + public CMsgTEDecalImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public Vector Origin + { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } + public Vector Start + { get => Accessor.GetVector("start"); set => Accessor.SetVector("start", value); } + public int Entity + { get => Accessor.GetInt32("entity"); set => Accessor.SetInt32("entity", value); } + public uint Hitbox + { get => Accessor.GetUInt32("hitbox"); set => Accessor.SetUInt32("hitbox", value); } + public uint Index + { get => Accessor.GetUInt32("index"); set => Accessor.SetUInt32("index", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEDustImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEDustImpl.cs index 10fc67f1f..1adbcbdd1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEDustImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEDustImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgTEDustImpl : NetMessage, CMsgTEDust { - public CMsgTEDustImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public Vector Origin - { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } - - - public float Size - { get => Accessor.GetFloat("size"); set => Accessor.SetFloat("size", value); } - - - public float Speed - { get => Accessor.GetFloat("speed"); set => Accessor.SetFloat("speed", value); } - - - public Vector Direction - { get => Accessor.GetVector("direction"); set => Accessor.SetVector("direction", value); } - -} + public CMsgTEDustImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public Vector Origin + { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } + public float Size + { get => Accessor.GetFloat("size"); set => Accessor.SetFloat("size", value); } + public float Speed + { get => Accessor.GetFloat("speed"); set => Accessor.SetFloat("speed", value); } + public Vector Direction + { get => Accessor.GetVector("direction"); set => Accessor.SetVector("direction", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEEffectDispatchImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEEffectDispatchImpl.cs index ef33a5e57..73979b38a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEEffectDispatchImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEEffectDispatchImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgTEEffectDispatchImpl : NetMessage, CMsgTEEffectDispatch { - public CMsgTEEffectDispatchImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public CMsgEffectData Effectdata - { get => new CMsgEffectDataImpl(NativeNetMessages.GetNestedMessage(Address, "effectdata"), false); } + public CMsgTEEffectDispatchImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public CMsgEffectData Effectdata + { get => new CMsgEffectDataImpl(NativeNetMessages.GetNestedMessage(Address, "effectdata"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEEnergySplashImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEEnergySplashImpl.cs index e1367dcc8..b2fc1ef50 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEEnergySplashImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEEnergySplashImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgTEEnergySplashImpl : NetMessage, CMsgTEEnergySplash { - public CMsgTEEnergySplashImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public Vector Pos - { get => Accessor.GetVector("pos"); set => Accessor.SetVector("pos", value); } - - - public Vector Dir - { get => Accessor.GetVector("dir"); set => Accessor.SetVector("dir", value); } - - - public bool Explosive - { get => Accessor.GetBool("explosive"); set => Accessor.SetBool("explosive", value); } - -} + public CMsgTEEnergySplashImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public Vector Pos + { get => Accessor.GetVector("pos"); set => Accessor.SetVector("pos", value); } + public Vector Dir + { get => Accessor.GetVector("dir"); set => Accessor.SetVector("dir", value); } + public bool Explosive + { get => Accessor.GetBool("explosive"); set => Accessor.SetBool("explosive", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEExplosionImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEExplosionImpl.cs index 0f07d70de..572275d7c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEExplosionImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEExplosionImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,52 +8,30 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgTEExplosionImpl : NetMessage, CMsgTEExplosion { - public CMsgTEExplosionImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public Vector Origin - { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } - - - public uint Flags - { get => Accessor.GetUInt32("flags"); set => Accessor.SetUInt32("flags", value); } - - - public Vector Normal - { get => Accessor.GetVector("normal"); set => Accessor.SetVector("normal", value); } - - - public uint Radius - { get => Accessor.GetUInt32("radius"); set => Accessor.SetUInt32("radius", value); } - - - public uint Magnitude - { get => Accessor.GetUInt32("magnitude"); set => Accessor.SetUInt32("magnitude", value); } - - - public bool AffectRagdolls - { get => Accessor.GetBool("affect_ragdolls"); set => Accessor.SetBool("affect_ragdolls", value); } - - - public string SoundName - { get => Accessor.GetString("sound_name"); set => Accessor.SetString("sound_name", value); } - - - public uint ExplosionType - { get => Accessor.GetUInt32("explosion_type"); set => Accessor.SetUInt32("explosion_type", value); } - - - public bool CreateDebris - { get => Accessor.GetBool("create_debris"); set => Accessor.SetBool("create_debris", value); } - - - public Vector DebrisOrigin - { get => Accessor.GetVector("debris_origin"); set => Accessor.SetVector("debris_origin", value); } - - - public uint DebrisSurfaceprop - { get => Accessor.GetUInt32("debris_surfaceprop"); set => Accessor.SetUInt32("debris_surfaceprop", value); } - -} + public CMsgTEExplosionImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public Vector Origin + { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } + public uint Flags + { get => Accessor.GetUInt32("flags"); set => Accessor.SetUInt32("flags", value); } + public Vector Normal + { get => Accessor.GetVector("normal"); set => Accessor.SetVector("normal", value); } + public uint Radius + { get => Accessor.GetUInt32("radius"); set => Accessor.SetUInt32("radius", value); } + public uint Magnitude + { get => Accessor.GetUInt32("magnitude"); set => Accessor.SetUInt32("magnitude", value); } + public bool AffectRagdolls + { get => Accessor.GetBool("affect_ragdolls"); set => Accessor.SetBool("affect_ragdolls", value); } + public string SoundName + { get => Accessor.GetString("sound_name"); set => Accessor.SetString("sound_name", value); } + public uint ExplosionType + { get => Accessor.GetUInt32("explosion_type"); set => Accessor.SetUInt32("explosion_type", value); } + public bool CreateDebris + { get => Accessor.GetBool("create_debris"); set => Accessor.SetBool("create_debris", value); } + public Vector DebrisOrigin + { get => Accessor.GetVector("debris_origin"); set => Accessor.SetVector("debris_origin", value); } + public uint DebrisSurfaceprop + { get => Accessor.GetUInt32("debris_surfaceprop"); set => Accessor.SetUInt32("debris_surfaceprop", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEFireBulletsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEFireBulletsImpl.cs index 580f462a8..64cba19e2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEFireBulletsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEFireBulletsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,84 +8,46 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgTEFireBulletsImpl : NetMessage, CMsgTEFireBullets { - public CMsgTEFireBulletsImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public Vector Origin - { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } - - - public QAngle Angles - { get => Accessor.GetQAngle("angles"); set => Accessor.SetQAngle("angles", value); } - - - public uint WeaponId - { get => Accessor.GetUInt32("weapon_id"); set => Accessor.SetUInt32("weapon_id", value); } - - - public uint Mode - { get => Accessor.GetUInt32("mode"); set => Accessor.SetUInt32("mode", value); } - - - public uint Seed - { get => Accessor.GetUInt32("seed"); set => Accessor.SetUInt32("seed", value); } - - - public uint Player - { get => Accessor.GetUInt32("player"); set => Accessor.SetUInt32("player", value); } - - - public float Inaccuracy - { get => Accessor.GetFloat("inaccuracy"); set => Accessor.SetFloat("inaccuracy", value); } - - - public float RecoilIndex - { get => Accessor.GetFloat("recoil_index"); set => Accessor.SetFloat("recoil_index", value); } - - - public float Spread - { get => Accessor.GetFloat("spread"); set => Accessor.SetFloat("spread", value); } - - - public int SoundType - { get => Accessor.GetInt32("sound_type"); set => Accessor.SetInt32("sound_type", value); } - - - public uint ItemDefIndex - { get => Accessor.GetUInt32("item_def_index"); set => Accessor.SetUInt32("item_def_index", value); } - - - public uint SoundDspEffect - { get => Accessor.GetUInt32("sound_dsp_effect"); set => Accessor.SetUInt32("sound_dsp_effect", value); } - - - public Vector EntOrigin - { get => Accessor.GetVector("ent_origin"); set => Accessor.SetVector("ent_origin", value); } - - - public uint NumBulletsRemaining - { get => Accessor.GetUInt32("num_bullets_remaining"); set => Accessor.SetUInt32("num_bullets_remaining", value); } - - - public uint AttackType - { get => Accessor.GetUInt32("attack_type"); set => Accessor.SetUInt32("attack_type", value); } - - - public bool PlayerInair - { get => Accessor.GetBool("player_inair"); set => Accessor.SetBool("player_inair", value); } - - - public bool PlayerScoped - { get => Accessor.GetBool("player_scoped"); set => Accessor.SetBool("player_scoped", value); } - - - public int Tick - { get => Accessor.GetInt32("tick"); set => Accessor.SetInt32("tick", value); } - - - public CMsgTEFireBullets_Extra Extra - { get => new CMsgTEFireBullets_ExtraImpl(NativeNetMessages.GetNestedMessage(Address, "extra"), false); } - -} + public CMsgTEFireBulletsImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public Vector Origin + { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } + public QAngle Angles + { get => Accessor.GetQAngle("angles"); set => Accessor.SetQAngle("angles", value); } + public uint WeaponId + { get => Accessor.GetUInt32("weapon_id"); set => Accessor.SetUInt32("weapon_id", value); } + public uint Mode + { get => Accessor.GetUInt32("mode"); set => Accessor.SetUInt32("mode", value); } + public uint Seed + { get => Accessor.GetUInt32("seed"); set => Accessor.SetUInt32("seed", value); } + public uint Player + { get => Accessor.GetUInt32("player"); set => Accessor.SetUInt32("player", value); } + public float Inaccuracy + { get => Accessor.GetFloat("inaccuracy"); set => Accessor.SetFloat("inaccuracy", value); } + public float RecoilIndex + { get => Accessor.GetFloat("recoil_index"); set => Accessor.SetFloat("recoil_index", value); } + public float Spread + { get => Accessor.GetFloat("spread"); set => Accessor.SetFloat("spread", value); } + public int SoundType + { get => Accessor.GetInt32("sound_type"); set => Accessor.SetInt32("sound_type", value); } + public uint ItemDefIndex + { get => Accessor.GetUInt32("item_def_index"); set => Accessor.SetUInt32("item_def_index", value); } + public uint SoundDspEffect + { get => Accessor.GetUInt32("sound_dsp_effect"); set => Accessor.SetUInt32("sound_dsp_effect", value); } + public Vector EntOrigin + { get => Accessor.GetVector("ent_origin"); set => Accessor.SetVector("ent_origin", value); } + public uint NumBulletsRemaining + { get => Accessor.GetUInt32("num_bullets_remaining"); set => Accessor.SetUInt32("num_bullets_remaining", value); } + public uint AttackType + { get => Accessor.GetUInt32("attack_type"); set => Accessor.SetUInt32("attack_type", value); } + public bool PlayerInair + { get => Accessor.GetBool("player_inair"); set => Accessor.SetBool("player_inair", value); } + public bool PlayerScoped + { get => Accessor.GetBool("player_scoped"); set => Accessor.SetBool("player_scoped", value); } + public int Tick + { get => Accessor.GetInt32("tick"); set => Accessor.SetInt32("tick", value); } + public CMsgTEFireBullets_Extra Extra + { get => new CMsgTEFireBullets_ExtraImpl(NativeNetMessages.GetNestedMessage(Address, "extra"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEFireBullets_ExtraImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEFireBullets_ExtraImpl.cs index b1f4c13ad..a9904fcb5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEFireBullets_ExtraImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEFireBullets_ExtraImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,40 +8,24 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgTEFireBullets_ExtraImpl : TypedProtobuf, CMsgTEFireBullets_Extra { - public CMsgTEFireBullets_ExtraImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public QAngle AimPunch - { get => Accessor.GetQAngle("aim_punch"); set => Accessor.SetQAngle("aim_punch", value); } - - - public int AttackTickCount - { get => Accessor.GetInt32("attack_tick_count"); set => Accessor.SetInt32("attack_tick_count", value); } - - - public float AttackTickFrac - { get => Accessor.GetFloat("attack_tick_frac"); set => Accessor.SetFloat("attack_tick_frac", value); } - - - public int RenderTickCount - { get => Accessor.GetInt32("render_tick_count"); set => Accessor.SetInt32("render_tick_count", value); } - - - public float RenderTickFrac - { get => Accessor.GetFloat("render_tick_frac"); set => Accessor.SetFloat("render_tick_frac", value); } - - - public float InaccuracyMove - { get => Accessor.GetFloat("inaccuracy_move"); set => Accessor.SetFloat("inaccuracy_move", value); } - - - public float InaccuracyAir - { get => Accessor.GetFloat("inaccuracy_air"); set => Accessor.SetFloat("inaccuracy_air", value); } - - - public int Type - { get => Accessor.GetInt32("type"); set => Accessor.SetInt32("type", value); } - -} + public CMsgTEFireBullets_ExtraImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public QAngle AimPunch + { get => Accessor.GetQAngle("aim_punch"); set => Accessor.SetQAngle("aim_punch", value); } + public int AttackTickCount + { get => Accessor.GetInt32("attack_tick_count"); set => Accessor.SetInt32("attack_tick_count", value); } + public float AttackTickFrac + { get => Accessor.GetFloat("attack_tick_frac"); set => Accessor.SetFloat("attack_tick_frac", value); } + public int RenderTickCount + { get => Accessor.GetInt32("render_tick_count"); set => Accessor.SetInt32("render_tick_count", value); } + public float RenderTickFrac + { get => Accessor.GetFloat("render_tick_frac"); set => Accessor.SetFloat("render_tick_frac", value); } + public float InaccuracyMove + { get => Accessor.GetFloat("inaccuracy_move"); set => Accessor.SetFloat("inaccuracy_move", value); } + public float InaccuracyAir + { get => Accessor.GetFloat("inaccuracy_air"); set => Accessor.SetFloat("inaccuracy_air", value); } + public int Type + { get => Accessor.GetInt32("type"); set => Accessor.SetInt32("type", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEFizzImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEFizzImpl.cs index 38b01b7f7..9946e4877 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEFizzImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEFizzImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgTEFizzImpl : NetMessage, CMsgTEFizz { - public CMsgTEFizzImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Entity - { get => Accessor.GetInt32("entity"); set => Accessor.SetInt32("entity", value); } - - - public uint Density - { get => Accessor.GetUInt32("density"); set => Accessor.SetUInt32("density", value); } - - - public int Current - { get => Accessor.GetInt32("current"); set => Accessor.SetInt32("current", value); } - -} + public CMsgTEFizzImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Entity + { get => Accessor.GetInt32("entity"); set => Accessor.SetInt32("entity", value); } + public uint Density + { get => Accessor.GetUInt32("density"); set => Accessor.SetUInt32("density", value); } + public int Current + { get => Accessor.GetInt32("current"); set => Accessor.SetInt32("current", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEGlowSpriteImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEGlowSpriteImpl.cs index d8a2805ad..bcb3512f4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEGlowSpriteImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEGlowSpriteImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgTEGlowSpriteImpl : NetMessage, CMsgTEGlowSprite { - public CMsgTEGlowSpriteImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public Vector Origin - { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } - - - public float Scale - { get => Accessor.GetFloat("scale"); set => Accessor.SetFloat("scale", value); } - - - public float Life - { get => Accessor.GetFloat("life"); set => Accessor.SetFloat("life", value); } - - - public uint Brightness - { get => Accessor.GetUInt32("brightness"); set => Accessor.SetUInt32("brightness", value); } - -} + public CMsgTEGlowSpriteImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public Vector Origin + { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } + public float Scale + { get => Accessor.GetFloat("scale"); set => Accessor.SetFloat("scale", value); } + public float Life + { get => Accessor.GetFloat("life"); set => Accessor.SetFloat("life", value); } + public uint Brightness + { get => Accessor.GetUInt32("brightness"); set => Accessor.SetUInt32("brightness", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEImpactImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEImpactImpl.cs index ab76a9008..3e355728b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEImpactImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEImpactImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgTEImpactImpl : NetMessage, CMsgTEImpact { - public CMsgTEImpactImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public Vector Origin - { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } - - - public Vector Normal - { get => Accessor.GetVector("normal"); set => Accessor.SetVector("normal", value); } - - - public uint Type - { get => Accessor.GetUInt32("type"); set => Accessor.SetUInt32("type", value); } - -} + public CMsgTEImpactImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public Vector Origin + { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } + public Vector Normal + { get => Accessor.GetVector("normal"); set => Accessor.SetVector("normal", value); } + public uint Type + { get => Accessor.GetUInt32("type"); set => Accessor.SetUInt32("type", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTELargeFunnelImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTELargeFunnelImpl.cs index 54e2efe7d..17fbdbfee 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTELargeFunnelImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTELargeFunnelImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgTELargeFunnelImpl : NetMessage, CMsgTELargeFunnel { - public CMsgTELargeFunnelImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public Vector Origin - { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } - - - public uint Reversed - { get => Accessor.GetUInt32("reversed"); set => Accessor.SetUInt32("reversed", value); } - -} + public CMsgTELargeFunnelImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public Vector Origin + { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } + public uint Reversed + { get => Accessor.GetUInt32("reversed"); set => Accessor.SetUInt32("reversed", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEMuzzleFlashImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEMuzzleFlashImpl.cs index 8d6ebde6c..24c5cfe19 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEMuzzleFlashImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEMuzzleFlashImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgTEMuzzleFlashImpl : NetMessage, CMsgTEMuzzleFlash { - public CMsgTEMuzzleFlashImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public Vector Origin - { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } - - - public QAngle Angles - { get => Accessor.GetQAngle("angles"); set => Accessor.SetQAngle("angles", value); } - - - public float Scale - { get => Accessor.GetFloat("scale"); set => Accessor.SetFloat("scale", value); } - - - public uint Type - { get => Accessor.GetUInt32("type"); set => Accessor.SetUInt32("type", value); } - -} + public CMsgTEMuzzleFlashImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public Vector Origin + { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } + public QAngle Angles + { get => Accessor.GetQAngle("angles"); set => Accessor.SetQAngle("angles", value); } + public float Scale + { get => Accessor.GetFloat("scale"); set => Accessor.SetFloat("scale", value); } + public uint Type + { get => Accessor.GetUInt32("type"); set => Accessor.SetUInt32("type", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEPhysicsPropImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEPhysicsPropImpl.cs index db071a047..aca550339 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEPhysicsPropImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEPhysicsPropImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,60 +8,34 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgTEPhysicsPropImpl : NetMessage, CMsgTEPhysicsProp { - public CMsgTEPhysicsPropImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public Vector Origin - { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } - - - public Vector Velocity - { get => Accessor.GetVector("velocity"); set => Accessor.SetVector("velocity", value); } - - - public QAngle Angles - { get => Accessor.GetQAngle("angles"); set => Accessor.SetQAngle("angles", value); } - - - public uint Skin - { get => Accessor.GetUInt32("skin"); set => Accessor.SetUInt32("skin", value); } - - - public uint Flags - { get => Accessor.GetUInt32("flags"); set => Accessor.SetUInt32("flags", value); } - - - public uint Effects - { get => Accessor.GetUInt32("effects"); set => Accessor.SetUInt32("effects", value); } - - - public uint Color - { get => Accessor.GetUInt32("color"); set => Accessor.SetUInt32("color", value); } - - - public ulong Modelindex - { get => Accessor.GetUInt64("modelindex"); set => Accessor.SetUInt64("modelindex", value); } - - - public uint UnusedBreakmodelsnottomake - { get => Accessor.GetUInt32("unused_breakmodelsnottomake"); set => Accessor.SetUInt32("unused_breakmodelsnottomake", value); } - - - public float Scale - { get => Accessor.GetFloat("scale"); set => Accessor.SetFloat("scale", value); } - - - public Vector Dmgpos - { get => Accessor.GetVector("dmgpos"); set => Accessor.SetVector("dmgpos", value); } - - - public Vector Dmgdir - { get => Accessor.GetVector("dmgdir"); set => Accessor.SetVector("dmgdir", value); } - - - public int Dmgtype - { get => Accessor.GetInt32("dmgtype"); set => Accessor.SetInt32("dmgtype", value); } - -} + public CMsgTEPhysicsPropImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public Vector Origin + { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } + public Vector Velocity + { get => Accessor.GetVector("velocity"); set => Accessor.SetVector("velocity", value); } + public QAngle Angles + { get => Accessor.GetQAngle("angles"); set => Accessor.SetQAngle("angles", value); } + public uint Skin + { get => Accessor.GetUInt32("skin"); set => Accessor.SetUInt32("skin", value); } + public uint Flags + { get => Accessor.GetUInt32("flags"); set => Accessor.SetUInt32("flags", value); } + public uint Effects + { get => Accessor.GetUInt32("effects"); set => Accessor.SetUInt32("effects", value); } + public uint Color + { get => Accessor.GetUInt32("color"); set => Accessor.SetUInt32("color", value); } + public ulong Modelindex + { get => Accessor.GetUInt64("modelindex"); set => Accessor.SetUInt64("modelindex", value); } + public uint UnusedBreakmodelsnottomake + { get => Accessor.GetUInt32("unused_breakmodelsnottomake"); set => Accessor.SetUInt32("unused_breakmodelsnottomake", value); } + public float Scale + { get => Accessor.GetFloat("scale"); set => Accessor.SetFloat("scale", value); } + public Vector Dmgpos + { get => Accessor.GetVector("dmgpos"); set => Accessor.SetVector("dmgpos", value); } + public Vector Dmgdir + { get => Accessor.GetVector("dmgdir"); set => Accessor.SetVector("dmgdir", value); } + public int Dmgtype + { get => Accessor.GetInt32("dmgtype"); set => Accessor.SetInt32("dmgtype", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEPlayerAnimEventImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEPlayerAnimEventImpl.cs index 34e49c8d9..182526805 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEPlayerAnimEventImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEPlayerAnimEventImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgTEPlayerAnimEventImpl : NetMessage, CMsgTEPlayerAnimEvent { - public CMsgTEPlayerAnimEventImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint Player - { get => Accessor.GetUInt32("player"); set => Accessor.SetUInt32("player", value); } - - - public uint Event - { get => Accessor.GetUInt32("event"); set => Accessor.SetUInt32("event", value); } - - - public int Data - { get => Accessor.GetInt32("data"); set => Accessor.SetInt32("data", value); } - -} + public CMsgTEPlayerAnimEventImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public uint Player + { get => Accessor.GetUInt32("player"); set => Accessor.SetUInt32("player", value); } + public uint Event + { get => Accessor.GetUInt32("event"); set => Accessor.SetUInt32("event", value); } + public int Data + { get => Accessor.GetInt32("data"); set => Accessor.SetInt32("data", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTERadioIconImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTERadioIconImpl.cs index 7492171ca..f20b6583a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTERadioIconImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTERadioIconImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgTERadioIconImpl : TypedProtobuf, CMsgTERadioIcon { - public CMsgTERadioIconImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Player - { get => Accessor.GetUInt32("player"); set => Accessor.SetUInt32("player", value); } + public CMsgTERadioIconImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public uint Player + { get => Accessor.GetUInt32("player"); set => Accessor.SetUInt32("player", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEShatterSurfaceImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEShatterSurfaceImpl.cs index cbc190232..b68b0002c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEShatterSurfaceImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEShatterSurfaceImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,48 +8,28 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgTEShatterSurfaceImpl : NetMessage, CMsgTEShatterSurface { - public CMsgTEShatterSurfaceImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public Vector Origin - { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } - - - public QAngle Angles - { get => Accessor.GetQAngle("angles"); set => Accessor.SetQAngle("angles", value); } - - - public Vector Force - { get => Accessor.GetVector("force"); set => Accessor.SetVector("force", value); } - - - public Vector Forcepos - { get => Accessor.GetVector("forcepos"); set => Accessor.SetVector("forcepos", value); } - - - public float Width - { get => Accessor.GetFloat("width"); set => Accessor.SetFloat("width", value); } - - - public float Height - { get => Accessor.GetFloat("height"); set => Accessor.SetFloat("height", value); } - - - public float Shardsize - { get => Accessor.GetFloat("shardsize"); set => Accessor.SetFloat("shardsize", value); } - - - public uint Surfacetype - { get => Accessor.GetUInt32("surfacetype"); set => Accessor.SetUInt32("surfacetype", value); } - - - public uint Frontcolor - { get => Accessor.GetUInt32("frontcolor"); set => Accessor.SetUInt32("frontcolor", value); } - - - public uint Backcolor - { get => Accessor.GetUInt32("backcolor"); set => Accessor.SetUInt32("backcolor", value); } - -} + public CMsgTEShatterSurfaceImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public Vector Origin + { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } + public QAngle Angles + { get => Accessor.GetQAngle("angles"); set => Accessor.SetQAngle("angles", value); } + public Vector Force + { get => Accessor.GetVector("force"); set => Accessor.SetVector("force", value); } + public Vector Forcepos + { get => Accessor.GetVector("forcepos"); set => Accessor.SetVector("forcepos", value); } + public float Width + { get => Accessor.GetFloat("width"); set => Accessor.SetFloat("width", value); } + public float Height + { get => Accessor.GetFloat("height"); set => Accessor.SetFloat("height", value); } + public float Shardsize + { get => Accessor.GetFloat("shardsize"); set => Accessor.SetFloat("shardsize", value); } + public uint Surfacetype + { get => Accessor.GetUInt32("surfacetype"); set => Accessor.SetUInt32("surfacetype", value); } + public uint Frontcolor + { get => Accessor.GetUInt32("frontcolor"); set => Accessor.SetUInt32("frontcolor", value); } + public uint Backcolor + { get => Accessor.GetUInt32("backcolor"); set => Accessor.SetUInt32("backcolor", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTESmokeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTESmokeImpl.cs index d415a1572..e9eb51867 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTESmokeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTESmokeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgTESmokeImpl : NetMessage, CMsgTESmoke { - public CMsgTESmokeImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public Vector Origin - { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } - - - public float Scale - { get => Accessor.GetFloat("scale"); set => Accessor.SetFloat("scale", value); } - -} + public CMsgTESmokeImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public Vector Origin + { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } + public float Scale + { get => Accessor.GetFloat("scale"); set => Accessor.SetFloat("scale", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTESparksImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTESparksImpl.cs index 8eece8a32..e43be7de6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTESparksImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTESparksImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgTESparksImpl : NetMessage, CMsgTESparks { - public CMsgTESparksImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public Vector Origin - { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } - - - public uint Magnitude - { get => Accessor.GetUInt32("magnitude"); set => Accessor.SetUInt32("magnitude", value); } - - - public uint Length - { get => Accessor.GetUInt32("length"); set => Accessor.SetUInt32("length", value); } - - - public Vector Direction - { get => Accessor.GetVector("direction"); set => Accessor.SetVector("direction", value); } - -} + public CMsgTESparksImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public Vector Origin + { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } + public uint Magnitude + { get => Accessor.GetUInt32("magnitude"); set => Accessor.SetUInt32("magnitude", value); } + public uint Length + { get => Accessor.GetUInt32("length"); set => Accessor.SetUInt32("length", value); } + public Vector Direction + { get => Accessor.GetVector("direction"); set => Accessor.SetVector("direction", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEWorldDecalImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEWorldDecalImpl.cs index b495f7ab8..6334e0def 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEWorldDecalImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTEWorldDecalImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgTEWorldDecalImpl : NetMessage, CMsgTEWorldDecal { - public CMsgTEWorldDecalImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public Vector Origin - { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } - - - public Vector Normal - { get => Accessor.GetVector("normal"); set => Accessor.SetVector("normal", value); } - - - public uint Index - { get => Accessor.GetUInt32("index"); set => Accessor.SetUInt32("index", value); } - -} + public CMsgTEWorldDecalImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public Vector Origin + { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } + public Vector Normal + { get => Accessor.GetVector("normal"); set => Accessor.SetVector("normal", value); } + public uint Index + { get => Accessor.GetUInt32("index"); set => Accessor.SetUInt32("index", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTransformImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTransformImpl.cs index 1490068a2..86e4d9e9a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTransformImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgTransformImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgTransformImpl : TypedProtobuf, CMsgTransform { - public CMsgTransformImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public Vector Position - { get => Accessor.GetVector("position"); set => Accessor.SetVector("position", value); } - - - public float Scale - { get => Accessor.GetFloat("scale"); set => Accessor.SetFloat("scale", value); } - - - public CMsgQuaternion Orientation - { get => new CMsgQuaternionImpl(NativeNetMessages.GetNestedMessage(Address, "orientation"), false); } - -} + public CMsgTransformImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public Vector Position + { get => Accessor.GetVector("position"); set => Accessor.SetVector("position", value); } + public float Scale + { get => Accessor.GetFloat("scale"); set => Accessor.SetFloat("scale", value); } + public CMsgQuaternion Orientation + { get => new CMsgQuaternionImpl(NativeNetMessages.GetNestedMessage(Address, "orientation"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgUpdateItemSchemaImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgUpdateItemSchemaImpl.cs index 3278bdcd1..b9c3fdf6d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgUpdateItemSchemaImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgUpdateItemSchemaImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgUpdateItemSchemaImpl : TypedProtobuf, CMsgUpdateItemSchema { - public CMsgUpdateItemSchemaImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public byte[] ItemsGame - { get => Accessor.GetBytes("items_game"); set => Accessor.SetBytes("items_game", value); } - - - public uint ItemSchemaVersion - { get => Accessor.GetUInt32("item_schema_version"); set => Accessor.SetUInt32("item_schema_version", value); } - - - public string ItemsGameUrl - { get => Accessor.GetString("items_game_url"); set => Accessor.SetString("items_game_url", value); } - -} + public CMsgUpdateItemSchemaImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public byte[] ItemsGame + { get => Accessor.GetBytes("items_game"); set => Accessor.SetBytes("items_game", value); } + public uint ItemSchemaVersion + { get => Accessor.GetUInt32("item_schema_version"); set => Accessor.SetUInt32("item_schema_version", value); } + public string ItemsGameUrl + { get => Accessor.GetString("items_game_url"); set => Accessor.SetString("items_game_url", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgUseItemImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgUseItemImpl.cs index 1cc6b3a6b..e1dcecb9b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgUseItemImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgUseItemImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgUseItemImpl : TypedProtobuf, CMsgUseItem { - public CMsgUseItemImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong ItemId - { get => Accessor.GetUInt64("item_id"); set => Accessor.SetUInt64("item_id", value); } - - - public ulong TargetSteamId - { get => Accessor.GetUInt64("target_steam_id"); set => Accessor.SetUInt64("target_steam_id", value); } - - - public IProtobufRepeatedFieldValueType GiftPotentialTargets - { get => new ProtobufRepeatedFieldValueType(Accessor, "gift__potential_targets"); } - - - public uint DuelClassLock - { get => Accessor.GetUInt32("duel__class_lock"); set => Accessor.SetUInt32("duel__class_lock", value); } - - - public ulong InitiatorSteamId - { get => Accessor.GetUInt64("initiator_steam_id"); set => Accessor.SetUInt64("initiator_steam_id", value); } - -} + public CMsgUseItemImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong ItemId + { get => Accessor.GetUInt64("item_id"); set => Accessor.SetUInt64("item_id", value); } + public ulong TargetSteamId + { get => Accessor.GetUInt64("target_steam_id"); set => Accessor.SetUInt64("target_steam_id", value); } + public IProtobufRepeatedFieldValueType GiftPotentialTargets + { get => new ProtobufRepeatedFieldValueType(Accessor, "gift__potential_targets"); } + public uint DuelClassLock + { get => Accessor.GetUInt32("duel__class_lock"); set => Accessor.SetUInt32("duel__class_lock", value); } + public ulong InitiatorSteamId + { get => Accessor.GetUInt64("initiator_steam_id"); set => Accessor.SetUInt64("initiator_steam_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgVDebugGameSessionIDEventImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgVDebugGameSessionIDEventImpl.cs index 55cdf8fc0..6f489140e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgVDebugGameSessionIDEventImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgVDebugGameSessionIDEventImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgVDebugGameSessionIDEventImpl : NetMessage, CMsgVDebugGameSessionIDEvent { - public CMsgVDebugGameSessionIDEventImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Clientid - { get => Accessor.GetInt32("clientid"); set => Accessor.SetInt32("clientid", value); } - - - public string Gamesessionid - { get => Accessor.GetString("gamesessionid"); set => Accessor.SetString("gamesessionid", value); } - -} + public CMsgVDebugGameSessionIDEventImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Clientid + { get => Accessor.GetInt32("clientid"); set => Accessor.SetInt32("clientid", value); } + public string Gamesessionid + { get => Accessor.GetString("gamesessionid"); set => Accessor.SetString("gamesessionid", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgVector2DImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgVector2DImpl.cs index c938f7606..b382ea7c0 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgVector2DImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgVector2DImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgVector2DImpl : TypedProtobuf, CMsgVector2D { - public CMsgVector2DImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public float X - { get => Accessor.GetFloat("x"); set => Accessor.SetFloat("x", value); } - - - public float Y - { get => Accessor.GetFloat("y"); set => Accessor.SetFloat("y", value); } - -} + public CMsgVector2DImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public float X + { get => Accessor.GetFloat("x"); set => Accessor.SetFloat("x", value); } + public float Y + { get => Accessor.GetFloat("y"); set => Accessor.SetFloat("y", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgVectorImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgVectorImpl.cs index 8b5da9a8d..774ad27ac 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgVectorImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgVectorImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgVectorImpl : TypedProtobuf, CMsgVector { - public CMsgVectorImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public float X - { get => Accessor.GetFloat("x"); set => Accessor.SetFloat("x", value); } - - - public float Y - { get => Accessor.GetFloat("y"); set => Accessor.SetFloat("y", value); } - - - public float Z - { get => Accessor.GetFloat("z"); set => Accessor.SetFloat("z", value); } - - - public float W - { get => Accessor.GetFloat("w"); set => Accessor.SetFloat("w", value); } - -} + public CMsgVectorImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public float X + { get => Accessor.GetFloat("x"); set => Accessor.SetFloat("x", value); } + public float Y + { get => Accessor.GetFloat("y"); set => Accessor.SetFloat("y", value); } + public float Z + { get => Accessor.GetFloat("z"); set => Accessor.SetFloat("z", value); } + public float W + { get => Accessor.GetFloat("w"); set => Accessor.SetFloat("w", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgVoiceAudioImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgVoiceAudioImpl.cs index b0c59ca72..fc9763423 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgVoiceAudioImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsgVoiceAudioImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,44 +8,26 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsgVoiceAudioImpl : TypedProtobuf, CMsgVoiceAudio { - public CMsgVoiceAudioImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public VoiceDataFormat_t Format - { get => (VoiceDataFormat_t)Accessor.GetInt32("format"); set => Accessor.SetInt32("format", (int)value); } - - - public byte[] VoiceData - { get => Accessor.GetBytes("voice_data"); set => Accessor.SetBytes("voice_data", value); } - - - public int SequenceBytes - { get => Accessor.GetInt32("sequence_bytes"); set => Accessor.SetInt32("sequence_bytes", value); } - - - public uint SectionNumber - { get => Accessor.GetUInt32("section_number"); set => Accessor.SetUInt32("section_number", value); } - - - public uint SampleRate - { get => Accessor.GetUInt32("sample_rate"); set => Accessor.SetUInt32("sample_rate", value); } - - - public uint UncompressedSampleOffset - { get => Accessor.GetUInt32("uncompressed_sample_offset"); set => Accessor.SetUInt32("uncompressed_sample_offset", value); } - - - public uint NumPackets - { get => Accessor.GetUInt32("num_packets"); set => Accessor.SetUInt32("num_packets", value); } - - - public IProtobufRepeatedFieldValueType PacketOffsets - { get => new ProtobufRepeatedFieldValueType(Accessor, "packet_offsets"); } - - - public float VoiceLevel - { get => Accessor.GetFloat("voice_level"); set => Accessor.SetFloat("voice_level", value); } - -} + public CMsgVoiceAudioImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public VoiceDataFormat_t Format + { get => (VoiceDataFormat_t)Accessor.GetInt32("format"); set => Accessor.SetInt32("format", (int)value); } + public byte[] VoiceData + { get => Accessor.GetBytes("voice_data"); set => Accessor.SetBytes("voice_data", value); } + public int SequenceBytes + { get => Accessor.GetInt32("sequence_bytes"); set => Accessor.SetInt32("sequence_bytes", value); } + public uint SectionNumber + { get => Accessor.GetUInt32("section_number"); set => Accessor.SetUInt32("section_number", value); } + public uint SampleRate + { get => Accessor.GetUInt32("sample_rate"); set => Accessor.SetUInt32("sample_rate", value); } + public uint UncompressedSampleOffset + { get => Accessor.GetUInt32("uncompressed_sample_offset"); set => Accessor.SetUInt32("uncompressed_sample_offset", value); } + public uint NumPackets + { get => Accessor.GetUInt32("num_packets"); set => Accessor.SetUInt32("num_packets", value); } + public IProtobufRepeatedFieldValueType PacketOffsets + { get => new ProtobufRepeatedFieldValueType(Accessor, "packet_offsets"); } + public float VoiceLevel + { get => Accessor.GetFloat("voice_level"); set => Accessor.SetFloat("voice_level", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsg_CVarsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsg_CVarsImpl.cs index 1d43dba4b..4b881db50 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsg_CVarsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsg_CVarsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsg_CVarsImpl : TypedProtobuf, CMsg_CVars { - public CMsg_CVarsImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldSubMessageType Cvars - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "cvars"); } + public CMsg_CVarsImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public IProtobufRepeatedFieldSubMessageType Cvars + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "cvars"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsg_CVars_CVarImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsg_CVars_CVarImpl.cs index 0f5dd84c5..29f10c89e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsg_CVars_CVarImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CMsg_CVars_CVarImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CMsg_CVars_CVarImpl : TypedProtobuf, CMsg_CVars_CVar { - public CMsg_CVars_CVarImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string Name - { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } - - - public string Value - { get => Accessor.GetString("value"); set => Accessor.SetString("value", value); } - -} + public CMsg_CVars_CVarImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string Name + { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } + public string Value + { get => Accessor.GetString("value"); set => Accessor.SetString("value", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_DebugOverlayImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_DebugOverlayImpl.cs index 9d448e74d..37bc23fa8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_DebugOverlayImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_DebugOverlayImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,40 +8,24 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CNETMsg_DebugOverlayImpl : NetMessage, CNETMsg_DebugOverlay { - public CNETMsg_DebugOverlayImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Etype - { get => Accessor.GetInt32("etype"); set => Accessor.SetInt32("etype", value); } - - - public IProtobufRepeatedFieldValueType Vectors - { get => new ProtobufRepeatedFieldValueType(Accessor, "vectors"); } - - - public IProtobufRepeatedFieldValueType Colors - { get => new ProtobufRepeatedFieldValueType(Accessor, "colors"); } - - - public IProtobufRepeatedFieldValueType Dimensions - { get => new ProtobufRepeatedFieldValueType(Accessor, "dimensions"); } - - - public IProtobufRepeatedFieldValueType Times - { get => new ProtobufRepeatedFieldValueType(Accessor, "times"); } - - - public IProtobufRepeatedFieldValueType Bools - { get => new ProtobufRepeatedFieldValueType(Accessor, "bools"); } - - - public IProtobufRepeatedFieldValueType Uint64s - { get => new ProtobufRepeatedFieldValueType(Accessor, "uint64s"); } - - - public IProtobufRepeatedFieldValueType Strings - { get => new ProtobufRepeatedFieldValueType(Accessor, "strings"); } - -} + public CNETMsg_DebugOverlayImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Etype + { get => Accessor.GetInt32("etype"); set => Accessor.SetInt32("etype", value); } + public IProtobufRepeatedFieldValueType Vectors + { get => new ProtobufRepeatedFieldValueType(Accessor, "vectors"); } + public IProtobufRepeatedFieldValueType Colors + { get => new ProtobufRepeatedFieldValueType(Accessor, "colors"); } + public IProtobufRepeatedFieldValueType Dimensions + { get => new ProtobufRepeatedFieldValueType(Accessor, "dimensions"); } + public IProtobufRepeatedFieldValueType Times + { get => new ProtobufRepeatedFieldValueType(Accessor, "times"); } + public IProtobufRepeatedFieldValueType Bools + { get => new ProtobufRepeatedFieldValueType(Accessor, "bools"); } + public IProtobufRepeatedFieldValueType Uint64s + { get => new ProtobufRepeatedFieldValueType(Accessor, "uint64s"); } + public IProtobufRepeatedFieldValueType Strings + { get => new ProtobufRepeatedFieldValueType(Accessor, "strings"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_NOPImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_NOPImpl.cs index b8138c775..07daa8e28 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_NOPImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_NOPImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,9 +8,8 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CNETMsg_NOPImpl : NetMessage, CNETMsg_NOP { - public CNETMsg_NOPImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - + public CNETMsg_NOPImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SetConVarImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SetConVarImpl.cs index bdf732ca5..b632b6121 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SetConVarImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SetConVarImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CNETMsg_SetConVarImpl : NetMessage, CNETMsg_SetConVar { - public CNETMsg_SetConVarImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public CMsg_CVars Convars - { get => new CMsg_CVarsImpl(NativeNetMessages.GetNestedMessage(Address, "convars"), false); } + public CNETMsg_SetConVarImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public CMsg_CVars Convars + { get => new CMsg_CVarsImpl(NativeNetMessages.GetNestedMessage(Address, "convars"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SignonStateImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SignonStateImpl.cs index dcbe95af3..0966e645b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SignonStateImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SignonStateImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,32 +8,20 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CNETMsg_SignonStateImpl : NetMessage, CNETMsg_SignonState { - public CNETMsg_SignonStateImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public SignonState_t SignonState - { get => (SignonState_t)Accessor.GetInt32("signon_state"); set => Accessor.SetInt32("signon_state", (int)value); } - - - public uint SpawnCount - { get => Accessor.GetUInt32("spawn_count"); set => Accessor.SetUInt32("spawn_count", value); } - - - public uint NumServerPlayers - { get => Accessor.GetUInt32("num_server_players"); set => Accessor.SetUInt32("num_server_players", value); } - - - public IProtobufRepeatedFieldValueType PlayersNetworkids - { get => new ProtobufRepeatedFieldValueType(Accessor, "players_networkids"); } - - - public string MapName - { get => Accessor.GetString("map_name"); set => Accessor.SetString("map_name", value); } - - - public string Addons - { get => Accessor.GetString("addons"); set => Accessor.SetString("addons", value); } - -} + public CNETMsg_SignonStateImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public SignonState_t SignonState + { get => (SignonState_t)Accessor.GetInt32("signon_state"); set => Accessor.SetInt32("signon_state", (int)value); } + public uint SpawnCount + { get => Accessor.GetUInt32("spawn_count"); set => Accessor.SetUInt32("spawn_count", value); } + public uint NumServerPlayers + { get => Accessor.GetUInt32("num_server_players"); set => Accessor.SetUInt32("num_server_players", value); } + public IProtobufRepeatedFieldValueType PlayersNetworkids + { get => new ProtobufRepeatedFieldValueType(Accessor, "players_networkids"); } + public string MapName + { get => Accessor.GetString("map_name"); set => Accessor.SetString("map_name", value); } + public string Addons + { get => Accessor.GetString("addons"); set => Accessor.SetString("addons", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SpawnGroup_LoadCompletedImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SpawnGroup_LoadCompletedImpl.cs index 812eb3f40..2ca02a9e2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SpawnGroup_LoadCompletedImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SpawnGroup_LoadCompletedImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CNETMsg_SpawnGroup_LoadCompletedImpl : NetMessage, CNETMsg_SpawnGroup_LoadCompleted { - public CNETMsg_SpawnGroup_LoadCompletedImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint Spawngrouphandle - { get => Accessor.GetUInt32("spawngrouphandle"); set => Accessor.SetUInt32("spawngrouphandle", value); } + public CNETMsg_SpawnGroup_LoadCompletedImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public uint Spawngrouphandle + { get => Accessor.GetUInt32("spawngrouphandle"); set => Accessor.SetUInt32("spawngrouphandle", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SpawnGroup_LoadImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SpawnGroup_LoadImpl.cs index 4f9a470d9..57937837e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SpawnGroup_LoadImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SpawnGroup_LoadImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,88 +8,48 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CNETMsg_SpawnGroup_LoadImpl : NetMessage, CNETMsg_SpawnGroup_Load { - public CNETMsg_SpawnGroup_LoadImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public string Worldname - { get => Accessor.GetString("worldname"); set => Accessor.SetString("worldname", value); } - - - public string Entitylumpname - { get => Accessor.GetString("entitylumpname"); set => Accessor.SetString("entitylumpname", value); } - - - public string Entityfiltername - { get => Accessor.GetString("entityfiltername"); set => Accessor.SetString("entityfiltername", value); } - - - public uint Spawngrouphandle - { get => Accessor.GetUInt32("spawngrouphandle"); set => Accessor.SetUInt32("spawngrouphandle", value); } - - - public uint Spawngroupownerhandle - { get => Accessor.GetUInt32("spawngroupownerhandle"); set => Accessor.SetUInt32("spawngroupownerhandle", value); } - - - public Vector WorldOffsetPos - { get => Accessor.GetVector("world_offset_pos"); set => Accessor.SetVector("world_offset_pos", value); } - - - public QAngle WorldOffsetAngle - { get => Accessor.GetQAngle("world_offset_angle"); set => Accessor.SetQAngle("world_offset_angle", value); } - - - public byte[] Spawngroupmanifest - { get => Accessor.GetBytes("spawngroupmanifest"); set => Accessor.SetBytes("spawngroupmanifest", value); } - - - public uint Flags - { get => Accessor.GetUInt32("flags"); set => Accessor.SetUInt32("flags", value); } - - - public int Tickcount - { get => Accessor.GetInt32("tickcount"); set => Accessor.SetInt32("tickcount", value); } - - - public bool Manifestincomplete - { get => Accessor.GetBool("manifestincomplete"); set => Accessor.SetBool("manifestincomplete", value); } - - - public string Localnamefixup - { get => Accessor.GetString("localnamefixup"); set => Accessor.SetString("localnamefixup", value); } - - - public string Parentnamefixup - { get => Accessor.GetString("parentnamefixup"); set => Accessor.SetString("parentnamefixup", value); } - - - public int Manifestloadpriority - { get => Accessor.GetInt32("manifestloadpriority"); set => Accessor.SetInt32("manifestloadpriority", value); } - - - public uint Worldgroupid - { get => Accessor.GetUInt32("worldgroupid"); set => Accessor.SetUInt32("worldgroupid", value); } - - - public uint Creationsequence - { get => Accessor.GetUInt32("creationsequence"); set => Accessor.SetUInt32("creationsequence", value); } - - - public string Savegamefilename - { get => Accessor.GetString("savegamefilename"); set => Accessor.SetString("savegamefilename", value); } - - - public uint Spawngroupparenthandle - { get => Accessor.GetUInt32("spawngroupparenthandle"); set => Accessor.SetUInt32("spawngroupparenthandle", value); } - - - public bool Leveltransition - { get => Accessor.GetBool("leveltransition"); set => Accessor.SetBool("leveltransition", value); } - - - public string Worldgroupname - { get => Accessor.GetString("worldgroupname"); set => Accessor.SetString("worldgroupname", value); } - -} + public CNETMsg_SpawnGroup_LoadImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public string Worldname + { get => Accessor.GetString("worldname"); set => Accessor.SetString("worldname", value); } + public string Entitylumpname + { get => Accessor.GetString("entitylumpname"); set => Accessor.SetString("entitylumpname", value); } + public string Entityfiltername + { get => Accessor.GetString("entityfiltername"); set => Accessor.SetString("entityfiltername", value); } + public uint Spawngrouphandle + { get => Accessor.GetUInt32("spawngrouphandle"); set => Accessor.SetUInt32("spawngrouphandle", value); } + public uint Spawngroupownerhandle + { get => Accessor.GetUInt32("spawngroupownerhandle"); set => Accessor.SetUInt32("spawngroupownerhandle", value); } + public Vector WorldOffsetPos + { get => Accessor.GetVector("world_offset_pos"); set => Accessor.SetVector("world_offset_pos", value); } + public QAngle WorldOffsetAngle + { get => Accessor.GetQAngle("world_offset_angle"); set => Accessor.SetQAngle("world_offset_angle", value); } + public byte[] Spawngroupmanifest + { get => Accessor.GetBytes("spawngroupmanifest"); set => Accessor.SetBytes("spawngroupmanifest", value); } + public uint Flags + { get => Accessor.GetUInt32("flags"); set => Accessor.SetUInt32("flags", value); } + public int Tickcount + { get => Accessor.GetInt32("tickcount"); set => Accessor.SetInt32("tickcount", value); } + public bool Manifestincomplete + { get => Accessor.GetBool("manifestincomplete"); set => Accessor.SetBool("manifestincomplete", value); } + public string Localnamefixup + { get => Accessor.GetString("localnamefixup"); set => Accessor.SetString("localnamefixup", value); } + public string Parentnamefixup + { get => Accessor.GetString("parentnamefixup"); set => Accessor.SetString("parentnamefixup", value); } + public int Manifestloadpriority + { get => Accessor.GetInt32("manifestloadpriority"); set => Accessor.SetInt32("manifestloadpriority", value); } + public uint Worldgroupid + { get => Accessor.GetUInt32("worldgroupid"); set => Accessor.SetUInt32("worldgroupid", value); } + public uint Creationsequence + { get => Accessor.GetUInt32("creationsequence"); set => Accessor.SetUInt32("creationsequence", value); } + public string Savegamefilename + { get => Accessor.GetString("savegamefilename"); set => Accessor.SetString("savegamefilename", value); } + public uint Spawngroupparenthandle + { get => Accessor.GetUInt32("spawngroupparenthandle"); set => Accessor.SetUInt32("spawngroupparenthandle", value); } + public bool Leveltransition + { get => Accessor.GetBool("leveltransition"); set => Accessor.SetBool("leveltransition", value); } + public string Worldgroupname + { get => Accessor.GetString("worldgroupname"); set => Accessor.SetString("worldgroupname", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SpawnGroup_ManifestUpdateImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SpawnGroup_ManifestUpdateImpl.cs index a003108b4..5a091858a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SpawnGroup_ManifestUpdateImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SpawnGroup_ManifestUpdateImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CNETMsg_SpawnGroup_ManifestUpdateImpl : NetMessage, CNETMsg_SpawnGroup_ManifestUpdate { - public CNETMsg_SpawnGroup_ManifestUpdateImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint Spawngrouphandle - { get => Accessor.GetUInt32("spawngrouphandle"); set => Accessor.SetUInt32("spawngrouphandle", value); } - - - public byte[] Spawngroupmanifest - { get => Accessor.GetBytes("spawngroupmanifest"); set => Accessor.SetBytes("spawngroupmanifest", value); } - - - public bool Manifestincomplete - { get => Accessor.GetBool("manifestincomplete"); set => Accessor.SetBool("manifestincomplete", value); } - -} + public CNETMsg_SpawnGroup_ManifestUpdateImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public uint Spawngrouphandle + { get => Accessor.GetUInt32("spawngrouphandle"); set => Accessor.SetUInt32("spawngrouphandle", value); } + public byte[] Spawngroupmanifest + { get => Accessor.GetBytes("spawngroupmanifest"); set => Accessor.SetBytes("spawngroupmanifest", value); } + public bool Manifestincomplete + { get => Accessor.GetBool("manifestincomplete"); set => Accessor.SetBool("manifestincomplete", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SpawnGroup_SetCreationTickImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SpawnGroup_SetCreationTickImpl.cs index f883b852d..570720798 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SpawnGroup_SetCreationTickImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SpawnGroup_SetCreationTickImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CNETMsg_SpawnGroup_SetCreationTickImpl : NetMessage, CNETMsg_SpawnGroup_SetCreationTick { - public CNETMsg_SpawnGroup_SetCreationTickImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint Spawngrouphandle - { get => Accessor.GetUInt32("spawngrouphandle"); set => Accessor.SetUInt32("spawngrouphandle", value); } - - - public int Tickcount - { get => Accessor.GetInt32("tickcount"); set => Accessor.SetInt32("tickcount", value); } - - - public uint Creationsequence - { get => Accessor.GetUInt32("creationsequence"); set => Accessor.SetUInt32("creationsequence", value); } - -} + public CNETMsg_SpawnGroup_SetCreationTickImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public uint Spawngrouphandle + { get => Accessor.GetUInt32("spawngrouphandle"); set => Accessor.SetUInt32("spawngrouphandle", value); } + public int Tickcount + { get => Accessor.GetInt32("tickcount"); set => Accessor.SetInt32("tickcount", value); } + public uint Creationsequence + { get => Accessor.GetUInt32("creationsequence"); set => Accessor.SetUInt32("creationsequence", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SpawnGroup_UnloadImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SpawnGroup_UnloadImpl.cs index eee00c994..dcc7055ad 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SpawnGroup_UnloadImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SpawnGroup_UnloadImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CNETMsg_SpawnGroup_UnloadImpl : NetMessage, CNETMsg_SpawnGroup_Unload { - public CNETMsg_SpawnGroup_UnloadImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint Spawngrouphandle - { get => Accessor.GetUInt32("spawngrouphandle"); set => Accessor.SetUInt32("spawngrouphandle", value); } - - - public uint Flags - { get => Accessor.GetUInt32("flags"); set => Accessor.SetUInt32("flags", value); } - - - public int Tickcount - { get => Accessor.GetInt32("tickcount"); set => Accessor.SetInt32("tickcount", value); } - -} + public CNETMsg_SpawnGroup_UnloadImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public uint Spawngrouphandle + { get => Accessor.GetUInt32("spawngrouphandle"); set => Accessor.SetUInt32("spawngrouphandle", value); } + public uint Flags + { get => Accessor.GetUInt32("flags"); set => Accessor.SetUInt32("flags", value); } + public int Tickcount + { get => Accessor.GetInt32("tickcount"); set => Accessor.SetInt32("tickcount", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SplitScreenUserImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SplitScreenUserImpl.cs index e0c40a3ef..408eaac14 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SplitScreenUserImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_SplitScreenUserImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CNETMsg_SplitScreenUserImpl : NetMessage, CNETMsg_SplitScreenUser { - public CNETMsg_SplitScreenUserImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Slot - { get => Accessor.GetInt32("slot"); set => Accessor.SetInt32("slot", value); } + public CNETMsg_SplitScreenUserImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public int Slot + { get => Accessor.GetInt32("slot"); set => Accessor.SetInt32("slot", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_StringCmdImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_StringCmdImpl.cs index de51e7afa..4b23148ae 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_StringCmdImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_StringCmdImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CNETMsg_StringCmdImpl : NetMessage, CNETMsg_StringCmd { - public CNETMsg_StringCmdImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public string Command - { get => Accessor.GetString("command"); set => Accessor.SetString("command", value); } - - - public uint PredictionSync - { get => Accessor.GetUInt32("prediction_sync"); set => Accessor.SetUInt32("prediction_sync", value); } - -} + public CNETMsg_StringCmdImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public string Command + { get => Accessor.GetString("command"); set => Accessor.SetString("command", value); } + public uint PredictionSync + { get => Accessor.GetUInt32("prediction_sync"); set => Accessor.SetUInt32("prediction_sync", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_TickImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_TickImpl.cs index 0ff873831..d14801446 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_TickImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CNETMsg_TickImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,48 +8,28 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CNETMsg_TickImpl : NetMessage, CNETMsg_Tick { - public CNETMsg_TickImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint Tick - { get => Accessor.GetUInt32("tick"); set => Accessor.SetUInt32("tick", value); } - - - public uint HostComputationtime - { get => Accessor.GetUInt32("host_computationtime"); set => Accessor.SetUInt32("host_computationtime", value); } - - - public uint HostComputationtimeStdDeviation - { get => Accessor.GetUInt32("host_computationtime_std_deviation"); set => Accessor.SetUInt32("host_computationtime_std_deviation", value); } - - - public uint LegacyHostLoss - { get => Accessor.GetUInt32("legacy_host_loss"); set => Accessor.SetUInt32("legacy_host_loss", value); } - - - public uint HostUnfilteredFrametime - { get => Accessor.GetUInt32("host_unfiltered_frametime"); set => Accessor.SetUInt32("host_unfiltered_frametime", value); } - - - public uint HltvReplayFlags - { get => Accessor.GetUInt32("hltv_replay_flags"); set => Accessor.SetUInt32("hltv_replay_flags", value); } - - - public uint ExpectedLongTick - { get => Accessor.GetUInt32("expected_long_tick"); set => Accessor.SetUInt32("expected_long_tick", value); } - - - public string ExpectedLongTickReason - { get => Accessor.GetString("expected_long_tick_reason"); set => Accessor.SetString("expected_long_tick_reason", value); } - - - public uint HostFrameDroppedPctX10 - { get => Accessor.GetUInt32("host_frame_dropped_pct_x10"); set => Accessor.SetUInt32("host_frame_dropped_pct_x10", value); } - - - public uint HostFrameIrregularArrivalPctX10 - { get => Accessor.GetUInt32("host_frame_irregular_arrival_pct_x10"); set => Accessor.SetUInt32("host_frame_irregular_arrival_pct_x10", value); } - -} + public CNETMsg_TickImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public uint Tick + { get => Accessor.GetUInt32("tick"); set => Accessor.SetUInt32("tick", value); } + public uint HostComputationtime + { get => Accessor.GetUInt32("host_computationtime"); set => Accessor.SetUInt32("host_computationtime", value); } + public uint HostComputationtimeStdDeviation + { get => Accessor.GetUInt32("host_computationtime_std_deviation"); set => Accessor.SetUInt32("host_computationtime_std_deviation", value); } + public uint LegacyHostLoss + { get => Accessor.GetUInt32("legacy_host_loss"); set => Accessor.SetUInt32("legacy_host_loss", value); } + public uint HostUnfilteredFrametime + { get => Accessor.GetUInt32("host_unfiltered_frametime"); set => Accessor.SetUInt32("host_unfiltered_frametime", value); } + public uint HltvReplayFlags + { get => Accessor.GetUInt32("hltv_replay_flags"); set => Accessor.SetUInt32("hltv_replay_flags", value); } + public uint ExpectedLongTick + { get => Accessor.GetUInt32("expected_long_tick"); set => Accessor.SetUInt32("expected_long_tick", value); } + public string ExpectedLongTickReason + { get => Accessor.GetString("expected_long_tick_reason"); set => Accessor.SetString("expected_long_tick_reason", value); } + public uint HostFrameDroppedPctX10 + { get => Accessor.GetUInt32("host_frame_dropped_pct_x10"); set => Accessor.SetUInt32("host_frame_dropped_pct_x10", value); } + public uint HostFrameIrregularArrivalPctX10 + { get => Accessor.GetUInt32("host_frame_irregular_arrival_pct_x10"); set => Accessor.SetUInt32("host_frame_irregular_arrival_pct_x10", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CP2P_PingImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CP2P_PingImpl.cs index 002aedc84..a931c660f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CP2P_PingImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CP2P_PingImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CP2P_PingImpl : TypedProtobuf, CP2P_Ping { - public CP2P_PingImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong SendTime - { get => Accessor.GetUInt64("send_time"); set => Accessor.SetUInt64("send_time", value); } - - - public bool IsReply - { get => Accessor.GetBool("is_reply"); set => Accessor.SetBool("is_reply", value); } - -} + public CP2P_PingImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong SendTime + { get => Accessor.GetUInt64("send_time"); set => Accessor.SetUInt64("send_time", value); } + public bool IsReply + { get => Accessor.GetBool("is_reply"); set => Accessor.SetBool("is_reply", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CP2P_TextMessageImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CP2P_TextMessageImpl.cs index 77fff381c..51856dffb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CP2P_TextMessageImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CP2P_TextMessageImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CP2P_TextMessageImpl : TypedProtobuf, CP2P_TextMessage { - public CP2P_TextMessageImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public byte[] Text - { get => Accessor.GetBytes("text"); set => Accessor.SetBytes("text", value); } + public CP2P_TextMessageImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public byte[] Text + { get => Accessor.GetBytes("text"); set => Accessor.SetBytes("text", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CP2P_VRAvatarPositionImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CP2P_VRAvatarPositionImpl.cs index 7488904e8..8c53c7585 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CP2P_VRAvatarPositionImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CP2P_VRAvatarPositionImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CP2P_VRAvatarPositionImpl : TypedProtobuf, CP2P_VRAvatarPosition { - public CP2P_VRAvatarPositionImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldSubMessageType BodyParts - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "body_parts"); } - - - public int HatId - { get => Accessor.GetInt32("hat_id"); set => Accessor.SetInt32("hat_id", value); } - - - public int SceneId - { get => Accessor.GetInt32("scene_id"); set => Accessor.SetInt32("scene_id", value); } - - - public int WorldScale - { get => Accessor.GetInt32("world_scale"); set => Accessor.SetInt32("world_scale", value); } - -} + public CP2P_VRAvatarPositionImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public IProtobufRepeatedFieldSubMessageType BodyParts + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "body_parts"); } + public int HatId + { get => Accessor.GetInt32("hat_id"); set => Accessor.SetInt32("hat_id", value); } + public int SceneId + { get => Accessor.GetInt32("scene_id"); set => Accessor.SetInt32("scene_id", value); } + public int WorldScale + { get => Accessor.GetInt32("world_scale"); set => Accessor.SetInt32("world_scale", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CP2P_VRAvatarPosition_COrientationImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CP2P_VRAvatarPosition_COrientationImpl.cs index 27e04301b..2045ff79d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CP2P_VRAvatarPosition_COrientationImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CP2P_VRAvatarPosition_COrientationImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CP2P_VRAvatarPosition_COrientationImpl : TypedProtobuf, CP2P_VRAvatarPosition_COrientation { - public CP2P_VRAvatarPosition_COrientationImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public Vector Pos - { get => Accessor.GetVector("pos"); set => Accessor.SetVector("pos", value); } - - - public QAngle Ang - { get => Accessor.GetQAngle("ang"); set => Accessor.SetQAngle("ang", value); } - -} + public CP2P_VRAvatarPosition_COrientationImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public Vector Pos + { get => Accessor.GetVector("pos"); set => Accessor.SetVector("pos", value); } + public QAngle Ang + { get => Accessor.GetQAngle("ang"); set => Accessor.SetQAngle("ang", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CP2P_VoiceImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CP2P_VoiceImpl.cs index 836d472a1..34641b1a6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CP2P_VoiceImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CP2P_VoiceImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CP2P_VoiceImpl : TypedProtobuf, CP2P_Voice { - public CP2P_VoiceImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public CMsgVoiceAudio Audio - { get => new CMsgVoiceAudioImpl(NativeNetMessages.GetNestedMessage(Address, "audio"), false); } - - - public uint BroadcastGroup - { get => Accessor.GetUInt32("broadcast_group"); set => Accessor.SetUInt32("broadcast_group", value); } - -} + public CP2P_VoiceImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public CMsgVoiceAudio Audio + { get => new CMsgVoiceAudioImpl(NativeNetMessages.GetNestedMessage(Address, "audio"), false); } + public uint BroadcastGroup + { get => Accessor.GetUInt32("broadcast_group"); set => Accessor.SetUInt32("broadcast_group", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CP2P_WatchSynchronizationImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CP2P_WatchSynchronizationImpl.cs index 09db04281..d0d19cb31 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CP2P_WatchSynchronizationImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CP2P_WatchSynchronizationImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,40 +8,24 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CP2P_WatchSynchronizationImpl : TypedProtobuf, CP2P_WatchSynchronization { - public CP2P_WatchSynchronizationImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int DemoTick - { get => Accessor.GetInt32("demo_tick"); set => Accessor.SetInt32("demo_tick", value); } - - - public bool Paused - { get => Accessor.GetBool("paused"); set => Accessor.SetBool("paused", value); } - - - public ulong TvListenVoiceIndices - { get => Accessor.GetUInt64("tv_listen_voice_indices"); set => Accessor.SetUInt64("tv_listen_voice_indices", value); } - - - public int DotaSpectatorMode - { get => Accessor.GetInt32("dota_spectator_mode"); set => Accessor.SetInt32("dota_spectator_mode", value); } - - - public bool DotaSpectatorWatchingBroadcaster - { get => Accessor.GetBool("dota_spectator_watching_broadcaster"); set => Accessor.SetBool("dota_spectator_watching_broadcaster", value); } - - - public int DotaSpectatorHeroIndex - { get => Accessor.GetInt32("dota_spectator_hero_index"); set => Accessor.SetInt32("dota_spectator_hero_index", value); } - - - public int DotaSpectatorAutospeed - { get => Accessor.GetInt32("dota_spectator_autospeed"); set => Accessor.SetInt32("dota_spectator_autospeed", value); } - - - public int DotaReplaySpeed - { get => Accessor.GetInt32("dota_replay_speed"); set => Accessor.SetInt32("dota_replay_speed", value); } - -} + public CP2P_WatchSynchronizationImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int DemoTick + { get => Accessor.GetInt32("demo_tick"); set => Accessor.SetInt32("demo_tick", value); } + public bool Paused + { get => Accessor.GetBool("paused"); set => Accessor.SetBool("paused", value); } + public ulong TvListenVoiceIndices + { get => Accessor.GetUInt64("tv_listen_voice_indices"); set => Accessor.SetUInt64("tv_listen_voice_indices", value); } + public int DotaSpectatorMode + { get => Accessor.GetInt32("dota_spectator_mode"); set => Accessor.SetInt32("dota_spectator_mode", value); } + public bool DotaSpectatorWatchingBroadcaster + { get => Accessor.GetBool("dota_spectator_watching_broadcaster"); set => Accessor.SetBool("dota_spectator_watching_broadcaster", value); } + public int DotaSpectatorHeroIndex + { get => Accessor.GetInt32("dota_spectator_hero_index"); set => Accessor.SetInt32("dota_spectator_hero_index", value); } + public int DotaSpectatorAutospeed + { get => Accessor.GetInt32("dota_spectator_autospeed"); set => Accessor.SetInt32("dota_spectator_autospeed", value); } + public int DotaReplaySpeed + { get => Accessor.GetInt32("dota_replay_speed"); set => Accessor.SetInt32("dota_replay_speed", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CPreMatchInfoDataImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CPreMatchInfoDataImpl.cs index 2ee76f91f..5d404b8d4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CPreMatchInfoDataImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CPreMatchInfoDataImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CPreMatchInfoDataImpl : TypedProtobuf, CPreMatchInfoData { - public CPreMatchInfoDataImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int PredictionsPct - { get => Accessor.GetInt32("predictions_pct"); set => Accessor.SetInt32("predictions_pct", value); } - - - public CDataGCCStrike15_v2_TournamentMatchDraft Draft - { get => new CDataGCCStrike15_v2_TournamentMatchDraftImpl(NativeNetMessages.GetNestedMessage(Address, "draft"), false); } - - - public IProtobufRepeatedFieldSubMessageType Stats - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "stats"); } - - - public IProtobufRepeatedFieldValueType Wins - { get => new ProtobufRepeatedFieldValueType(Accessor, "wins"); } - -} + public CPreMatchInfoDataImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int PredictionsPct + { get => Accessor.GetInt32("predictions_pct"); set => Accessor.SetInt32("predictions_pct", value); } + public CDataGCCStrike15_v2_TournamentMatchDraft Draft + { get => new CDataGCCStrike15_v2_TournamentMatchDraftImpl(NativeNetMessages.GetNestedMessage(Address, "draft"), false); } + public IProtobufRepeatedFieldSubMessageType Stats + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "stats"); } + public IProtobufRepeatedFieldValueType Wins + { get => new ProtobufRepeatedFieldValueType(Accessor, "wins"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CPreMatchInfoData_TeamStatsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CPreMatchInfoData_TeamStatsImpl.cs index 0ffb6e24d..f71e47530 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CPreMatchInfoData_TeamStatsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CPreMatchInfoData_TeamStatsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CPreMatchInfoData_TeamStatsImpl : TypedProtobuf, CPreMatchInfoData_TeamStats { - public CPreMatchInfoData_TeamStatsImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int MatchInfoIdxtxt - { get => Accessor.GetInt32("match_info_idxtxt"); set => Accessor.SetInt32("match_info_idxtxt", value); } - - - public string MatchInfoTxt - { get => Accessor.GetString("match_info_txt"); set => Accessor.SetString("match_info_txt", value); } - - - public IProtobufRepeatedFieldValueType MatchInfoTeams - { get => new ProtobufRepeatedFieldValueType(Accessor, "match_info_teams"); } - -} + public CPreMatchInfoData_TeamStatsImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int MatchInfoIdxtxt + { get => Accessor.GetInt32("match_info_idxtxt"); set => Accessor.SetInt32("match_info_idxtxt", value); } + public string MatchInfoTxt + { get => Accessor.GetString("match_info_txt"); set => Accessor.SetString("match_info_txt", value); } + public IProtobufRepeatedFieldValueType MatchInfoTeams + { get => new ProtobufRepeatedFieldValueType(Accessor, "match_info_teams"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CPredictionEvent_DiagnosticImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CPredictionEvent_DiagnosticImpl.cs index 3bb868802..6c3557a7f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CPredictionEvent_DiagnosticImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CPredictionEvent_DiagnosticImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CPredictionEvent_DiagnosticImpl : TypedProtobuf, CPredictionEvent_Diagnostic { - public CPredictionEvent_DiagnosticImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Id - { get => Accessor.GetUInt32("id"); set => Accessor.SetUInt32("id", value); } - - - public uint RequestedSync - { get => Accessor.GetUInt32("requested_sync"); set => Accessor.SetUInt32("requested_sync", value); } - - - public uint RequestedPlayerIndex - { get => Accessor.GetUInt32("requested_player_index"); set => Accessor.SetUInt32("requested_player_index", value); } - - - public IProtobufRepeatedFieldValueType ExecutionSync - { get => new ProtobufRepeatedFieldValueType(Accessor, "execution_sync"); } - -} + public CPredictionEvent_DiagnosticImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Id + { get => Accessor.GetUInt32("id"); set => Accessor.SetUInt32("id", value); } + public uint RequestedSync + { get => Accessor.GetUInt32("requested_sync"); set => Accessor.SetUInt32("requested_sync", value); } + public uint RequestedPlayerIndex + { get => Accessor.GetUInt32("requested_player_index"); set => Accessor.SetUInt32("requested_player_index", value); } + public IProtobufRepeatedFieldValueType ExecutionSync + { get => new ProtobufRepeatedFieldValueType(Accessor, "execution_sync"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CPredictionEvent_StringCommandImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CPredictionEvent_StringCommandImpl.cs index 7b2ad9ea3..2b1e9c317 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CPredictionEvent_StringCommandImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CPredictionEvent_StringCommandImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CPredictionEvent_StringCommandImpl : TypedProtobuf, CPredictionEvent_StringCommand { - public CPredictionEvent_StringCommandImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string Command - { get => Accessor.GetString("command"); set => Accessor.SetString("command", value); } + public CPredictionEvent_StringCommandImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public string Command + { get => Accessor.GetString("command"); set => Accessor.SetString("command", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CPredictionEvent_TeleportImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CPredictionEvent_TeleportImpl.cs index 2c717e4b3..5e8c48fcc 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CPredictionEvent_TeleportImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CPredictionEvent_TeleportImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CPredictionEvent_TeleportImpl : TypedProtobuf, CPredictionEvent_Teleport { - public CPredictionEvent_TeleportImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public Vector Origin - { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } - - - public QAngle Angles - { get => Accessor.GetQAngle("angles"); set => Accessor.SetQAngle("angles", value); } - - - public float DropToGroundRange - { get => Accessor.GetFloat("drop_to_ground_range"); set => Accessor.SetFloat("drop_to_ground_range", value); } - -} + public CPredictionEvent_TeleportImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public Vector Origin + { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } + public QAngle Angles + { get => Accessor.GetQAngle("angles"); set => Accessor.SetQAngle("angles", value); } + public float DropToGroundRange + { get => Accessor.GetFloat("drop_to_ground_range"); set => Accessor.SetFloat("drop_to_ground_range", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CProductInfo_SetRichPresenceLocalization_RequestImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CProductInfo_SetRichPresenceLocalization_RequestImpl.cs index de773403b..b5b115dd2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CProductInfo_SetRichPresenceLocalization_RequestImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CProductInfo_SetRichPresenceLocalization_RequestImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CProductInfo_SetRichPresenceLocalization_RequestImpl : TypedProtobuf, CProductInfo_SetRichPresenceLocalization_Request { - public CProductInfo_SetRichPresenceLocalization_RequestImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Appid - { get => Accessor.GetUInt32("appid"); set => Accessor.SetUInt32("appid", value); } - - - public IProtobufRepeatedFieldSubMessageType Languages - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "languages"); } - - - public ulong Steamid - { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } - -} + public CProductInfo_SetRichPresenceLocalization_RequestImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Appid + { get => Accessor.GetUInt32("appid"); set => Accessor.SetUInt32("appid", value); } + public IProtobufRepeatedFieldSubMessageType Languages + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "languages"); } + public ulong Steamid + { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CProductInfo_SetRichPresenceLocalization_Request_LanguageSectionImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CProductInfo_SetRichPresenceLocalization_Request_LanguageSectionImpl.cs index ca62f8e62..394d934bf 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CProductInfo_SetRichPresenceLocalization_Request_LanguageSectionImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CProductInfo_SetRichPresenceLocalization_Request_LanguageSectionImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CProductInfo_SetRichPresenceLocalization_Request_LanguageSectionImpl : TypedProtobuf, CProductInfo_SetRichPresenceLocalization_Request_LanguageSection { - public CProductInfo_SetRichPresenceLocalization_Request_LanguageSectionImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string Language - { get => Accessor.GetString("language"); set => Accessor.SetString("language", value); } - - - public IProtobufRepeatedFieldSubMessageType Tokens - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "tokens"); } - -} + public CProductInfo_SetRichPresenceLocalization_Request_LanguageSectionImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string Language + { get => Accessor.GetString("language"); set => Accessor.SetString("language", value); } + public IProtobufRepeatedFieldSubMessageType Tokens + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "tokens"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CProductInfo_SetRichPresenceLocalization_Request_TokenImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CProductInfo_SetRichPresenceLocalization_Request_TokenImpl.cs index f0c633b3f..a029d8522 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CProductInfo_SetRichPresenceLocalization_Request_TokenImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CProductInfo_SetRichPresenceLocalization_Request_TokenImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CProductInfo_SetRichPresenceLocalization_Request_TokenImpl : TypedProtobuf, CProductInfo_SetRichPresenceLocalization_Request_Token { - public CProductInfo_SetRichPresenceLocalization_Request_TokenImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string Token - { get => Accessor.GetString("token"); set => Accessor.SetString("token", value); } - - - public string Value - { get => Accessor.GetString("value"); set => Accessor.SetString("value", value); } - -} + public CProductInfo_SetRichPresenceLocalization_Request_TokenImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string Token + { get => Accessor.GetString("token"); set => Accessor.SetString("token", value); } + public string Value + { get => Accessor.GetString("value"); set => Accessor.SetString("value", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CProductInfo_SetRichPresenceLocalization_ResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CProductInfo_SetRichPresenceLocalization_ResponseImpl.cs index 6206b4af2..918c96ade 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CProductInfo_SetRichPresenceLocalization_ResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CProductInfo_SetRichPresenceLocalization_ResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,9 +8,8 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CProductInfo_SetRichPresenceLocalization_ResponseImpl : TypedProtobuf, CProductInfo_SetRichPresenceLocalization_Response { - public CProductInfo_SetRichPresenceLocalization_ResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - + public CProductInfo_SetRichPresenceLocalization_ResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CQuest_PublisherAddCommunityItemsToPlayer_RequestImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CQuest_PublisherAddCommunityItemsToPlayer_RequestImpl.cs index 21b096469..5b8b9fdbc 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CQuest_PublisherAddCommunityItemsToPlayer_RequestImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CQuest_PublisherAddCommunityItemsToPlayer_RequestImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,36 +8,22 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CQuest_PublisherAddCommunityItemsToPlayer_RequestImpl : TypedProtobuf, CQuest_PublisherAddCommunityItemsToPlayer_Request { - public CQuest_PublisherAddCommunityItemsToPlayer_RequestImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Steamid - { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } - - - public uint Appid - { get => Accessor.GetUInt32("appid"); set => Accessor.SetUInt32("appid", value); } - - - public uint MatchItemType - { get => Accessor.GetUInt32("match_item_type"); set => Accessor.SetUInt32("match_item_type", value); } - - - public uint MatchItemClass - { get => Accessor.GetUInt32("match_item_class"); set => Accessor.SetUInt32("match_item_class", value); } - - - public string PrefixItemName - { get => Accessor.GetString("prefix_item_name"); set => Accessor.SetString("prefix_item_name", value); } - - - public IProtobufRepeatedFieldSubMessageType Attributes - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "attributes"); } - - - public string Note - { get => Accessor.GetString("note"); set => Accessor.SetString("note", value); } - -} + public CQuest_PublisherAddCommunityItemsToPlayer_RequestImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong Steamid + { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } + public uint Appid + { get => Accessor.GetUInt32("appid"); set => Accessor.SetUInt32("appid", value); } + public uint MatchItemType + { get => Accessor.GetUInt32("match_item_type"); set => Accessor.SetUInt32("match_item_type", value); } + public uint MatchItemClass + { get => Accessor.GetUInt32("match_item_class"); set => Accessor.SetUInt32("match_item_class", value); } + public string PrefixItemName + { get => Accessor.GetString("prefix_item_name"); set => Accessor.SetString("prefix_item_name", value); } + public IProtobufRepeatedFieldSubMessageType Attributes + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "attributes"); } + public string Note + { get => Accessor.GetString("note"); set => Accessor.SetString("note", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CQuest_PublisherAddCommunityItemsToPlayer_Request_AttributeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CQuest_PublisherAddCommunityItemsToPlayer_Request_AttributeImpl.cs index 470f90f27..973c6c4ac 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CQuest_PublisherAddCommunityItemsToPlayer_Request_AttributeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CQuest_PublisherAddCommunityItemsToPlayer_Request_AttributeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CQuest_PublisherAddCommunityItemsToPlayer_Request_AttributeImpl : TypedProtobuf, CQuest_PublisherAddCommunityItemsToPlayer_Request_Attribute { - public CQuest_PublisherAddCommunityItemsToPlayer_Request_AttributeImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Attribute - { get => Accessor.GetUInt32("attribute"); set => Accessor.SetUInt32("attribute", value); } - - - public ulong Value - { get => Accessor.GetUInt64("value"); set => Accessor.SetUInt64("value", value); } - -} + public CQuest_PublisherAddCommunityItemsToPlayer_Request_AttributeImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Attribute + { get => Accessor.GetUInt32("attribute"); set => Accessor.SetUInt32("attribute", value); } + public ulong Value + { get => Accessor.GetUInt64("value"); set => Accessor.SetUInt64("value", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CQuest_PublisherAddCommunityItemsToPlayer_ResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CQuest_PublisherAddCommunityItemsToPlayer_ResponseImpl.cs index f4bb4c62c..b01fc661b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CQuest_PublisherAddCommunityItemsToPlayer_ResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CQuest_PublisherAddCommunityItemsToPlayer_ResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CQuest_PublisherAddCommunityItemsToPlayer_ResponseImpl : TypedProtobuf, CQuest_PublisherAddCommunityItemsToPlayer_Response { - public CQuest_PublisherAddCommunityItemsToPlayer_ResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint ItemsMatched - { get => Accessor.GetUInt32("items_matched"); set => Accessor.SetUInt32("items_matched", value); } - - - public uint ItemsGranted - { get => Accessor.GetUInt32("items_granted"); set => Accessor.SetUInt32("items_granted", value); } - -} + public CQuest_PublisherAddCommunityItemsToPlayer_ResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint ItemsMatched + { get => Accessor.GetUInt32("items_matched"); set => Accessor.SetUInt32("items_matched", value); } + public uint ItemsGranted + { get => Accessor.GetUInt32("items_granted"); set => Accessor.SetUInt32("items_granted", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSGOInputHistoryEntryPBImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSGOInputHistoryEntryPBImpl.cs index 608ca6589..3b3a8ea53 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSGOInputHistoryEntryPBImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSGOInputHistoryEntryPBImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,68 +8,38 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSGOInputHistoryEntryPBImpl : TypedProtobuf, CSGOInputHistoryEntryPB { - public CSGOInputHistoryEntryPBImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public QAngle ViewAngles - { get => Accessor.GetQAngle("view_angles"); set => Accessor.SetQAngle("view_angles", value); } - - - public int RenderTickCount - { get => Accessor.GetInt32("render_tick_count"); set => Accessor.SetInt32("render_tick_count", value); } - - - public float RenderTickFraction - { get => Accessor.GetFloat("render_tick_fraction"); set => Accessor.SetFloat("render_tick_fraction", value); } - - - public int PlayerTickCount - { get => Accessor.GetInt32("player_tick_count"); set => Accessor.SetInt32("player_tick_count", value); } - - - public float PlayerTickFraction - { get => Accessor.GetFloat("player_tick_fraction"); set => Accessor.SetFloat("player_tick_fraction", value); } - - - public CSGOInterpolationInfoPB_CL ClInterp - { get => new CSGOInterpolationInfoPB_CLImpl(NativeNetMessages.GetNestedMessage(Address, "cl_interp"), false); } - - - public CSGOInterpolationInfoPB SvInterp0 - { get => new CSGOInterpolationInfoPBImpl(NativeNetMessages.GetNestedMessage(Address, "sv_interp0"), false); } - - - public CSGOInterpolationInfoPB SvInterp1 - { get => new CSGOInterpolationInfoPBImpl(NativeNetMessages.GetNestedMessage(Address, "sv_interp1"), false); } - - - public CSGOInterpolationInfoPB PlayerInterp - { get => new CSGOInterpolationInfoPBImpl(NativeNetMessages.GetNestedMessage(Address, "player_interp"), false); } - - - public int FrameNumber - { get => Accessor.GetInt32("frame_number"); set => Accessor.SetInt32("frame_number", value); } - - - public int TargetEntIndex - { get => Accessor.GetInt32("target_ent_index"); set => Accessor.SetInt32("target_ent_index", value); } - - - public Vector ShootPosition - { get => Accessor.GetVector("shoot_position"); set => Accessor.SetVector("shoot_position", value); } - - - public Vector TargetHeadPosCheck - { get => Accessor.GetVector("target_head_pos_check"); set => Accessor.SetVector("target_head_pos_check", value); } - - - public Vector TargetAbsPosCheck - { get => Accessor.GetVector("target_abs_pos_check"); set => Accessor.SetVector("target_abs_pos_check", value); } - - - public QAngle TargetAbsAngCheck - { get => Accessor.GetQAngle("target_abs_ang_check"); set => Accessor.SetQAngle("target_abs_ang_check", value); } - -} + public CSGOInputHistoryEntryPBImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public QAngle ViewAngles + { get => Accessor.GetQAngle("view_angles"); set => Accessor.SetQAngle("view_angles", value); } + public int RenderTickCount + { get => Accessor.GetInt32("render_tick_count"); set => Accessor.SetInt32("render_tick_count", value); } + public float RenderTickFraction + { get => Accessor.GetFloat("render_tick_fraction"); set => Accessor.SetFloat("render_tick_fraction", value); } + public int PlayerTickCount + { get => Accessor.GetInt32("player_tick_count"); set => Accessor.SetInt32("player_tick_count", value); } + public float PlayerTickFraction + { get => Accessor.GetFloat("player_tick_fraction"); set => Accessor.SetFloat("player_tick_fraction", value); } + public CSGOInterpolationInfoPB_CL ClInterp + { get => new CSGOInterpolationInfoPB_CLImpl(NativeNetMessages.GetNestedMessage(Address, "cl_interp"), false); } + public CSGOInterpolationInfoPB SvInterp0 + { get => new CSGOInterpolationInfoPBImpl(NativeNetMessages.GetNestedMessage(Address, "sv_interp0"), false); } + public CSGOInterpolationInfoPB SvInterp1 + { get => new CSGOInterpolationInfoPBImpl(NativeNetMessages.GetNestedMessage(Address, "sv_interp1"), false); } + public CSGOInterpolationInfoPB PlayerInterp + { get => new CSGOInterpolationInfoPBImpl(NativeNetMessages.GetNestedMessage(Address, "player_interp"), false); } + public int FrameNumber + { get => Accessor.GetInt32("frame_number"); set => Accessor.SetInt32("frame_number", value); } + public int TargetEntIndex + { get => Accessor.GetInt32("target_ent_index"); set => Accessor.SetInt32("target_ent_index", value); } + public Vector ShootPosition + { get => Accessor.GetVector("shoot_position"); set => Accessor.SetVector("shoot_position", value); } + public Vector TargetHeadPosCheck + { get => Accessor.GetVector("target_head_pos_check"); set => Accessor.SetVector("target_head_pos_check", value); } + public Vector TargetAbsPosCheck + { get => Accessor.GetVector("target_abs_pos_check"); set => Accessor.SetVector("target_abs_pos_check", value); } + public QAngle TargetAbsAngCheck + { get => Accessor.GetQAngle("target_abs_ang_check"); set => Accessor.SetQAngle("target_abs_ang_check", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSGOInterpolationInfoPBImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSGOInterpolationInfoPBImpl.cs index 8003a69bf..f68c5cc79 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSGOInterpolationInfoPBImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSGOInterpolationInfoPBImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSGOInterpolationInfoPBImpl : TypedProtobuf, CSGOInterpolationInfoPB { - public CSGOInterpolationInfoPBImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int SrcTick - { get => Accessor.GetInt32("src_tick"); set => Accessor.SetInt32("src_tick", value); } - - - public int DstTick - { get => Accessor.GetInt32("dst_tick"); set => Accessor.SetInt32("dst_tick", value); } - - - public float Frac - { get => Accessor.GetFloat("frac"); set => Accessor.SetFloat("frac", value); } - -} + public CSGOInterpolationInfoPBImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int SrcTick + { get => Accessor.GetInt32("src_tick"); set => Accessor.SetInt32("src_tick", value); } + public int DstTick + { get => Accessor.GetInt32("dst_tick"); set => Accessor.SetInt32("dst_tick", value); } + public float Frac + { get => Accessor.GetFloat("frac"); set => Accessor.SetFloat("frac", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSGOInterpolationInfoPB_CLImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSGOInterpolationInfoPB_CLImpl.cs index bcb722b37..70a1c820d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSGOInterpolationInfoPB_CLImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSGOInterpolationInfoPB_CLImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSGOInterpolationInfoPB_CLImpl : TypedProtobuf, CSGOInterpolationInfoPB_CL { - public CSGOInterpolationInfoPB_CLImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public float Frac - { get => Accessor.GetFloat("frac"); set => Accessor.SetFloat("frac", value); } + public CSGOInterpolationInfoPB_CLImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public float Frac + { get => Accessor.GetFloat("frac"); set => Accessor.SetFloat("frac", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSGOUserCmdPBImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSGOUserCmdPBImpl.cs index 8273485b5..a27281889 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSGOUserCmdPBImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSGOUserCmdPBImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,40 +8,24 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSGOUserCmdPBImpl : TypedProtobuf, CSGOUserCmdPB { - public CSGOUserCmdPBImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public CBaseUserCmdPB Base - { get => new CBaseUserCmdPBImpl(NativeNetMessages.GetNestedMessage(Address, "base"), false); } - - - public IProtobufRepeatedFieldSubMessageType InputHistory - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "input_history"); } - - - public int Attack1StartHistoryIndex - { get => Accessor.GetInt32("attack1_start_history_index"); set => Accessor.SetInt32("attack1_start_history_index", value); } - - - public int Attack2StartHistoryIndex - { get => Accessor.GetInt32("attack2_start_history_index"); set => Accessor.SetInt32("attack2_start_history_index", value); } - - - public bool LeftHandDesired - { get => Accessor.GetBool("left_hand_desired"); set => Accessor.SetBool("left_hand_desired", value); } - - - public bool IsPredictingBodyShotFx - { get => Accessor.GetBool("is_predicting_body_shot_fx"); set => Accessor.SetBool("is_predicting_body_shot_fx", value); } - - - public bool IsPredictingHeadShotFx - { get => Accessor.GetBool("is_predicting_head_shot_fx"); set => Accessor.SetBool("is_predicting_head_shot_fx", value); } - - - public bool IsPredictingKillRagdolls - { get => Accessor.GetBool("is_predicting_kill_ragdolls"); set => Accessor.SetBool("is_predicting_kill_ragdolls", value); } - -} + public CSGOUserCmdPBImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public CBaseUserCmdPB Base + { get => new CBaseUserCmdPBImpl(NativeNetMessages.GetNestedMessage(Address, "base"), false); } + public IProtobufRepeatedFieldSubMessageType InputHistory + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "input_history"); } + public int Attack1StartHistoryIndex + { get => Accessor.GetInt32("attack1_start_history_index"); set => Accessor.SetInt32("attack1_start_history_index", value); } + public int Attack2StartHistoryIndex + { get => Accessor.GetInt32("attack2_start_history_index"); set => Accessor.SetInt32("attack2_start_history_index", value); } + public bool LeftHandDesired + { get => Accessor.GetBool("left_hand_desired"); set => Accessor.SetBool("left_hand_desired", value); } + public bool IsPredictingBodyShotFx + { get => Accessor.GetBool("is_predicting_body_shot_fx"); set => Accessor.SetBool("is_predicting_body_shot_fx", value); } + public bool IsPredictingHeadShotFx + { get => Accessor.GetBool("is_predicting_head_shot_fx"); set => Accessor.SetBool("is_predicting_head_shot_fx", value); } + public bool IsPredictingKillRagdolls + { get => Accessor.GetBool("is_predicting_kill_ragdolls"); set => Accessor.SetBool("is_predicting_kill_ragdolls", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOAccountItemPersonalStoreImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOAccountItemPersonalStoreImpl.cs index eded23438..8a0bfc481 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOAccountItemPersonalStoreImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOAccountItemPersonalStoreImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSOAccountItemPersonalStoreImpl : TypedProtobuf, CSOAccountItemPersonalStore { - public CSOAccountItemPersonalStoreImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint GenerationTime - { get => Accessor.GetUInt32("generation_time"); set => Accessor.SetUInt32("generation_time", value); } - - - public uint RedeemableBalance - { get => Accessor.GetUInt32("redeemable_balance"); set => Accessor.SetUInt32("redeemable_balance", value); } - - - public IProtobufRepeatedFieldValueType Items - { get => new ProtobufRepeatedFieldValueType(Accessor, "items"); } - -} + public CSOAccountItemPersonalStoreImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint GenerationTime + { get => Accessor.GetUInt32("generation_time"); set => Accessor.SetUInt32("generation_time", value); } + public uint RedeemableBalance + { get => Accessor.GetUInt32("redeemable_balance"); set => Accessor.SetUInt32("redeemable_balance", value); } + public IProtobufRepeatedFieldValueType Items + { get => new ProtobufRepeatedFieldValueType(Accessor, "items"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOAccountKeychainRemoveToolChargesImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOAccountKeychainRemoveToolChargesImpl.cs index 8bbaa8254..2bbfef4a2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOAccountKeychainRemoveToolChargesImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOAccountKeychainRemoveToolChargesImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSOAccountKeychainRemoveToolChargesImpl : TypedProtobuf, CSOAccountKeychainRemoveToolCharges { - public CSOAccountKeychainRemoveToolChargesImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Charges - { get => Accessor.GetUInt32("charges"); set => Accessor.SetUInt32("charges", value); } + public CSOAccountKeychainRemoveToolChargesImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public uint Charges + { get => Accessor.GetUInt32("charges"); set => Accessor.SetUInt32("charges", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOAccountRecurringMissionImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOAccountRecurringMissionImpl.cs index ec0bc162b..aeafa7d77 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOAccountRecurringMissionImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOAccountRecurringMissionImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSOAccountRecurringMissionImpl : TypedProtobuf, CSOAccountRecurringMission { - public CSOAccountRecurringMissionImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint AccountId - { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } - - - public uint MissionId - { get => Accessor.GetUInt32("mission_id"); set => Accessor.SetUInt32("mission_id", value); } - - - public uint Period - { get => Accessor.GetUInt32("period"); set => Accessor.SetUInt32("period", value); } - - - public uint Progress - { get => Accessor.GetUInt32("progress"); set => Accessor.SetUInt32("progress", value); } - -} + public CSOAccountRecurringMissionImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint AccountId + { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } + public uint MissionId + { get => Accessor.GetUInt32("mission_id"); set => Accessor.SetUInt32("mission_id", value); } + public uint Period + { get => Accessor.GetUInt32("period"); set => Accessor.SetUInt32("period", value); } + public uint Progress + { get => Accessor.GetUInt32("progress"); set => Accessor.SetUInt32("progress", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOAccountRecurringSubscriptionImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOAccountRecurringSubscriptionImpl.cs index 9bc9fb265..0e951ebe4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOAccountRecurringSubscriptionImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOAccountRecurringSubscriptionImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSOAccountRecurringSubscriptionImpl : TypedProtobuf, CSOAccountRecurringSubscription { - public CSOAccountRecurringSubscriptionImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint TimeNextCycle - { get => Accessor.GetUInt32("time_next_cycle"); set => Accessor.SetUInt32("time_next_cycle", value); } - - - public uint TimeInitiated - { get => Accessor.GetUInt32("time_initiated"); set => Accessor.SetUInt32("time_initiated", value); } - -} + public CSOAccountRecurringSubscriptionImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint TimeNextCycle + { get => Accessor.GetUInt32("time_next_cycle"); set => Accessor.SetUInt32("time_next_cycle", value); } + public uint TimeInitiated + { get => Accessor.GetUInt32("time_initiated"); set => Accessor.SetUInt32("time_initiated", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOAccountSeasonalOperationImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOAccountSeasonalOperationImpl.cs index 9c6fd046a..4f45ed3d4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOAccountSeasonalOperationImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOAccountSeasonalOperationImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,36 +8,22 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSOAccountSeasonalOperationImpl : TypedProtobuf, CSOAccountSeasonalOperation { - public CSOAccountSeasonalOperationImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint SeasonValue - { get => Accessor.GetUInt32("season_value"); set => Accessor.SetUInt32("season_value", value); } - - - public uint TierUnlocked - { get => Accessor.GetUInt32("tier_unlocked"); set => Accessor.SetUInt32("tier_unlocked", value); } - - - public uint PremiumTiers - { get => Accessor.GetUInt32("premium_tiers"); set => Accessor.SetUInt32("premium_tiers", value); } - - - public uint MissionId - { get => Accessor.GetUInt32("mission_id"); set => Accessor.SetUInt32("mission_id", value); } - - - public uint MissionsCompleted - { get => Accessor.GetUInt32("missions_completed"); set => Accessor.SetUInt32("missions_completed", value); } - - - public uint RedeemableBalance - { get => Accessor.GetUInt32("redeemable_balance"); set => Accessor.SetUInt32("redeemable_balance", value); } - - - public uint SeasonPassTime - { get => Accessor.GetUInt32("season_pass_time"); set => Accessor.SetUInt32("season_pass_time", value); } - -} + public CSOAccountSeasonalOperationImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint SeasonValue + { get => Accessor.GetUInt32("season_value"); set => Accessor.SetUInt32("season_value", value); } + public uint TierUnlocked + { get => Accessor.GetUInt32("tier_unlocked"); set => Accessor.SetUInt32("tier_unlocked", value); } + public uint PremiumTiers + { get => Accessor.GetUInt32("premium_tiers"); set => Accessor.SetUInt32("premium_tiers", value); } + public uint MissionId + { get => Accessor.GetUInt32("mission_id"); set => Accessor.SetUInt32("mission_id", value); } + public uint MissionsCompleted + { get => Accessor.GetUInt32("missions_completed"); set => Accessor.SetUInt32("missions_completed", value); } + public uint RedeemableBalance + { get => Accessor.GetUInt32("redeemable_balance"); set => Accessor.SetUInt32("redeemable_balance", value); } + public uint SeasonPassTime + { get => Accessor.GetUInt32("season_pass_time"); set => Accessor.SetUInt32("season_pass_time", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOAccountXpShopBidsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOAccountXpShopBidsImpl.cs index 194c6cec3..5a392a59a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOAccountXpShopBidsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOAccountXpShopBidsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSOAccountXpShopBidsImpl : TypedProtobuf, CSOAccountXpShopBids { - public CSOAccountXpShopBidsImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint CampaignId - { get => Accessor.GetUInt32("campaign_id"); set => Accessor.SetUInt32("campaign_id", value); } - - - public uint RedeemId - { get => Accessor.GetUInt32("redeem_id"); set => Accessor.SetUInt32("redeem_id", value); } - - - public uint ExpectedCost - { get => Accessor.GetUInt32("expected_cost"); set => Accessor.SetUInt32("expected_cost", value); } - - - public uint GenerationTime - { get => Accessor.GetUInt32("generation_time"); set => Accessor.SetUInt32("generation_time", value); } - -} + public CSOAccountXpShopBidsImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint CampaignId + { get => Accessor.GetUInt32("campaign_id"); set => Accessor.SetUInt32("campaign_id", value); } + public uint RedeemId + { get => Accessor.GetUInt32("redeem_id"); set => Accessor.SetUInt32("redeem_id", value); } + public uint ExpectedCost + { get => Accessor.GetUInt32("expected_cost"); set => Accessor.SetUInt32("expected_cost", value); } + public uint GenerationTime + { get => Accessor.GetUInt32("generation_time"); set => Accessor.SetUInt32("generation_time", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOAccountXpShopImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOAccountXpShopImpl.cs index 05865b418..77d88e4d5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOAccountXpShopImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOAccountXpShopImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSOAccountXpShopImpl : TypedProtobuf, CSOAccountXpShop { - public CSOAccountXpShopImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint GenerationTime - { get => Accessor.GetUInt32("generation_time"); set => Accessor.SetUInt32("generation_time", value); } - - - public uint RedeemableBalance - { get => Accessor.GetUInt32("redeemable_balance"); set => Accessor.SetUInt32("redeemable_balance", value); } - - - public IProtobufRepeatedFieldValueType XpTracks - { get => new ProtobufRepeatedFieldValueType(Accessor, "xp_tracks"); } - -} + public CSOAccountXpShopImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint GenerationTime + { get => Accessor.GetUInt32("generation_time"); set => Accessor.SetUInt32("generation_time", value); } + public uint RedeemableBalance + { get => Accessor.GetUInt32("redeemable_balance"); set => Accessor.SetUInt32("redeemable_balance", value); } + public IProtobufRepeatedFieldValueType XpTracks + { get => new ProtobufRepeatedFieldValueType(Accessor, "xp_tracks"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconClaimCodeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconClaimCodeImpl.cs index 280641eb8..8d5f97525 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconClaimCodeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconClaimCodeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSOEconClaimCodeImpl : TypedProtobuf, CSOEconClaimCode { - public CSOEconClaimCodeImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint AccountId - { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } - - - public uint CodeType - { get => Accessor.GetUInt32("code_type"); set => Accessor.SetUInt32("code_type", value); } - - - public uint TimeAcquired - { get => Accessor.GetUInt32("time_acquired"); set => Accessor.SetUInt32("time_acquired", value); } - - - public string Code - { get => Accessor.GetString("code"); set => Accessor.SetString("code", value); } - -} + public CSOEconClaimCodeImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint AccountId + { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } + public uint CodeType + { get => Accessor.GetUInt32("code_type"); set => Accessor.SetUInt32("code_type", value); } + public uint TimeAcquired + { get => Accessor.GetUInt32("time_acquired"); set => Accessor.SetUInt32("time_acquired", value); } + public string Code + { get => Accessor.GetString("code"); set => Accessor.SetString("code", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconCouponImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconCouponImpl.cs index 90046074b..a5ebe52f7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconCouponImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconCouponImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSOEconCouponImpl : TypedProtobuf, CSOEconCoupon { - public CSOEconCouponImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Entryid - { get => Accessor.GetUInt32("entryid"); set => Accessor.SetUInt32("entryid", value); } - - - public uint Defidx - { get => Accessor.GetUInt32("defidx"); set => Accessor.SetUInt32("defidx", value); } - - - public uint ExpirationDate - { get => Accessor.GetUInt32("expiration_date"); set => Accessor.SetUInt32("expiration_date", value); } - -} + public CSOEconCouponImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Entryid + { get => Accessor.GetUInt32("entryid"); set => Accessor.SetUInt32("entryid", value); } + public uint Defidx + { get => Accessor.GetUInt32("defidx"); set => Accessor.SetUInt32("defidx", value); } + public uint ExpirationDate + { get => Accessor.GetUInt32("expiration_date"); set => Accessor.SetUInt32("expiration_date", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconDefaultEquippedDefinitionInstanceClientImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconDefaultEquippedDefinitionInstanceClientImpl.cs deleted file mode 100644 index 0a2fcf4f2..000000000 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconDefaultEquippedDefinitionInstanceClientImpl.cs +++ /dev/null @@ -1,32 +0,0 @@ - -using SwiftlyS2.Core.Natives; -using SwiftlyS2.Core.NetMessages; -using SwiftlyS2.Shared.Natives; -using SwiftlyS2.Shared.NetMessages; -using SwiftlyS2.Shared.ProtobufDefinitions; - -namespace SwiftlyS2.Core.ProtobufDefinitions; - -internal class CSOEconDefaultEquippedDefinitionInstanceClientImpl : TypedProtobuf, CSOEconDefaultEquippedDefinitionInstanceClient -{ - public CSOEconDefaultEquippedDefinitionInstanceClientImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint AccountId - { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } - - - public uint ItemDefinition - { get => Accessor.GetUInt32("item_definition"); set => Accessor.SetUInt32("item_definition", value); } - - - public uint ClassId - { get => Accessor.GetUInt32("class_id"); set => Accessor.SetUInt32("class_id", value); } - - - public uint SlotId - { get => Accessor.GetUInt32("slot_id"); set => Accessor.SetUInt32("slot_id", value); } - -} diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconEquipSlotImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconEquipSlotImpl.cs index 8c74a0784..b0a910ee9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconEquipSlotImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconEquipSlotImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSOEconEquipSlotImpl : TypedProtobuf, CSOEconEquipSlot { - public CSOEconEquipSlotImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint AccountId - { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } - - - public uint ClassId - { get => Accessor.GetUInt32("class_id"); set => Accessor.SetUInt32("class_id", value); } - - - public uint SlotId - { get => Accessor.GetUInt32("slot_id"); set => Accessor.SetUInt32("slot_id", value); } - - - public ulong ItemId - { get => Accessor.GetUInt64("item_id"); set => Accessor.SetUInt64("item_id", value); } - - - public uint ItemDefinition - { get => Accessor.GetUInt32("item_definition"); set => Accessor.SetUInt32("item_definition", value); } - -} + public CSOEconEquipSlotImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint AccountId + { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } + public uint ClassId + { get => Accessor.GetUInt32("class_id"); set => Accessor.SetUInt32("class_id", value); } + public uint SlotId + { get => Accessor.GetUInt32("slot_id"); set => Accessor.SetUInt32("slot_id", value); } + public ulong ItemId + { get => Accessor.GetUInt64("item_id"); set => Accessor.SetUInt64("item_id", value); } + public uint ItemDefinition + { get => Accessor.GetUInt32("item_definition"); set => Accessor.SetUInt32("item_definition", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconGameAccountClientImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconGameAccountClientImpl.cs index 013d094fe..db4f9822c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconGameAccountClientImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconGameAccountClientImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,32 +8,20 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSOEconGameAccountClientImpl : TypedProtobuf, CSOEconGameAccountClient { - public CSOEconGameAccountClientImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint AdditionalBackpackSlots - { get => Accessor.GetUInt32("additional_backpack_slots"); set => Accessor.SetUInt32("additional_backpack_slots", value); } - - - public uint TradeBanExpiration - { get => Accessor.GetUInt32("trade_ban_expiration"); set => Accessor.SetUInt32("trade_ban_expiration", value); } - - - public uint BonusXpTimestampRefresh - { get => Accessor.GetUInt32("bonus_xp_timestamp_refresh"); set => Accessor.SetUInt32("bonus_xp_timestamp_refresh", value); } - - - public uint BonusXpUsedflags - { get => Accessor.GetUInt32("bonus_xp_usedflags"); set => Accessor.SetUInt32("bonus_xp_usedflags", value); } - - - public uint ElevatedState - { get => Accessor.GetUInt32("elevated_state"); set => Accessor.SetUInt32("elevated_state", value); } - - - public uint ElevatedTimestamp - { get => Accessor.GetUInt32("elevated_timestamp"); set => Accessor.SetUInt32("elevated_timestamp", value); } - -} + public CSOEconGameAccountClientImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint AdditionalBackpackSlots + { get => Accessor.GetUInt32("additional_backpack_slots"); set => Accessor.SetUInt32("additional_backpack_slots", value); } + public uint TradeBanExpiration + { get => Accessor.GetUInt32("trade_ban_expiration"); set => Accessor.SetUInt32("trade_ban_expiration", value); } + public uint BonusXpTimestampRefresh + { get => Accessor.GetUInt32("bonus_xp_timestamp_refresh"); set => Accessor.SetUInt32("bonus_xp_timestamp_refresh", value); } + public uint BonusXpUsedflags + { get => Accessor.GetUInt32("bonus_xp_usedflags"); set => Accessor.SetUInt32("bonus_xp_usedflags", value); } + public uint ElevatedState + { get => Accessor.GetUInt32("elevated_state"); set => Accessor.SetUInt32("elevated_state", value); } + public uint ElevatedTimestamp + { get => Accessor.GetUInt32("elevated_timestamp"); set => Accessor.SetUInt32("elevated_timestamp", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconItemAttributeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconItemAttributeImpl.cs index 772a3b316..3dfb358e6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconItemAttributeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconItemAttributeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSOEconItemAttributeImpl : TypedProtobuf, CSOEconItemAttribute { - public CSOEconItemAttributeImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint DefIndex - { get => Accessor.GetUInt32("def_index"); set => Accessor.SetUInt32("def_index", value); } - - - public uint Value - { get => Accessor.GetUInt32("value"); set => Accessor.SetUInt32("value", value); } - - - public byte[] ValueBytes - { get => Accessor.GetBytes("value_bytes"); set => Accessor.SetBytes("value_bytes", value); } - -} + public CSOEconItemAttributeImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint DefIndex + { get => Accessor.GetUInt32("def_index"); set => Accessor.SetUInt32("def_index", value); } + public uint Value + { get => Accessor.GetUInt32("value"); set => Accessor.SetUInt32("value", value); } + public byte[] ValueBytes + { get => Accessor.GetBytes("value_bytes"); set => Accessor.SetBytes("value_bytes", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconItemDropRateBonusImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconItemDropRateBonusImpl.cs index 463995ad3..11d3ee2eb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconItemDropRateBonusImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconItemDropRateBonusImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,32 +8,20 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSOEconItemDropRateBonusImpl : TypedProtobuf, CSOEconItemDropRateBonus { - public CSOEconItemDropRateBonusImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint AccountId - { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } - - - public uint ExpirationDate - { get => Accessor.GetUInt32("expiration_date"); set => Accessor.SetUInt32("expiration_date", value); } - - - public float Bonus - { get => Accessor.GetFloat("bonus"); set => Accessor.SetFloat("bonus", value); } - - - public uint BonusCount - { get => Accessor.GetUInt32("bonus_count"); set => Accessor.SetUInt32("bonus_count", value); } - - - public ulong ItemId - { get => Accessor.GetUInt64("item_id"); set => Accessor.SetUInt64("item_id", value); } - - - public uint DefIndex - { get => Accessor.GetUInt32("def_index"); set => Accessor.SetUInt32("def_index", value); } - -} + public CSOEconItemDropRateBonusImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint AccountId + { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } + public uint ExpirationDate + { get => Accessor.GetUInt32("expiration_date"); set => Accessor.SetUInt32("expiration_date", value); } + public float Bonus + { get => Accessor.GetFloat("bonus"); set => Accessor.SetFloat("bonus", value); } + public uint BonusCount + { get => Accessor.GetUInt32("bonus_count"); set => Accessor.SetUInt32("bonus_count", value); } + public ulong ItemId + { get => Accessor.GetUInt64("item_id"); set => Accessor.SetUInt64("item_id", value); } + public uint DefIndex + { get => Accessor.GetUInt32("def_index"); set => Accessor.SetUInt32("def_index", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconItemEquippedImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconItemEquippedImpl.cs index 594badd0b..5988f91f5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconItemEquippedImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconItemEquippedImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSOEconItemEquippedImpl : TypedProtobuf, CSOEconItemEquipped { - public CSOEconItemEquippedImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint NewClass - { get => Accessor.GetUInt32("new_class"); set => Accessor.SetUInt32("new_class", value); } - - - public uint NewSlot - { get => Accessor.GetUInt32("new_slot"); set => Accessor.SetUInt32("new_slot", value); } - -} + public CSOEconItemEquippedImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint NewClass + { get => Accessor.GetUInt32("new_class"); set => Accessor.SetUInt32("new_class", value); } + public uint NewSlot + { get => Accessor.GetUInt32("new_slot"); set => Accessor.SetUInt32("new_slot", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconItemEventTicketImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconItemEventTicketImpl.cs index 10b4a5713..c714e3d6b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconItemEventTicketImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconItemEventTicketImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSOEconItemEventTicketImpl : TypedProtobuf, CSOEconItemEventTicket { - public CSOEconItemEventTicketImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint AccountId - { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } - - - public uint EventId - { get => Accessor.GetUInt32("event_id"); set => Accessor.SetUInt32("event_id", value); } - - - public ulong ItemId - { get => Accessor.GetUInt64("item_id"); set => Accessor.SetUInt64("item_id", value); } - -} + public CSOEconItemEventTicketImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint AccountId + { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } + public uint EventId + { get => Accessor.GetUInt32("event_id"); set => Accessor.SetUInt32("event_id", value); } + public ulong ItemId + { get => Accessor.GetUInt64("item_id"); set => Accessor.SetUInt64("item_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconItemImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconItemImpl.cs index 25d14505c..7974a4086 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconItemImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconItemImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,80 +8,44 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSOEconItemImpl : TypedProtobuf, CSOEconItem { - public CSOEconItemImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Id - { get => Accessor.GetUInt64("id"); set => Accessor.SetUInt64("id", value); } - - - public uint AccountId - { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } - - - public uint Inventory - { get => Accessor.GetUInt32("inventory"); set => Accessor.SetUInt32("inventory", value); } - - - public uint DefIndex - { get => Accessor.GetUInt32("def_index"); set => Accessor.SetUInt32("def_index", value); } - - - public uint Quantity - { get => Accessor.GetUInt32("quantity"); set => Accessor.SetUInt32("quantity", value); } - - - public uint Level - { get => Accessor.GetUInt32("level"); set => Accessor.SetUInt32("level", value); } - - - public uint Quality - { get => Accessor.GetUInt32("quality"); set => Accessor.SetUInt32("quality", value); } - - - public uint Flags - { get => Accessor.GetUInt32("flags"); set => Accessor.SetUInt32("flags", value); } - - - public uint Origin - { get => Accessor.GetUInt32("origin"); set => Accessor.SetUInt32("origin", value); } - - - public string CustomName - { get => Accessor.GetString("custom_name"); set => Accessor.SetString("custom_name", value); } - - - public string CustomDesc - { get => Accessor.GetString("custom_desc"); set => Accessor.SetString("custom_desc", value); } - - - public IProtobufRepeatedFieldSubMessageType Attribute - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "attribute"); } - - - public CSOEconItem InteriorItem - { get => new CSOEconItemImpl(NativeNetMessages.GetNestedMessage(Address, "interior_item"), false); } - - - public bool InUse - { get => Accessor.GetBool("in_use"); set => Accessor.SetBool("in_use", value); } - - - public uint Style - { get => Accessor.GetUInt32("style"); set => Accessor.SetUInt32("style", value); } - - - public ulong OriginalId - { get => Accessor.GetUInt64("original_id"); set => Accessor.SetUInt64("original_id", value); } - - - public IProtobufRepeatedFieldSubMessageType EquippedState - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "equipped_state"); } - - - public uint Rarity - { get => Accessor.GetUInt32("rarity"); set => Accessor.SetUInt32("rarity", value); } - -} + public CSOEconItemImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong Id + { get => Accessor.GetUInt64("id"); set => Accessor.SetUInt64("id", value); } + public uint AccountId + { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } + public uint Inventory + { get => Accessor.GetUInt32("inventory"); set => Accessor.SetUInt32("inventory", value); } + public uint DefIndex + { get => Accessor.GetUInt32("def_index"); set => Accessor.SetUInt32("def_index", value); } + public uint Quantity + { get => Accessor.GetUInt32("quantity"); set => Accessor.SetUInt32("quantity", value); } + public uint Level + { get => Accessor.GetUInt32("level"); set => Accessor.SetUInt32("level", value); } + public uint Quality + { get => Accessor.GetUInt32("quality"); set => Accessor.SetUInt32("quality", value); } + public uint Flags + { get => Accessor.GetUInt32("flags"); set => Accessor.SetUInt32("flags", value); } + public uint Origin + { get => Accessor.GetUInt32("origin"); set => Accessor.SetUInt32("origin", value); } + public string CustomName + { get => Accessor.GetString("custom_name"); set => Accessor.SetString("custom_name", value); } + public string CustomDesc + { get => Accessor.GetString("custom_desc"); set => Accessor.SetString("custom_desc", value); } + public IProtobufRepeatedFieldSubMessageType Attribute + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "attribute"); } + public CSOEconItem InteriorItem + { get => new CSOEconItemImpl(NativeNetMessages.GetNestedMessage(Address, "interior_item"), false); } + public bool InUse + { get => Accessor.GetBool("in_use"); set => Accessor.SetBool("in_use", value); } + public uint Style + { get => Accessor.GetUInt32("style"); set => Accessor.SetUInt32("style", value); } + public ulong OriginalId + { get => Accessor.GetUInt64("original_id"); set => Accessor.SetUInt64("original_id", value); } + public IProtobufRepeatedFieldSubMessageType EquippedState + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "equipped_state"); } + public uint Rarity + { get => Accessor.GetUInt32("rarity"); set => Accessor.SetUInt32("rarity", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconItemLeagueViewPassImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconItemLeagueViewPassImpl.cs index e68030c26..59db50ae5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconItemLeagueViewPassImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconItemLeagueViewPassImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSOEconItemLeagueViewPassImpl : TypedProtobuf, CSOEconItemLeagueViewPass { - public CSOEconItemLeagueViewPassImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint AccountId - { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } - - - public uint LeagueId - { get => Accessor.GetUInt32("league_id"); set => Accessor.SetUInt32("league_id", value); } - - - public uint Admin - { get => Accessor.GetUInt32("admin"); set => Accessor.SetUInt32("admin", value); } - - - public uint Itemindex - { get => Accessor.GetUInt32("itemindex"); set => Accessor.SetUInt32("itemindex", value); } - -} + public CSOEconItemLeagueViewPassImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint AccountId + { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } + public uint LeagueId + { get => Accessor.GetUInt32("league_id"); set => Accessor.SetUInt32("league_id", value); } + public uint Admin + { get => Accessor.GetUInt32("admin"); set => Accessor.SetUInt32("admin", value); } + public uint Itemindex + { get => Accessor.GetUInt32("itemindex"); set => Accessor.SetUInt32("itemindex", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconRentalHistoryImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconRentalHistoryImpl.cs index 8808ad56d..9cf768133 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconRentalHistoryImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOEconRentalHistoryImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSOEconRentalHistoryImpl : TypedProtobuf, CSOEconRentalHistory { - public CSOEconRentalHistoryImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint AccountId - { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } - - - public ulong CrateItemId - { get => Accessor.GetUInt64("crate_item_id"); set => Accessor.SetUInt64("crate_item_id", value); } - - - public uint CrateDefIndex - { get => Accessor.GetUInt32("crate_def_index"); set => Accessor.SetUInt32("crate_def_index", value); } - - - public uint IssueDate - { get => Accessor.GetUInt32("issue_date"); set => Accessor.SetUInt32("issue_date", value); } - - - public uint ExpirationDate - { get => Accessor.GetUInt32("expiration_date"); set => Accessor.SetUInt32("expiration_date", value); } - -} + public CSOEconRentalHistoryImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint AccountId + { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } + public ulong CrateItemId + { get => Accessor.GetUInt64("crate_item_id"); set => Accessor.SetUInt64("crate_item_id", value); } + public uint CrateDefIndex + { get => Accessor.GetUInt32("crate_def_index"); set => Accessor.SetUInt32("crate_def_index", value); } + public uint IssueDate + { get => Accessor.GetUInt32("issue_date"); set => Accessor.SetUInt32("issue_date", value); } + public uint ExpirationDate + { get => Accessor.GetUInt32("expiration_date"); set => Accessor.SetUInt32("expiration_date", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOGameAccountSteamChinaImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOGameAccountSteamChinaImpl.cs index 163b258c6..197a33a94 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOGameAccountSteamChinaImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOGameAccountSteamChinaImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSOGameAccountSteamChinaImpl : TypedProtobuf, CSOGameAccountSteamChina { - public CSOGameAccountSteamChinaImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint TimeLastUpdate - { get => Accessor.GetUInt32("time_last_update"); set => Accessor.SetUInt32("time_last_update", value); } - - - public uint TimeCommsBan - { get => Accessor.GetUInt32("time_comms_ban"); set => Accessor.SetUInt32("time_comms_ban", value); } - - - public uint TimePlayBan - { get => Accessor.GetUInt32("time_play_ban"); set => Accessor.SetUInt32("time_play_ban", value); } - -} + public CSOGameAccountSteamChinaImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint TimeLastUpdate + { get => Accessor.GetUInt32("time_last_update"); set => Accessor.SetUInt32("time_last_update", value); } + public uint TimeCommsBan + { get => Accessor.GetUInt32("time_comms_ban"); set => Accessor.SetUInt32("time_comms_ban", value); } + public uint TimePlayBan + { get => Accessor.GetUInt32("time_play_ban"); set => Accessor.SetUInt32("time_play_ban", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOItemCriteriaConditionImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOItemCriteriaConditionImpl.cs index 62ecf8796..6f4034600 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOItemCriteriaConditionImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOItemCriteriaConditionImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSOItemCriteriaConditionImpl : TypedProtobuf, CSOItemCriteriaCondition { - public CSOItemCriteriaConditionImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Op - { get => Accessor.GetInt32("op"); set => Accessor.SetInt32("op", value); } - - - public string Field - { get => Accessor.GetString("field"); set => Accessor.SetString("field", value); } - - - public bool Required - { get => Accessor.GetBool("required"); set => Accessor.SetBool("required", value); } - - - public float FloatValue - { get => Accessor.GetFloat("float_value"); set => Accessor.SetFloat("float_value", value); } - - - public string StringValue - { get => Accessor.GetString("string_value"); set => Accessor.SetString("string_value", value); } - -} + public CSOItemCriteriaConditionImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Op + { get => Accessor.GetInt32("op"); set => Accessor.SetInt32("op", value); } + public string Field + { get => Accessor.GetString("field"); set => Accessor.SetString("field", value); } + public bool Required + { get => Accessor.GetBool("required"); set => Accessor.SetBool("required", value); } + public float FloatValue + { get => Accessor.GetFloat("float_value"); set => Accessor.SetFloat("float_value", value); } + public string StringValue + { get => Accessor.GetString("string_value"); set => Accessor.SetString("string_value", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOItemCriteriaImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOItemCriteriaImpl.cs index 858ae62c1..71e550afb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOItemCriteriaImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOItemCriteriaImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,52 +8,30 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSOItemCriteriaImpl : TypedProtobuf, CSOItemCriteria { - public CSOItemCriteriaImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint ItemLevel - { get => Accessor.GetUInt32("item_level"); set => Accessor.SetUInt32("item_level", value); } - - - public int ItemQuality - { get => Accessor.GetInt32("item_quality"); set => Accessor.SetInt32("item_quality", value); } - - - public bool ItemLevelSet - { get => Accessor.GetBool("item_level_set"); set => Accessor.SetBool("item_level_set", value); } - - - public bool ItemQualitySet - { get => Accessor.GetBool("item_quality_set"); set => Accessor.SetBool("item_quality_set", value); } - - - public uint InitialInventory - { get => Accessor.GetUInt32("initial_inventory"); set => Accessor.SetUInt32("initial_inventory", value); } - - - public uint InitialQuantity - { get => Accessor.GetUInt32("initial_quantity"); set => Accessor.SetUInt32("initial_quantity", value); } - - - public bool IgnoreEnabledFlag - { get => Accessor.GetBool("ignore_enabled_flag"); set => Accessor.SetBool("ignore_enabled_flag", value); } - - - public IProtobufRepeatedFieldSubMessageType Conditions - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "conditions"); } - - - public int ItemRarity - { get => Accessor.GetInt32("item_rarity"); set => Accessor.SetInt32("item_rarity", value); } - - - public bool ItemRaritySet - { get => Accessor.GetBool("item_rarity_set"); set => Accessor.SetBool("item_rarity_set", value); } - - - public bool RecentOnly - { get => Accessor.GetBool("recent_only"); set => Accessor.SetBool("recent_only", value); } - -} + public CSOItemCriteriaImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint ItemLevel + { get => Accessor.GetUInt32("item_level"); set => Accessor.SetUInt32("item_level", value); } + public int ItemQuality + { get => Accessor.GetInt32("item_quality"); set => Accessor.SetInt32("item_quality", value); } + public bool ItemLevelSet + { get => Accessor.GetBool("item_level_set"); set => Accessor.SetBool("item_level_set", value); } + public bool ItemQualitySet + { get => Accessor.GetBool("item_quality_set"); set => Accessor.SetBool("item_quality_set", value); } + public uint InitialInventory + { get => Accessor.GetUInt32("initial_inventory"); set => Accessor.SetUInt32("initial_inventory", value); } + public uint InitialQuantity + { get => Accessor.GetUInt32("initial_quantity"); set => Accessor.SetUInt32("initial_quantity", value); } + public bool IgnoreEnabledFlag + { get => Accessor.GetBool("ignore_enabled_flag"); set => Accessor.SetBool("ignore_enabled_flag", value); } + public IProtobufRepeatedFieldSubMessageType Conditions + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "conditions"); } + public int ItemRarity + { get => Accessor.GetInt32("item_rarity"); set => Accessor.SetInt32("item_rarity", value); } + public bool ItemRaritySet + { get => Accessor.GetBool("item_rarity_set"); set => Accessor.SetBool("item_rarity_set", value); } + public bool RecentOnly + { get => Accessor.GetBool("recent_only"); set => Accessor.SetBool("recent_only", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOItemRecipeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOItemRecipeImpl.cs index dfde03803..84db84071 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOItemRecipeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOItemRecipeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,84 +8,46 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSOItemRecipeImpl : TypedProtobuf, CSOItemRecipe { - public CSOItemRecipeImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint DefIndex - { get => Accessor.GetUInt32("def_index"); set => Accessor.SetUInt32("def_index", value); } - - - public string Name - { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } - - - public string NA - { get => Accessor.GetString("n_a"); set => Accessor.SetString("n_a", value); } - - - public string DescInputs - { get => Accessor.GetString("desc_inputs"); set => Accessor.SetString("desc_inputs", value); } - - - public string DescOutputs - { get => Accessor.GetString("desc_outputs"); set => Accessor.SetString("desc_outputs", value); } - - - public string DiA - { get => Accessor.GetString("di_a"); set => Accessor.SetString("di_a", value); } - - - public string DiB - { get => Accessor.GetString("di_b"); set => Accessor.SetString("di_b", value); } - - - public string DiC - { get => Accessor.GetString("di_c"); set => Accessor.SetString("di_c", value); } - - - public string DoA - { get => Accessor.GetString("do_a"); set => Accessor.SetString("do_a", value); } - - - public string DoB - { get => Accessor.GetString("do_b"); set => Accessor.SetString("do_b", value); } - - - public string DoC - { get => Accessor.GetString("do_c"); set => Accessor.SetString("do_c", value); } - - - public bool RequiresAllSameClass - { get => Accessor.GetBool("requires_all_same_class"); set => Accessor.SetBool("requires_all_same_class", value); } - - - public bool RequiresAllSameSlot - { get => Accessor.GetBool("requires_all_same_slot"); set => Accessor.SetBool("requires_all_same_slot", value); } - - - public int ClassUsageForOutput - { get => Accessor.GetInt32("class_usage_for_output"); set => Accessor.SetInt32("class_usage_for_output", value); } - - - public int SlotUsageForOutput - { get => Accessor.GetInt32("slot_usage_for_output"); set => Accessor.SetInt32("slot_usage_for_output", value); } - - - public int SetForOutput - { get => Accessor.GetInt32("set_for_output"); set => Accessor.SetInt32("set_for_output", value); } - - - public IProtobufRepeatedFieldSubMessageType InputItemsCriteria - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "input_items_criteria"); } - - - public IProtobufRepeatedFieldSubMessageType OutputItemsCriteria - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "output_items_criteria"); } - - - public IProtobufRepeatedFieldValueType InputItemDupeCounts - { get => new ProtobufRepeatedFieldValueType(Accessor, "input_item_dupe_counts"); } - -} + public CSOItemRecipeImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint DefIndex + { get => Accessor.GetUInt32("def_index"); set => Accessor.SetUInt32("def_index", value); } + public string Name + { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } + public string NA + { get => Accessor.GetString("n_a"); set => Accessor.SetString("n_a", value); } + public string DescInputs + { get => Accessor.GetString("desc_inputs"); set => Accessor.SetString("desc_inputs", value); } + public string DescOutputs + { get => Accessor.GetString("desc_outputs"); set => Accessor.SetString("desc_outputs", value); } + public string DiA + { get => Accessor.GetString("di_a"); set => Accessor.SetString("di_a", value); } + public string DiB + { get => Accessor.GetString("di_b"); set => Accessor.SetString("di_b", value); } + public string DiC + { get => Accessor.GetString("di_c"); set => Accessor.SetString("di_c", value); } + public string DoA + { get => Accessor.GetString("do_a"); set => Accessor.SetString("do_a", value); } + public string DoB + { get => Accessor.GetString("do_b"); set => Accessor.SetString("do_b", value); } + public string DoC + { get => Accessor.GetString("do_c"); set => Accessor.SetString("do_c", value); } + public bool RequiresAllSameClass + { get => Accessor.GetBool("requires_all_same_class"); set => Accessor.SetBool("requires_all_same_class", value); } + public bool RequiresAllSameSlot + { get => Accessor.GetBool("requires_all_same_slot"); set => Accessor.SetBool("requires_all_same_slot", value); } + public int ClassUsageForOutput + { get => Accessor.GetInt32("class_usage_for_output"); set => Accessor.SetInt32("class_usage_for_output", value); } + public int SlotUsageForOutput + { get => Accessor.GetInt32("slot_usage_for_output"); set => Accessor.SetInt32("slot_usage_for_output", value); } + public int SetForOutput + { get => Accessor.GetInt32("set_for_output"); set => Accessor.SetInt32("set_for_output", value); } + public IProtobufRepeatedFieldSubMessageType InputItemsCriteria + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "input_items_criteria"); } + public IProtobufRepeatedFieldSubMessageType OutputItemsCriteria + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "output_items_criteria"); } + public IProtobufRepeatedFieldValueType InputItemDupeCounts + { get => new ProtobufRepeatedFieldValueType(Accessor, "input_item_dupe_counts"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOLobbyInviteImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOLobbyInviteImpl.cs index 4cc7a4540..972be555a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOLobbyInviteImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOLobbyInviteImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSOLobbyInviteImpl : TypedProtobuf, CSOLobbyInvite { - public CSOLobbyInviteImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong GroupId - { get => Accessor.GetUInt64("group_id"); set => Accessor.SetUInt64("group_id", value); } - - - public ulong SenderId - { get => Accessor.GetUInt64("sender_id"); set => Accessor.SetUInt64("sender_id", value); } - - - public string SenderName - { get => Accessor.GetString("sender_name"); set => Accessor.SetString("sender_name", value); } - -} + public CSOLobbyInviteImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong GroupId + { get => Accessor.GetUInt64("group_id"); set => Accessor.SetUInt64("group_id", value); } + public ulong SenderId + { get => Accessor.GetUInt64("sender_id"); set => Accessor.SetUInt64("sender_id", value); } + public string SenderName + { get => Accessor.GetString("sender_name"); set => Accessor.SetString("sender_name", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOPartyInviteImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOPartyInviteImpl.cs index bf1614463..e488f96d4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOPartyInviteImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOPartyInviteImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSOPartyInviteImpl : TypedProtobuf, CSOPartyInvite { - public CSOPartyInviteImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong GroupId - { get => Accessor.GetUInt64("group_id"); set => Accessor.SetUInt64("group_id", value); } - - - public ulong SenderId - { get => Accessor.GetUInt64("sender_id"); set => Accessor.SetUInt64("sender_id", value); } - - - public string SenderName - { get => Accessor.GetString("sender_name"); set => Accessor.SetString("sender_name", value); } - -} + public CSOPartyInviteImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong GroupId + { get => Accessor.GetUInt64("group_id"); set => Accessor.SetUInt64("group_id", value); } + public ulong SenderId + { get => Accessor.GetUInt64("sender_id"); set => Accessor.SetUInt64("sender_id", value); } + public string SenderName + { get => Accessor.GetString("sender_name"); set => Accessor.SetString("sender_name", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOPersonaDataPublicImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOPersonaDataPublicImpl.cs index 2b8369525..21ee54cc2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOPersonaDataPublicImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOPersonaDataPublicImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSOPersonaDataPublicImpl : TypedProtobuf, CSOPersonaDataPublic { - public CSOPersonaDataPublicImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int PlayerLevel - { get => Accessor.GetInt32("player_level"); set => Accessor.SetInt32("player_level", value); } - - - public PlayerCommendationInfo Commendation - { get => new PlayerCommendationInfoImpl(NativeNetMessages.GetNestedMessage(Address, "commendation"), false); } - - - public bool ElevatedState - { get => Accessor.GetBool("elevated_state"); set => Accessor.SetBool("elevated_state", value); } - - - public uint XpTrailTimestampRefresh - { get => Accessor.GetUInt32("xp_trail_timestamp_refresh"); set => Accessor.SetUInt32("xp_trail_timestamp_refresh", value); } - - - public uint XpTrailLevel - { get => Accessor.GetUInt32("xp_trail_level"); set => Accessor.SetUInt32("xp_trail_level", value); } - -} + public CSOPersonaDataPublicImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int PlayerLevel + { get => Accessor.GetInt32("player_level"); set => Accessor.SetInt32("player_level", value); } + public PlayerCommendationInfo Commendation + { get => new PlayerCommendationInfoImpl(NativeNetMessages.GetNestedMessage(Address, "commendation"), false); } + public bool ElevatedState + { get => Accessor.GetBool("elevated_state"); set => Accessor.SetBool("elevated_state", value); } + public uint XpTrailTimestampRefresh + { get => Accessor.GetUInt32("xp_trail_timestamp_refresh"); set => Accessor.SetUInt32("xp_trail_timestamp_refresh", value); } + public uint XpTrailLevel + { get => Accessor.GetUInt32("xp_trail_level"); set => Accessor.SetUInt32("xp_trail_level", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOQuestProgressImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOQuestProgressImpl.cs index 152f96f10..8fc4bd163 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOQuestProgressImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOQuestProgressImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSOQuestProgressImpl : TypedProtobuf, CSOQuestProgress { - public CSOQuestProgressImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Questid - { get => Accessor.GetUInt32("questid"); set => Accessor.SetUInt32("questid", value); } - - - public uint PointsRemaining - { get => Accessor.GetUInt32("points_remaining"); set => Accessor.SetUInt32("points_remaining", value); } - - - public uint BonusPoints - { get => Accessor.GetUInt32("bonus_points"); set => Accessor.SetUInt32("bonus_points", value); } - -} + public CSOQuestProgressImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Questid + { get => Accessor.GetUInt32("questid"); set => Accessor.SetUInt32("questid", value); } + public uint PointsRemaining + { get => Accessor.GetUInt32("points_remaining"); set => Accessor.SetUInt32("points_remaining", value); } + public uint BonusPoints + { get => Accessor.GetUInt32("bonus_points"); set => Accessor.SetUInt32("bonus_points", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOVolatileItemClaimedRewardsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOVolatileItemClaimedRewardsImpl.cs index 1c6f4f475..36f716e15 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOVolatileItemClaimedRewardsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOVolatileItemClaimedRewardsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSOVolatileItemClaimedRewardsImpl : TypedProtobuf, CSOVolatileItemClaimedRewards { - public CSOVolatileItemClaimedRewardsImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Defidx - { get => Accessor.GetUInt32("defidx"); set => Accessor.SetUInt32("defidx", value); } - - - public IProtobufRepeatedFieldValueType Reward - { get => new ProtobufRepeatedFieldValueType(Accessor, "reward"); } - - - public IProtobufRepeatedFieldValueType GenerationTime - { get => new ProtobufRepeatedFieldValueType(Accessor, "generation_time"); } - -} + public CSOVolatileItemClaimedRewardsImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Defidx + { get => Accessor.GetUInt32("defidx"); set => Accessor.SetUInt32("defidx", value); } + public IProtobufRepeatedFieldValueType Reward + { get => new ProtobufRepeatedFieldValueType(Accessor, "reward"); } + public IProtobufRepeatedFieldValueType GenerationTime + { get => new ProtobufRepeatedFieldValueType(Accessor, "generation_time"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOVolatileItemOfferImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOVolatileItemOfferImpl.cs index 9b8ca8d3e..82f48e16a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOVolatileItemOfferImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSOVolatileItemOfferImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSOVolatileItemOfferImpl : TypedProtobuf, CSOVolatileItemOffer { - public CSOVolatileItemOfferImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Defidx - { get => Accessor.GetUInt32("defidx"); set => Accessor.SetUInt32("defidx", value); } - - - public IProtobufRepeatedFieldValueType FauxItemid - { get => new ProtobufRepeatedFieldValueType(Accessor, "faux_itemid"); } - - - public IProtobufRepeatedFieldValueType GenerationTime - { get => new ProtobufRepeatedFieldValueType(Accessor, "generation_time"); } - -} + public CSOVolatileItemOfferImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Defidx + { get => Accessor.GetUInt32("defidx"); set => Accessor.SetUInt32("defidx", value); } + public IProtobufRepeatedFieldValueType FauxItemid + { get => new ProtobufRepeatedFieldValueType(Accessor, "faux_itemid"); } + public IProtobufRepeatedFieldValueType GenerationTime + { get => new ProtobufRepeatedFieldValueType(Accessor, "generation_time"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsgList_GameEventsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsgList_GameEventsImpl.cs index 079ee1575..6dfc175f7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsgList_GameEventsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsgList_GameEventsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsgList_GameEventsImpl : TypedProtobuf, CSVCMsgList_GameEvents { - public CSVCMsgList_GameEventsImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldSubMessageType Events - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "events"); } + public CSVCMsgList_GameEventsImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public IProtobufRepeatedFieldSubMessageType Events + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "events"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsgList_GameEvents_event_tImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsgList_GameEvents_event_tImpl.cs index 11ce5e12a..f70df0019 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsgList_GameEvents_event_tImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsgList_GameEvents_event_tImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsgList_GameEvents_event_tImpl : TypedProtobuf, CSVCMsgList_GameEvents_event_t { - public CSVCMsgList_GameEvents_event_tImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Tick - { get => Accessor.GetInt32("tick"); set => Accessor.SetInt32("tick", value); } - - - public CSVCMsg_GameEvent Event - { get => new CSVCMsg_GameEventImpl(NativeNetMessages.GetNestedMessage(Address, "event"), false); } - -} + public CSVCMsgList_GameEvents_event_tImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Tick + { get => Accessor.GetInt32("tick"); set => Accessor.SetInt32("tick", value); } + public CSVCMsg_GameEvent Event + { get => new CSVCMsg_GameEventImpl(NativeNetMessages.GetNestedMessage(Address, "event"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_BSPDecalImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_BSPDecalImpl.cs index c6d5dba7d..bfa5afd21 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_BSPDecalImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_BSPDecalImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_BSPDecalImpl : NetMessage, CSVCMsg_BSPDecal { - public CSVCMsg_BSPDecalImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public Vector Pos - { get => Accessor.GetVector("pos"); set => Accessor.SetVector("pos", value); } - - - public int DecalTextureIndex - { get => Accessor.GetInt32("decal_texture_index"); set => Accessor.SetInt32("decal_texture_index", value); } - - - public int EntityIndex - { get => Accessor.GetInt32("entity_index"); set => Accessor.SetInt32("entity_index", value); } - - - public int ModelIndex - { get => Accessor.GetInt32("model_index"); set => Accessor.SetInt32("model_index", value); } - - - public bool LowPriority - { get => Accessor.GetBool("low_priority"); set => Accessor.SetBool("low_priority", value); } - -} + public CSVCMsg_BSPDecalImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public Vector Pos + { get => Accessor.GetVector("pos"); set => Accessor.SetVector("pos", value); } + public int DecalTextureIndex + { get => Accessor.GetInt32("decal_texture_index"); set => Accessor.SetInt32("decal_texture_index", value); } + public int EntityIndex + { get => Accessor.GetInt32("entity_index"); set => Accessor.SetInt32("entity_index", value); } + public int ModelIndex + { get => Accessor.GetInt32("model_index"); set => Accessor.SetInt32("model_index", value); } + public bool LowPriority + { get => Accessor.GetBool("low_priority"); set => Accessor.SetBool("low_priority", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_Broadcast_CommandImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_Broadcast_CommandImpl.cs index bca775fa6..9108bfe9a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_Broadcast_CommandImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_Broadcast_CommandImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_Broadcast_CommandImpl : NetMessage, CSVCMsg_Broadcast_Command { - public CSVCMsg_Broadcast_CommandImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public string Cmd - { get => Accessor.GetString("cmd"); set => Accessor.SetString("cmd", value); } + public CSVCMsg_Broadcast_CommandImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public string Cmd + { get => Accessor.GetString("cmd"); set => Accessor.SetString("cmd", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_ClassInfoImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_ClassInfoImpl.cs index ddad34ad6..2072aff75 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_ClassInfoImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_ClassInfoImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_ClassInfoImpl : NetMessage, CSVCMsg_ClassInfo { - public CSVCMsg_ClassInfoImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public bool CreateOnClient - { get => Accessor.GetBool("create_on_client"); set => Accessor.SetBool("create_on_client", value); } - - - public IProtobufRepeatedFieldSubMessageType Classes - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "classes"); } - -} + public CSVCMsg_ClassInfoImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public bool CreateOnClient + { get => Accessor.GetBool("create_on_client"); set => Accessor.SetBool("create_on_client", value); } + public IProtobufRepeatedFieldSubMessageType Classes + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "classes"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_ClassInfo_class_tImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_ClassInfo_class_tImpl.cs index 6364d2c84..6621bfbbd 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_ClassInfo_class_tImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_ClassInfo_class_tImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_ClassInfo_class_tImpl : TypedProtobuf, CSVCMsg_ClassInfo_class_t { - public CSVCMsg_ClassInfo_class_tImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int ClassId - { get => Accessor.GetInt32("class_id"); set => Accessor.SetInt32("class_id", value); } - - - public string ClassName - { get => Accessor.GetString("class_name"); set => Accessor.SetString("class_name", value); } - -} + public CSVCMsg_ClassInfo_class_tImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int ClassId + { get => Accessor.GetInt32("class_id"); set => Accessor.SetInt32("class_id", value); } + public string ClassName + { get => Accessor.GetString("class_name"); set => Accessor.SetString("class_name", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_ClearAllStringTablesImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_ClearAllStringTablesImpl.cs index 38d3beb21..3ac36fe86 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_ClearAllStringTablesImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_ClearAllStringTablesImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_ClearAllStringTablesImpl : NetMessage, CSVCMsg_ClearAllStringTables { - public CSVCMsg_ClearAllStringTablesImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public string Mapname - { get => Accessor.GetString("mapname"); set => Accessor.SetString("mapname", value); } - - - public bool CreateTablesSkipped - { get => Accessor.GetBool("create_tables_skipped"); set => Accessor.SetBool("create_tables_skipped", value); } - -} + public CSVCMsg_ClearAllStringTablesImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public string Mapname + { get => Accessor.GetString("mapname"); set => Accessor.SetString("mapname", value); } + public bool CreateTablesSkipped + { get => Accessor.GetBool("create_tables_skipped"); set => Accessor.SetBool("create_tables_skipped", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_CmdKeyValuesImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_CmdKeyValuesImpl.cs index a09547e4e..57c220f80 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_CmdKeyValuesImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_CmdKeyValuesImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_CmdKeyValuesImpl : NetMessage, CSVCMsg_CmdKeyValues { - public CSVCMsg_CmdKeyValuesImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public byte[] Data - { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } + public CSVCMsg_CmdKeyValuesImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public byte[] Data + { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_CreateStringTableImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_CreateStringTableImpl.cs index 972e579f4..914e7c5e2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_CreateStringTableImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_CreateStringTableImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,48 +8,28 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_CreateStringTableImpl : NetMessage, CSVCMsg_CreateStringTable { - public CSVCMsg_CreateStringTableImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public string Name - { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } - - - public int NumEntries - { get => Accessor.GetInt32("num_entries"); set => Accessor.SetInt32("num_entries", value); } - - - public bool UserDataFixedSize - { get => Accessor.GetBool("user_data_fixed_size"); set => Accessor.SetBool("user_data_fixed_size", value); } - - - public int UserDataSize - { get => Accessor.GetInt32("user_data_size"); set => Accessor.SetInt32("user_data_size", value); } - - - public int UserDataSizeBits - { get => Accessor.GetInt32("user_data_size_bits"); set => Accessor.SetInt32("user_data_size_bits", value); } - - - public int Flags - { get => Accessor.GetInt32("flags"); set => Accessor.SetInt32("flags", value); } - - - public byte[] StringData - { get => Accessor.GetBytes("string_data"); set => Accessor.SetBytes("string_data", value); } - - - public int UncompressedSize - { get => Accessor.GetInt32("uncompressed_size"); set => Accessor.SetInt32("uncompressed_size", value); } - - - public bool DataCompressed - { get => Accessor.GetBool("data_compressed"); set => Accessor.SetBool("data_compressed", value); } - - - public bool UsingVarintBitcounts - { get => Accessor.GetBool("using_varint_bitcounts"); set => Accessor.SetBool("using_varint_bitcounts", value); } - -} + public CSVCMsg_CreateStringTableImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public string Name + { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } + public int NumEntries + { get => Accessor.GetInt32("num_entries"); set => Accessor.SetInt32("num_entries", value); } + public bool UserDataFixedSize + { get => Accessor.GetBool("user_data_fixed_size"); set => Accessor.SetBool("user_data_fixed_size", value); } + public int UserDataSize + { get => Accessor.GetInt32("user_data_size"); set => Accessor.SetInt32("user_data_size", value); } + public int UserDataSizeBits + { get => Accessor.GetInt32("user_data_size_bits"); set => Accessor.SetInt32("user_data_size_bits", value); } + public int Flags + { get => Accessor.GetInt32("flags"); set => Accessor.SetInt32("flags", value); } + public byte[] StringData + { get => Accessor.GetBytes("string_data"); set => Accessor.SetBytes("string_data", value); } + public int UncompressedSize + { get => Accessor.GetInt32("uncompressed_size"); set => Accessor.SetInt32("uncompressed_size", value); } + public bool DataCompressed + { get => Accessor.GetBool("data_compressed"); set => Accessor.SetBool("data_compressed", value); } + public bool UsingVarintBitcounts + { get => Accessor.GetBool("using_varint_bitcounts"); set => Accessor.SetBool("using_varint_bitcounts", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_CrosshairAngleImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_CrosshairAngleImpl.cs index c45534b29..b7a788366 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_CrosshairAngleImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_CrosshairAngleImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_CrosshairAngleImpl : TypedProtobuf, CSVCMsg_CrosshairAngle { - public CSVCMsg_CrosshairAngleImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public QAngle Angle - { get => Accessor.GetQAngle("angle"); set => Accessor.SetQAngle("angle", value); } + public CSVCMsg_CrosshairAngleImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public QAngle Angle + { get => Accessor.GetQAngle("angle"); set => Accessor.SetQAngle("angle", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_FixAngleImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_FixAngleImpl.cs index ea1a9ff9f..f57c758c0 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_FixAngleImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_FixAngleImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_FixAngleImpl : TypedProtobuf, CSVCMsg_FixAngle { - public CSVCMsg_FixAngleImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public bool Relative - { get => Accessor.GetBool("relative"); set => Accessor.SetBool("relative", value); } - - - public QAngle Angle - { get => Accessor.GetQAngle("angle"); set => Accessor.SetQAngle("angle", value); } - -} + public CSVCMsg_FixAngleImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public bool Relative + { get => Accessor.GetBool("relative"); set => Accessor.SetBool("relative", value); } + public QAngle Angle + { get => Accessor.GetQAngle("angle"); set => Accessor.SetQAngle("angle", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_FlattenedSerializerImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_FlattenedSerializerImpl.cs index 7f1d2d0a6..716185147 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_FlattenedSerializerImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_FlattenedSerializerImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_FlattenedSerializerImpl : NetMessage, CSVCMsg_FlattenedSerializer { - public CSVCMsg_FlattenedSerializerImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public IProtobufRepeatedFieldSubMessageType Serializers - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "serializers"); } - - - public IProtobufRepeatedFieldValueType Symbols - { get => new ProtobufRepeatedFieldValueType(Accessor, "symbols"); } - - - public IProtobufRepeatedFieldSubMessageType Fields - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "fields"); } - -} + public CSVCMsg_FlattenedSerializerImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public IProtobufRepeatedFieldSubMessageType Serializers + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "serializers"); } + public IProtobufRepeatedFieldValueType Symbols + { get => new ProtobufRepeatedFieldValueType(Accessor, "symbols"); } + public IProtobufRepeatedFieldSubMessageType Fields + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "fields"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_FullFrameSplitImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_FullFrameSplitImpl.cs index 147f88f58..f43c71817 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_FullFrameSplitImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_FullFrameSplitImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_FullFrameSplitImpl : NetMessage, CSVCMsg_FullFrameSplit { - public CSVCMsg_FullFrameSplitImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Tick - { get => Accessor.GetInt32("tick"); set => Accessor.SetInt32("tick", value); } - - - public int Section - { get => Accessor.GetInt32("section"); set => Accessor.SetInt32("section", value); } - - - public int Total - { get => Accessor.GetInt32("total"); set => Accessor.SetInt32("total", value); } - - - public byte[] Data - { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } - -} + public CSVCMsg_FullFrameSplitImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Tick + { get => Accessor.GetInt32("tick"); set => Accessor.SetInt32("tick", value); } + public int Section + { get => Accessor.GetInt32("section"); set => Accessor.SetInt32("section", value); } + public int Total + { get => Accessor.GetInt32("total"); set => Accessor.SetInt32("total", value); } + public byte[] Data + { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_GameEventImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_GameEventImpl.cs index c47e037f4..f5b1f1ea6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_GameEventImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_GameEventImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_GameEventImpl : TypedProtobuf, CSVCMsg_GameEvent { - public CSVCMsg_GameEventImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string EventName - { get => Accessor.GetString("event_name"); set => Accessor.SetString("event_name", value); } - - - public int Eventid - { get => Accessor.GetInt32("eventid"); set => Accessor.SetInt32("eventid", value); } - - - public IProtobufRepeatedFieldSubMessageType Keys - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "keys"); } - -} + public CSVCMsg_GameEventImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string EventName + { get => Accessor.GetString("event_name"); set => Accessor.SetString("event_name", value); } + public int Eventid + { get => Accessor.GetInt32("eventid"); set => Accessor.SetInt32("eventid", value); } + public IProtobufRepeatedFieldSubMessageType Keys + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "keys"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_GameEventListImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_GameEventListImpl.cs index b822d95ee..71899d026 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_GameEventListImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_GameEventListImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_GameEventListImpl : TypedProtobuf, CSVCMsg_GameEventList { - public CSVCMsg_GameEventListImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldSubMessageType Descriptors - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "descriptors"); } + public CSVCMsg_GameEventListImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public IProtobufRepeatedFieldSubMessageType Descriptors + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "descriptors"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_GameEventList_descriptor_tImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_GameEventList_descriptor_tImpl.cs index 45bd8e7e6..f049a0456 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_GameEventList_descriptor_tImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_GameEventList_descriptor_tImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_GameEventList_descriptor_tImpl : TypedProtobuf, CSVCMsg_GameEventList_descriptor_t { - public CSVCMsg_GameEventList_descriptor_tImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Eventid - { get => Accessor.GetInt32("eventid"); set => Accessor.SetInt32("eventid", value); } - - - public string Name - { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } - - - public IProtobufRepeatedFieldSubMessageType Keys - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "keys"); } - -} + public CSVCMsg_GameEventList_descriptor_tImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Eventid + { get => Accessor.GetInt32("eventid"); set => Accessor.SetInt32("eventid", value); } + public string Name + { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } + public IProtobufRepeatedFieldSubMessageType Keys + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "keys"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_GameEventList_key_tImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_GameEventList_key_tImpl.cs index bcc52c144..cca558f86 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_GameEventList_key_tImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_GameEventList_key_tImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_GameEventList_key_tImpl : TypedProtobuf, CSVCMsg_GameEventList_key_t { - public CSVCMsg_GameEventList_key_tImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Type - { get => Accessor.GetInt32("type"); set => Accessor.SetInt32("type", value); } - - - public string Name - { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } - -} + public CSVCMsg_GameEventList_key_tImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Type + { get => Accessor.GetInt32("type"); set => Accessor.SetInt32("type", value); } + public string Name + { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_GameEvent_key_tImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_GameEvent_key_tImpl.cs index 97185950d..d2de760da 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_GameEvent_key_tImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_GameEvent_key_tImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,40 +8,24 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_GameEvent_key_tImpl : TypedProtobuf, CSVCMsg_GameEvent_key_t { - public CSVCMsg_GameEvent_key_tImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Type - { get => Accessor.GetInt32("type"); set => Accessor.SetInt32("type", value); } - - - public string ValString - { get => Accessor.GetString("val_string"); set => Accessor.SetString("val_string", value); } - - - public float ValFloat - { get => Accessor.GetFloat("val_float"); set => Accessor.SetFloat("val_float", value); } - - - public int ValLong - { get => Accessor.GetInt32("val_long"); set => Accessor.SetInt32("val_long", value); } - - - public int ValShort - { get => Accessor.GetInt32("val_short"); set => Accessor.SetInt32("val_short", value); } - - - public int ValByte - { get => Accessor.GetInt32("val_byte"); set => Accessor.SetInt32("val_byte", value); } - - - public bool ValBool - { get => Accessor.GetBool("val_bool"); set => Accessor.SetBool("val_bool", value); } - - - public ulong ValUint64 - { get => Accessor.GetUInt64("val_uint64"); set => Accessor.SetUInt64("val_uint64", value); } - -} + public CSVCMsg_GameEvent_key_tImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Type + { get => Accessor.GetInt32("type"); set => Accessor.SetInt32("type", value); } + public string ValString + { get => Accessor.GetString("val_string"); set => Accessor.SetString("val_string", value); } + public float ValFloat + { get => Accessor.GetFloat("val_float"); set => Accessor.SetFloat("val_float", value); } + public int ValLong + { get => Accessor.GetInt32("val_long"); set => Accessor.SetInt32("val_long", value); } + public int ValShort + { get => Accessor.GetInt32("val_short"); set => Accessor.SetInt32("val_short", value); } + public int ValByte + { get => Accessor.GetInt32("val_byte"); set => Accessor.SetInt32("val_byte", value); } + public bool ValBool + { get => Accessor.GetBool("val_bool"); set => Accessor.SetBool("val_bool", value); } + public ulong ValUint64 + { get => Accessor.GetUInt64("val_uint64"); set => Accessor.SetUInt64("val_uint64", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_GameSessionConfigurationImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_GameSessionConfigurationImpl.cs index 63d03cc83..f69a7dbbf 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_GameSessionConfigurationImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_GameSessionConfigurationImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,84 +8,46 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_GameSessionConfigurationImpl : TypedProtobuf, CSVCMsg_GameSessionConfiguration { - public CSVCMsg_GameSessionConfigurationImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public bool IsMultiplayer - { get => Accessor.GetBool("is_multiplayer"); set => Accessor.SetBool("is_multiplayer", value); } - - - public bool IsLoadsavegame - { get => Accessor.GetBool("is_loadsavegame"); set => Accessor.SetBool("is_loadsavegame", value); } - - - public bool IsBackgroundMap - { get => Accessor.GetBool("is_background_map"); set => Accessor.SetBool("is_background_map", value); } - - - public bool IsHeadless - { get => Accessor.GetBool("is_headless"); set => Accessor.SetBool("is_headless", value); } - - - public uint MinClientLimit - { get => Accessor.GetUInt32("min_client_limit"); set => Accessor.SetUInt32("min_client_limit", value); } - - - public uint MaxClientLimit - { get => Accessor.GetUInt32("max_client_limit"); set => Accessor.SetUInt32("max_client_limit", value); } - - - public uint MaxClients - { get => Accessor.GetUInt32("max_clients"); set => Accessor.SetUInt32("max_clients", value); } - - - public uint TickInterval - { get => Accessor.GetUInt32("tick_interval"); set => Accessor.SetUInt32("tick_interval", value); } - - - public string Hostname - { get => Accessor.GetString("hostname"); set => Accessor.SetString("hostname", value); } - - - public string Savegamename - { get => Accessor.GetString("savegamename"); set => Accessor.SetString("savegamename", value); } - - - public string S1Mapname - { get => Accessor.GetString("s1_mapname"); set => Accessor.SetString("s1_mapname", value); } - - - public string Gamemode - { get => Accessor.GetString("gamemode"); set => Accessor.SetString("gamemode", value); } - - - public string ServerIpAddress - { get => Accessor.GetString("server_ip_address"); set => Accessor.SetString("server_ip_address", value); } - - - public byte[] Data - { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } - - - public bool IsLocalonly - { get => Accessor.GetBool("is_localonly"); set => Accessor.SetBool("is_localonly", value); } - - - public bool NoSteamServer - { get => Accessor.GetBool("no_steam_server"); set => Accessor.SetBool("no_steam_server", value); } - - - public bool IsTransition - { get => Accessor.GetBool("is_transition"); set => Accessor.SetBool("is_transition", value); } - - - public string Previouslevel - { get => Accessor.GetString("previouslevel"); set => Accessor.SetString("previouslevel", value); } - - - public string Landmarkname - { get => Accessor.GetString("landmarkname"); set => Accessor.SetString("landmarkname", value); } - -} + public CSVCMsg_GameSessionConfigurationImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public bool IsMultiplayer + { get => Accessor.GetBool("is_multiplayer"); set => Accessor.SetBool("is_multiplayer", value); } + public bool IsLoadsavegame + { get => Accessor.GetBool("is_loadsavegame"); set => Accessor.SetBool("is_loadsavegame", value); } + public bool IsBackgroundMap + { get => Accessor.GetBool("is_background_map"); set => Accessor.SetBool("is_background_map", value); } + public bool IsHeadless + { get => Accessor.GetBool("is_headless"); set => Accessor.SetBool("is_headless", value); } + public uint MinClientLimit + { get => Accessor.GetUInt32("min_client_limit"); set => Accessor.SetUInt32("min_client_limit", value); } + public uint MaxClientLimit + { get => Accessor.GetUInt32("max_client_limit"); set => Accessor.SetUInt32("max_client_limit", value); } + public uint MaxClients + { get => Accessor.GetUInt32("max_clients"); set => Accessor.SetUInt32("max_clients", value); } + public uint TickInterval + { get => Accessor.GetUInt32("tick_interval"); set => Accessor.SetUInt32("tick_interval", value); } + public string Hostname + { get => Accessor.GetString("hostname"); set => Accessor.SetString("hostname", value); } + public string Savegamename + { get => Accessor.GetString("savegamename"); set => Accessor.SetString("savegamename", value); } + public string S1Mapname + { get => Accessor.GetString("s1_mapname"); set => Accessor.SetString("s1_mapname", value); } + public string Gamemode + { get => Accessor.GetString("gamemode"); set => Accessor.SetString("gamemode", value); } + public string ServerIpAddress + { get => Accessor.GetString("server_ip_address"); set => Accessor.SetString("server_ip_address", value); } + public byte[] Data + { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } + public bool IsLocalonly + { get => Accessor.GetBool("is_localonly"); set => Accessor.SetBool("is_localonly", value); } + public bool NoSteamServer + { get => Accessor.GetBool("no_steam_server"); set => Accessor.SetBool("no_steam_server", value); } + public bool IsTransition + { get => Accessor.GetBool("is_transition"); set => Accessor.SetBool("is_transition", value); } + public string Previouslevel + { get => Accessor.GetString("previouslevel"); set => Accessor.SetString("previouslevel", value); } + public string Landmarkname + { get => Accessor.GetString("landmarkname"); set => Accessor.SetString("landmarkname", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_GetCvarValueImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_GetCvarValueImpl.cs index 57f61e938..9888b3d06 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_GetCvarValueImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_GetCvarValueImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_GetCvarValueImpl : NetMessage, CSVCMsg_GetCvarValue { - public CSVCMsg_GetCvarValueImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Cookie - { get => Accessor.GetInt32("cookie"); set => Accessor.SetInt32("cookie", value); } - - - public string CvarName - { get => Accessor.GetString("cvar_name"); set => Accessor.SetString("cvar_name", value); } - -} + public CSVCMsg_GetCvarValueImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Cookie + { get => Accessor.GetInt32("cookie"); set => Accessor.SetInt32("cookie", value); } + public string CvarName + { get => Accessor.GetString("cvar_name"); set => Accessor.SetString("cvar_name", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_HLTVStatusImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_HLTVStatusImpl.cs index e1570cdcc..24ef81243 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_HLTVStatusImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_HLTVStatusImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_HLTVStatusImpl : NetMessage, CSVCMsg_HLTVStatus { - public CSVCMsg_HLTVStatusImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public string Master - { get => Accessor.GetString("master"); set => Accessor.SetString("master", value); } - - - public int Clients - { get => Accessor.GetInt32("clients"); set => Accessor.SetInt32("clients", value); } - - - public int Slots - { get => Accessor.GetInt32("slots"); set => Accessor.SetInt32("slots", value); } - - - public int Proxies - { get => Accessor.GetInt32("proxies"); set => Accessor.SetInt32("proxies", value); } - -} + public CSVCMsg_HLTVStatusImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public string Master + { get => Accessor.GetString("master"); set => Accessor.SetString("master", value); } + public int Clients + { get => Accessor.GetInt32("clients"); set => Accessor.SetInt32("clients", value); } + public int Slots + { get => Accessor.GetInt32("slots"); set => Accessor.SetInt32("slots", value); } + public int Proxies + { get => Accessor.GetInt32("proxies"); set => Accessor.SetInt32("proxies", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_HltvFixupOperatorStatusImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_HltvFixupOperatorStatusImpl.cs index 794701c02..a46d74023 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_HltvFixupOperatorStatusImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_HltvFixupOperatorStatusImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_HltvFixupOperatorStatusImpl : NetMessage, CSVCMsg_HltvFixupOperatorStatus { - public CSVCMsg_HltvFixupOperatorStatusImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint Mode - { get => Accessor.GetUInt32("mode"); set => Accessor.SetUInt32("mode", value); } - - - public string OverrideOperatorName - { get => Accessor.GetString("override_operator_name"); set => Accessor.SetString("override_operator_name", value); } - -} + public CSVCMsg_HltvFixupOperatorStatusImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public uint Mode + { get => Accessor.GetUInt32("mode"); set => Accessor.SetUInt32("mode", value); } + public string OverrideOperatorName + { get => Accessor.GetString("override_operator_name"); set => Accessor.SetString("override_operator_name", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_HltvReplayImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_HltvReplayImpl.cs index cd4e70b77..b2f6b803c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_HltvReplayImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_HltvReplayImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,40 +8,24 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_HltvReplayImpl : TypedProtobuf, CSVCMsg_HltvReplay { - public CSVCMsg_HltvReplayImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Delay - { get => Accessor.GetInt32("delay"); set => Accessor.SetInt32("delay", value); } - - - public int PrimaryTarget - { get => Accessor.GetInt32("primary_target"); set => Accessor.SetInt32("primary_target", value); } - - - public int ReplayStopAt - { get => Accessor.GetInt32("replay_stop_at"); set => Accessor.SetInt32("replay_stop_at", value); } - - - public int ReplayStartAt - { get => Accessor.GetInt32("replay_start_at"); set => Accessor.SetInt32("replay_start_at", value); } - - - public int ReplaySlowdownBegin - { get => Accessor.GetInt32("replay_slowdown_begin"); set => Accessor.SetInt32("replay_slowdown_begin", value); } - - - public int ReplaySlowdownEnd - { get => Accessor.GetInt32("replay_slowdown_end"); set => Accessor.SetInt32("replay_slowdown_end", value); } - - - public float ReplaySlowdownRate - { get => Accessor.GetFloat("replay_slowdown_rate"); set => Accessor.SetFloat("replay_slowdown_rate", value); } - - - public int Reason - { get => Accessor.GetInt32("reason"); set => Accessor.SetInt32("reason", value); } - -} + public CSVCMsg_HltvReplayImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Delay + { get => Accessor.GetInt32("delay"); set => Accessor.SetInt32("delay", value); } + public int PrimaryTarget + { get => Accessor.GetInt32("primary_target"); set => Accessor.SetInt32("primary_target", value); } + public int ReplayStopAt + { get => Accessor.GetInt32("replay_stop_at"); set => Accessor.SetInt32("replay_stop_at", value); } + public int ReplayStartAt + { get => Accessor.GetInt32("replay_start_at"); set => Accessor.SetInt32("replay_start_at", value); } + public int ReplaySlowdownBegin + { get => Accessor.GetInt32("replay_slowdown_begin"); set => Accessor.SetInt32("replay_slowdown_begin", value); } + public int ReplaySlowdownEnd + { get => Accessor.GetInt32("replay_slowdown_end"); set => Accessor.SetInt32("replay_slowdown_end", value); } + public float ReplaySlowdownRate + { get => Accessor.GetFloat("replay_slowdown_rate"); set => Accessor.SetFloat("replay_slowdown_rate", value); } + public int Reason + { get => Accessor.GetInt32("reason"); set => Accessor.SetInt32("reason", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_MenuImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_MenuImpl.cs index 4398b610d..5e806e2b6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_MenuImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_MenuImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_MenuImpl : NetMessage, CSVCMsg_Menu { - public CSVCMsg_MenuImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int DialogType - { get => Accessor.GetInt32("dialog_type"); set => Accessor.SetInt32("dialog_type", value); } - - - public byte[] MenuKeyValues - { get => Accessor.GetBytes("menu_key_values"); set => Accessor.SetBytes("menu_key_values", value); } - -} + public CSVCMsg_MenuImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int DialogType + { get => Accessor.GetInt32("dialog_type"); set => Accessor.SetInt32("dialog_type", value); } + public byte[] MenuKeyValues + { get => Accessor.GetBytes("menu_key_values"); set => Accessor.SetBytes("menu_key_values", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_NextMsgPredictedImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_NextMsgPredictedImpl.cs index 7030a966d..7aceb60ed 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_NextMsgPredictedImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_NextMsgPredictedImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_NextMsgPredictedImpl : NetMessage, CSVCMsg_NextMsgPredicted { - public CSVCMsg_NextMsgPredictedImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int PredictedByPlayerSlot - { get => Accessor.GetInt32("predicted_by_player_slot"); set => Accessor.SetInt32("predicted_by_player_slot", value); } - - - public uint MessageTypeId - { get => Accessor.GetUInt32("message_type_id"); set => Accessor.SetUInt32("message_type_id", value); } - -} + public CSVCMsg_NextMsgPredictedImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int PredictedByPlayerSlot + { get => Accessor.GetInt32("predicted_by_player_slot"); set => Accessor.SetInt32("predicted_by_player_slot", value); } + public uint MessageTypeId + { get => Accessor.GetUInt32("message_type_id"); set => Accessor.SetUInt32("message_type_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PacketEntitiesImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PacketEntitiesImpl.cs index 6fe0e53ab..54f446bb5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PacketEntitiesImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PacketEntitiesImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,96 +8,52 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_PacketEntitiesImpl : NetMessage, CSVCMsg_PacketEntities { - public CSVCMsg_PacketEntitiesImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int MaxEntries - { get => Accessor.GetInt32("max_entries"); set => Accessor.SetInt32("max_entries", value); } - - - public int UpdatedEntries - { get => Accessor.GetInt32("updated_entries"); set => Accessor.SetInt32("updated_entries", value); } - - - public bool LegacyIsDelta - { get => Accessor.GetBool("legacy_is_delta"); set => Accessor.SetBool("legacy_is_delta", value); } - - - public bool UpdateBaseline - { get => Accessor.GetBool("update_baseline"); set => Accessor.SetBool("update_baseline", value); } - - - public int Baseline - { get => Accessor.GetInt32("baseline"); set => Accessor.SetInt32("baseline", value); } - - - public int DeltaFrom - { get => Accessor.GetInt32("delta_from"); set => Accessor.SetInt32("delta_from", value); } - - - public byte[] EntityData - { get => Accessor.GetBytes("entity_data"); set => Accessor.SetBytes("entity_data", value); } - - - public bool PendingFullFrame - { get => Accessor.GetBool("pending_full_frame"); set => Accessor.SetBool("pending_full_frame", value); } - - - public uint ActiveSpawngroupHandle - { get => Accessor.GetUInt32("active_spawngroup_handle"); set => Accessor.SetUInt32("active_spawngroup_handle", value); } - - - public uint MaxSpawngroupCreationsequence - { get => Accessor.GetUInt32("max_spawngroup_creationsequence"); set => Accessor.SetUInt32("max_spawngroup_creationsequence", value); } - - - public uint LastCmdNumberExecuted - { get => Accessor.GetUInt32("last_cmd_number_executed"); set => Accessor.SetUInt32("last_cmd_number_executed", value); } - - - public int LastCmdNumberRecvDelta - { get => Accessor.GetInt32("last_cmd_number_recv_delta"); set => Accessor.SetInt32("last_cmd_number_recv_delta", value); } - - - public uint ServerTick - { get => Accessor.GetUInt32("server_tick"); set => Accessor.SetUInt32("server_tick", value); } - - - public byte[] SerializedEntities - { get => Accessor.GetBytes("serialized_entities"); set => Accessor.SetBytes("serialized_entities", value); } - - - public IProtobufRepeatedFieldSubMessageType AlternateBaselines - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "alternate_baselines"); } - - - public uint HasPvsVisBitsDeprecated - { get => Accessor.GetUInt32("has_pvs_vis_bits_deprecated"); set => Accessor.SetUInt32("has_pvs_vis_bits_deprecated", value); } - - - public IProtobufRepeatedFieldValueType CmdRecvStatus - { get => new ProtobufRepeatedFieldValueType(Accessor, "cmd_recv_status"); } - - - public CSVCMsg_PacketEntities_non_transmitted_entities_t NonTransmittedEntities - { get => new CSVCMsg_PacketEntities_non_transmitted_entities_tImpl(NativeNetMessages.GetNestedMessage(Address, "non_transmitted_entities"), false); } - - - public uint CqStarvedCommandTicks - { get => Accessor.GetUInt32("cq_starved_command_ticks"); set => Accessor.SetUInt32("cq_starved_command_ticks", value); } - - - public uint CqDiscardedCommandTicks - { get => Accessor.GetUInt32("cq_discarded_command_ticks"); set => Accessor.SetUInt32("cq_discarded_command_ticks", value); } - - - public CSVCMsg_PacketEntities_outofpvs_entity_updates_t OutofpvsEntityUpdates - { get => new CSVCMsg_PacketEntities_outofpvs_entity_updates_tImpl(NativeNetMessages.GetNestedMessage(Address, "outofpvs_entity_updates"), false); } - - - public byte[] DevPadding - { get => Accessor.GetBytes("dev_padding"); set => Accessor.SetBytes("dev_padding", value); } - -} + public CSVCMsg_PacketEntitiesImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int MaxEntries + { get => Accessor.GetInt32("max_entries"); set => Accessor.SetInt32("max_entries", value); } + public int UpdatedEntries + { get => Accessor.GetInt32("updated_entries"); set => Accessor.SetInt32("updated_entries", value); } + public bool LegacyIsDelta + { get => Accessor.GetBool("legacy_is_delta"); set => Accessor.SetBool("legacy_is_delta", value); } + public bool UpdateBaseline + { get => Accessor.GetBool("update_baseline"); set => Accessor.SetBool("update_baseline", value); } + public int Baseline + { get => Accessor.GetInt32("baseline"); set => Accessor.SetInt32("baseline", value); } + public int DeltaFrom + { get => Accessor.GetInt32("delta_from"); set => Accessor.SetInt32("delta_from", value); } + public byte[] EntityData + { get => Accessor.GetBytes("entity_data"); set => Accessor.SetBytes("entity_data", value); } + public bool PendingFullFrame + { get => Accessor.GetBool("pending_full_frame"); set => Accessor.SetBool("pending_full_frame", value); } + public uint ActiveSpawngroupHandle + { get => Accessor.GetUInt32("active_spawngroup_handle"); set => Accessor.SetUInt32("active_spawngroup_handle", value); } + public uint MaxSpawngroupCreationsequence + { get => Accessor.GetUInt32("max_spawngroup_creationsequence"); set => Accessor.SetUInt32("max_spawngroup_creationsequence", value); } + public uint LastCmdNumberExecuted + { get => Accessor.GetUInt32("last_cmd_number_executed"); set => Accessor.SetUInt32("last_cmd_number_executed", value); } + public int LastCmdNumberRecvDelta + { get => Accessor.GetInt32("last_cmd_number_recv_delta"); set => Accessor.SetInt32("last_cmd_number_recv_delta", value); } + public uint ServerTick + { get => Accessor.GetUInt32("server_tick"); set => Accessor.SetUInt32("server_tick", value); } + public byte[] SerializedEntities + { get => Accessor.GetBytes("serialized_entities"); set => Accessor.SetBytes("serialized_entities", value); } + public IProtobufRepeatedFieldSubMessageType AlternateBaselines + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "alternate_baselines"); } + public uint HasPvsVisBitsDeprecated + { get => Accessor.GetUInt32("has_pvs_vis_bits_deprecated"); set => Accessor.SetUInt32("has_pvs_vis_bits_deprecated", value); } + public IProtobufRepeatedFieldValueType CmdRecvStatus + { get => new ProtobufRepeatedFieldValueType(Accessor, "cmd_recv_status"); } + public CSVCMsg_PacketEntities_non_transmitted_entities_t NonTransmittedEntities + { get => new CSVCMsg_PacketEntities_non_transmitted_entities_tImpl(NativeNetMessages.GetNestedMessage(Address, "non_transmitted_entities"), false); } + public uint CqStarvedCommandTicks + { get => Accessor.GetUInt32("cq_starved_command_ticks"); set => Accessor.SetUInt32("cq_starved_command_ticks", value); } + public uint CqDiscardedCommandTicks + { get => Accessor.GetUInt32("cq_discarded_command_ticks"); set => Accessor.SetUInt32("cq_discarded_command_ticks", value); } + public CSVCMsg_PacketEntities_outofpvs_entity_updates_t OutofpvsEntityUpdates + { get => new CSVCMsg_PacketEntities_outofpvs_entity_updates_tImpl(NativeNetMessages.GetNestedMessage(Address, "outofpvs_entity_updates"), false); } + public byte[] DevPadding + { get => Accessor.GetBytes("dev_padding"); set => Accessor.SetBytes("dev_padding", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PacketEntities_alternate_baseline_tImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PacketEntities_alternate_baseline_tImpl.cs index 11571d680..6f42f7034 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PacketEntities_alternate_baseline_tImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PacketEntities_alternate_baseline_tImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_PacketEntities_alternate_baseline_tImpl : TypedProtobuf, CSVCMsg_PacketEntities_alternate_baseline_t { - public CSVCMsg_PacketEntities_alternate_baseline_tImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int EntityIndex - { get => Accessor.GetInt32("entity_index"); set => Accessor.SetInt32("entity_index", value); } - - - public int BaselineIndex - { get => Accessor.GetInt32("baseline_index"); set => Accessor.SetInt32("baseline_index", value); } - -} + public CSVCMsg_PacketEntities_alternate_baseline_tImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int EntityIndex + { get => Accessor.GetInt32("entity_index"); set => Accessor.SetInt32("entity_index", value); } + public int BaselineIndex + { get => Accessor.GetInt32("baseline_index"); set => Accessor.SetInt32("baseline_index", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PacketEntities_non_transmitted_entities_tImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PacketEntities_non_transmitted_entities_tImpl.cs index 19e42684b..55ad77d18 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PacketEntities_non_transmitted_entities_tImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PacketEntities_non_transmitted_entities_tImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_PacketEntities_non_transmitted_entities_tImpl : TypedProtobuf, CSVCMsg_PacketEntities_non_transmitted_entities_t { - public CSVCMsg_PacketEntities_non_transmitted_entities_tImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int HeaderCount - { get => Accessor.GetInt32("header_count"); set => Accessor.SetInt32("header_count", value); } - - - public byte[] Data - { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } - -} + public CSVCMsg_PacketEntities_non_transmitted_entities_tImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int HeaderCount + { get => Accessor.GetInt32("header_count"); set => Accessor.SetInt32("header_count", value); } + public byte[] Data + { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PacketEntities_outofpvs_entity_updates_tImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PacketEntities_outofpvs_entity_updates_tImpl.cs index 47901b215..ba019cb8f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PacketEntities_outofpvs_entity_updates_tImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PacketEntities_outofpvs_entity_updates_tImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_PacketEntities_outofpvs_entity_updates_tImpl : TypedProtobuf, CSVCMsg_PacketEntities_outofpvs_entity_updates_t { - public CSVCMsg_PacketEntities_outofpvs_entity_updates_tImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Count - { get => Accessor.GetInt32("count"); set => Accessor.SetInt32("count", value); } - - - public byte[] Data - { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } - -} + public CSVCMsg_PacketEntities_outofpvs_entity_updates_tImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Count + { get => Accessor.GetInt32("count"); set => Accessor.SetInt32("count", value); } + public byte[] Data + { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PacketReliableImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PacketReliableImpl.cs index 44f44632d..91fd830b7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PacketReliableImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PacketReliableImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_PacketReliableImpl : NetMessage, CSVCMsg_PacketReliable { - public CSVCMsg_PacketReliableImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Tick - { get => Accessor.GetInt32("tick"); set => Accessor.SetInt32("tick", value); } - - - public int Messagessize - { get => Accessor.GetInt32("messagessize"); set => Accessor.SetInt32("messagessize", value); } - - - public bool State - { get => Accessor.GetBool("state"); set => Accessor.SetBool("state", value); } - -} + public CSVCMsg_PacketReliableImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Tick + { get => Accessor.GetInt32("tick"); set => Accessor.SetInt32("tick", value); } + public int Messagessize + { get => Accessor.GetInt32("messagessize"); set => Accessor.SetInt32("messagessize", value); } + public bool State + { get => Accessor.GetBool("state"); set => Accessor.SetBool("state", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PeerListImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PeerListImpl.cs index 84a9ff7d9..d142f28f1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PeerListImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PeerListImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_PeerListImpl : NetMessage, CSVCMsg_PeerList { - public CSVCMsg_PeerListImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public IProtobufRepeatedFieldSubMessageType Peer - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "peer"); } + public CSVCMsg_PeerListImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public IProtobufRepeatedFieldSubMessageType Peer + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "peer"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PrefetchImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PrefetchImpl.cs index f3edb992b..c0d34b267 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PrefetchImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PrefetchImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_PrefetchImpl : NetMessage, CSVCMsg_Prefetch { - public CSVCMsg_PrefetchImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int SoundIndex - { get => Accessor.GetInt32("sound_index"); set => Accessor.SetInt32("sound_index", value); } - - - public PrefetchType ResourceType - { get => (PrefetchType)Accessor.GetInt32("resource_type"); set => Accessor.SetInt32("resource_type", (int)value); } - -} + public CSVCMsg_PrefetchImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int SoundIndex + { get => Accessor.GetInt32("sound_index"); set => Accessor.SetInt32("sound_index", value); } + public PrefetchType ResourceType + { get => (PrefetchType)Accessor.GetInt32("resource_type"); set => Accessor.SetInt32("resource_type", (int)value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PrintImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PrintImpl.cs index 90e8ee829..b509a16e6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PrintImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_PrintImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_PrintImpl : NetMessage, CSVCMsg_Print { - public CSVCMsg_PrintImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public string Text - { get => Accessor.GetString("text"); set => Accessor.SetString("text", value); } + public CSVCMsg_PrintImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public string Text + { get => Accessor.GetString("text"); set => Accessor.SetString("text", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_RconServerDetailsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_RconServerDetailsImpl.cs index 916e0d86c..4458bccce 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_RconServerDetailsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_RconServerDetailsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_RconServerDetailsImpl : NetMessage, CSVCMsg_RconServerDetails { - public CSVCMsg_RconServerDetailsImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public byte[] Token - { get => Accessor.GetBytes("token"); set => Accessor.SetBytes("token", value); } - - - public string Details - { get => Accessor.GetString("details"); set => Accessor.SetString("details", value); } - -} + public CSVCMsg_RconServerDetailsImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public byte[] Token + { get => Accessor.GetBytes("token"); set => Accessor.SetBytes("token", value); } + public string Details + { get => Accessor.GetString("details"); set => Accessor.SetString("details", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_SendTableImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_SendTableImpl.cs index c19ef6357..bfbdbf46b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_SendTableImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_SendTableImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_SendTableImpl : TypedProtobuf, CSVCMsg_SendTable { - public CSVCMsg_SendTableImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public bool IsEnd - { get => Accessor.GetBool("is_end"); set => Accessor.SetBool("is_end", value); } - - - public string NetTableName - { get => Accessor.GetString("net_table_name"); set => Accessor.SetString("net_table_name", value); } - - - public bool NeedsDecoder - { get => Accessor.GetBool("needs_decoder"); set => Accessor.SetBool("needs_decoder", value); } - - - public IProtobufRepeatedFieldSubMessageType Props - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "props"); } - -} + public CSVCMsg_SendTableImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public bool IsEnd + { get => Accessor.GetBool("is_end"); set => Accessor.SetBool("is_end", value); } + public string NetTableName + { get => Accessor.GetString("net_table_name"); set => Accessor.SetString("net_table_name", value); } + public bool NeedsDecoder + { get => Accessor.GetBool("needs_decoder"); set => Accessor.SetBool("needs_decoder", value); } + public IProtobufRepeatedFieldSubMessageType Props + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "props"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_SendTable_sendprop_tImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_SendTable_sendprop_tImpl.cs index 5d74800f7..d27012013 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_SendTable_sendprop_tImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_SendTable_sendprop_tImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,44 +8,26 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_SendTable_sendprop_tImpl : TypedProtobuf, CSVCMsg_SendTable_sendprop_t { - public CSVCMsg_SendTable_sendprop_tImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Type - { get => Accessor.GetInt32("type"); set => Accessor.SetInt32("type", value); } - - - public string VarName - { get => Accessor.GetString("var_name"); set => Accessor.SetString("var_name", value); } - - - public int Flags - { get => Accessor.GetInt32("flags"); set => Accessor.SetInt32("flags", value); } - - - public int Priority - { get => Accessor.GetInt32("priority"); set => Accessor.SetInt32("priority", value); } - - - public string DtName - { get => Accessor.GetString("dt_name"); set => Accessor.SetString("dt_name", value); } - - - public int NumElements - { get => Accessor.GetInt32("num_elements"); set => Accessor.SetInt32("num_elements", value); } - - - public float LowValue - { get => Accessor.GetFloat("low_value"); set => Accessor.SetFloat("low_value", value); } - - - public float HighValue - { get => Accessor.GetFloat("high_value"); set => Accessor.SetFloat("high_value", value); } - - - public int NumBits - { get => Accessor.GetInt32("num_bits"); set => Accessor.SetInt32("num_bits", value); } - -} + public CSVCMsg_SendTable_sendprop_tImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Type + { get => Accessor.GetInt32("type"); set => Accessor.SetInt32("type", value); } + public string VarName + { get => Accessor.GetString("var_name"); set => Accessor.SetString("var_name", value); } + public int Flags + { get => Accessor.GetInt32("flags"); set => Accessor.SetInt32("flags", value); } + public int Priority + { get => Accessor.GetInt32("priority"); set => Accessor.SetInt32("priority", value); } + public string DtName + { get => Accessor.GetString("dt_name"); set => Accessor.SetString("dt_name", value); } + public int NumElements + { get => Accessor.GetInt32("num_elements"); set => Accessor.SetInt32("num_elements", value); } + public float LowValue + { get => Accessor.GetFloat("low_value"); set => Accessor.SetFloat("low_value", value); } + public float HighValue + { get => Accessor.GetFloat("high_value"); set => Accessor.SetFloat("high_value", value); } + public int NumBits + { get => Accessor.GetInt32("num_bits"); set => Accessor.SetInt32("num_bits", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_ServerInfoImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_ServerInfoImpl.cs index 438c1db28..80e36697a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_ServerInfoImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_ServerInfoImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,72 +8,40 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_ServerInfoImpl : NetMessage, CSVCMsg_ServerInfo { - public CSVCMsg_ServerInfoImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Protocol - { get => Accessor.GetInt32("protocol"); set => Accessor.SetInt32("protocol", value); } - - - public int ServerCount - { get => Accessor.GetInt32("server_count"); set => Accessor.SetInt32("server_count", value); } - - - public bool IsDedicated - { get => Accessor.GetBool("is_dedicated"); set => Accessor.SetBool("is_dedicated", value); } - - - public bool IsHltv - { get => Accessor.GetBool("is_hltv"); set => Accessor.SetBool("is_hltv", value); } - - - public int COs - { get => Accessor.GetInt32("c_os"); set => Accessor.SetInt32("c_os", value); } - - - public int MaxClients - { get => Accessor.GetInt32("max_clients"); set => Accessor.SetInt32("max_clients", value); } - - - public int MaxClasses - { get => Accessor.GetInt32("max_classes"); set => Accessor.SetInt32("max_classes", value); } - - - public int PlayerSlot - { get => Accessor.GetInt32("player_slot"); set => Accessor.SetInt32("player_slot", value); } - - - public float TickInterval - { get => Accessor.GetFloat("tick_interval"); set => Accessor.SetFloat("tick_interval", value); } - - - public string GameDir - { get => Accessor.GetString("game_dir"); set => Accessor.SetString("game_dir", value); } - - - public string MapName - { get => Accessor.GetString("map_name"); set => Accessor.SetString("map_name", value); } - - - public string SkyName - { get => Accessor.GetString("sky_name"); set => Accessor.SetString("sky_name", value); } - - - public string HostName - { get => Accessor.GetString("host_name"); set => Accessor.SetString("host_name", value); } - - - public string AddonName - { get => Accessor.GetString("addon_name"); set => Accessor.SetString("addon_name", value); } - - - public CSVCMsg_GameSessionConfiguration GameSessionConfig - { get => new CSVCMsg_GameSessionConfigurationImpl(NativeNetMessages.GetNestedMessage(Address, "game_session_config"), false); } - - - public byte[] GameSessionManifest - { get => Accessor.GetBytes("game_session_manifest"); set => Accessor.SetBytes("game_session_manifest", value); } - -} + public CSVCMsg_ServerInfoImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Protocol + { get => Accessor.GetInt32("protocol"); set => Accessor.SetInt32("protocol", value); } + public int ServerCount + { get => Accessor.GetInt32("server_count"); set => Accessor.SetInt32("server_count", value); } + public bool IsDedicated + { get => Accessor.GetBool("is_dedicated"); set => Accessor.SetBool("is_dedicated", value); } + public bool IsHltv + { get => Accessor.GetBool("is_hltv"); set => Accessor.SetBool("is_hltv", value); } + public int COs + { get => Accessor.GetInt32("c_os"); set => Accessor.SetInt32("c_os", value); } + public int MaxClients + { get => Accessor.GetInt32("max_clients"); set => Accessor.SetInt32("max_clients", value); } + public int MaxClasses + { get => Accessor.GetInt32("max_classes"); set => Accessor.SetInt32("max_classes", value); } + public int PlayerSlot + { get => Accessor.GetInt32("player_slot"); set => Accessor.SetInt32("player_slot", value); } + public float TickInterval + { get => Accessor.GetFloat("tick_interval"); set => Accessor.SetFloat("tick_interval", value); } + public string GameDir + { get => Accessor.GetString("game_dir"); set => Accessor.SetString("game_dir", value); } + public string MapName + { get => Accessor.GetString("map_name"); set => Accessor.SetString("map_name", value); } + public string SkyName + { get => Accessor.GetString("sky_name"); set => Accessor.SetString("sky_name", value); } + public string HostName + { get => Accessor.GetString("host_name"); set => Accessor.SetString("host_name", value); } + public string AddonName + { get => Accessor.GetString("addon_name"); set => Accessor.SetString("addon_name", value); } + public CSVCMsg_GameSessionConfiguration GameSessionConfig + { get => new CSVCMsg_GameSessionConfigurationImpl(NativeNetMessages.GetNestedMessage(Address, "game_session_config"), false); } + public byte[] GameSessionManifest + { get => Accessor.GetBytes("game_session_manifest"); set => Accessor.SetBytes("game_session_manifest", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_ServerSteamIDImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_ServerSteamIDImpl.cs index 540a633a1..c2736edd7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_ServerSteamIDImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_ServerSteamIDImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_ServerSteamIDImpl : NetMessage, CSVCMsg_ServerSteamID { - public CSVCMsg_ServerSteamIDImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public ulong SteamId - { get => Accessor.GetUInt64("steam_id"); set => Accessor.SetUInt64("steam_id", value); } + public CSVCMsg_ServerSteamIDImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public ulong SteamId + { get => Accessor.GetUInt64("steam_id"); set => Accessor.SetUInt64("steam_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_SetPauseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_SetPauseImpl.cs index 247de1482..0e1da9ca4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_SetPauseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_SetPauseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_SetPauseImpl : NetMessage, CSVCMsg_SetPause { - public CSVCMsg_SetPauseImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public bool Paused - { get => Accessor.GetBool("paused"); set => Accessor.SetBool("paused", value); } + public CSVCMsg_SetPauseImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public bool Paused + { get => Accessor.GetBool("paused"); set => Accessor.SetBool("paused", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_SetViewImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_SetViewImpl.cs index 5b7319afb..976e7df2d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_SetViewImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_SetViewImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_SetViewImpl : NetMessage, CSVCMsg_SetView { - public CSVCMsg_SetViewImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int EntityIndex - { get => Accessor.GetInt32("entity_index"); set => Accessor.SetInt32("entity_index", value); } - - - public int Slot - { get => Accessor.GetInt32("slot"); set => Accessor.SetInt32("slot", value); } - -} + public CSVCMsg_SetViewImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int EntityIndex + { get => Accessor.GetInt32("entity_index"); set => Accessor.SetInt32("entity_index", value); } + public int Slot + { get => Accessor.GetInt32("slot"); set => Accessor.SetInt32("slot", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_SoundsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_SoundsImpl.cs index 462e65aa0..bc0975de0 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_SoundsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_SoundsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_SoundsImpl : NetMessage, CSVCMsg_Sounds { - public CSVCMsg_SoundsImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public bool ReliableSound - { get => Accessor.GetBool("reliable_sound"); set => Accessor.SetBool("reliable_sound", value); } - - - public IProtobufRepeatedFieldSubMessageType Sounds - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "sounds"); } - -} + public CSVCMsg_SoundsImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public bool ReliableSound + { get => Accessor.GetBool("reliable_sound"); set => Accessor.SetBool("reliable_sound", value); } + public IProtobufRepeatedFieldSubMessageType Sounds + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "sounds"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_Sounds_sounddata_tImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_Sounds_sounddata_tImpl.cs index d23a7762d..255ffc275 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_Sounds_sounddata_tImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_Sounds_sounddata_tImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,84 +8,46 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_Sounds_sounddata_tImpl : TypedProtobuf, CSVCMsg_Sounds_sounddata_t { - public CSVCMsg_Sounds_sounddata_tImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int OriginX - { get => Accessor.GetInt32("origin_x"); set => Accessor.SetInt32("origin_x", value); } - - - public int OriginY - { get => Accessor.GetInt32("origin_y"); set => Accessor.SetInt32("origin_y", value); } - - - public int OriginZ - { get => Accessor.GetInt32("origin_z"); set => Accessor.SetInt32("origin_z", value); } - - - public uint Volume - { get => Accessor.GetUInt32("volume"); set => Accessor.SetUInt32("volume", value); } - - - public float DelayValue - { get => Accessor.GetFloat("delay_value"); set => Accessor.SetFloat("delay_value", value); } - - - public int SequenceNumber - { get => Accessor.GetInt32("sequence_number"); set => Accessor.SetInt32("sequence_number", value); } - - - public int EntityIndex - { get => Accessor.GetInt32("entity_index"); set => Accessor.SetInt32("entity_index", value); } - - - public int Channel - { get => Accessor.GetInt32("channel"); set => Accessor.SetInt32("channel", value); } - - - public int Pitch - { get => Accessor.GetInt32("pitch"); set => Accessor.SetInt32("pitch", value); } - - - public int Flags - { get => Accessor.GetInt32("flags"); set => Accessor.SetInt32("flags", value); } - - - public uint SoundNum - { get => Accessor.GetUInt32("sound_num"); set => Accessor.SetUInt32("sound_num", value); } - - - public uint SoundNumHandle - { get => Accessor.GetUInt32("sound_num_handle"); set => Accessor.SetUInt32("sound_num_handle", value); } - - - public int SpeakerEntity - { get => Accessor.GetInt32("speaker_entity"); set => Accessor.SetInt32("speaker_entity", value); } - - - public int RandomSeed - { get => Accessor.GetInt32("random_seed"); set => Accessor.SetInt32("random_seed", value); } - - - public int SoundLevel - { get => Accessor.GetInt32("sound_level"); set => Accessor.SetInt32("sound_level", value); } - - - public bool IsSentence - { get => Accessor.GetBool("is_sentence"); set => Accessor.SetBool("is_sentence", value); } - - - public bool IsAmbient - { get => Accessor.GetBool("is_ambient"); set => Accessor.SetBool("is_ambient", value); } - - - public uint Guid - { get => Accessor.GetUInt32("guid"); set => Accessor.SetUInt32("guid", value); } - - - public ulong SoundResourceId - { get => Accessor.GetUInt64("sound_resource_id"); set => Accessor.SetUInt64("sound_resource_id", value); } - -} + public CSVCMsg_Sounds_sounddata_tImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int OriginX + { get => Accessor.GetInt32("origin_x"); set => Accessor.SetInt32("origin_x", value); } + public int OriginY + { get => Accessor.GetInt32("origin_y"); set => Accessor.SetInt32("origin_y", value); } + public int OriginZ + { get => Accessor.GetInt32("origin_z"); set => Accessor.SetInt32("origin_z", value); } + public uint Volume + { get => Accessor.GetUInt32("volume"); set => Accessor.SetUInt32("volume", value); } + public float DelayValue + { get => Accessor.GetFloat("delay_value"); set => Accessor.SetFloat("delay_value", value); } + public int SequenceNumber + { get => Accessor.GetInt32("sequence_number"); set => Accessor.SetInt32("sequence_number", value); } + public int EntityIndex + { get => Accessor.GetInt32("entity_index"); set => Accessor.SetInt32("entity_index", value); } + public int Channel + { get => Accessor.GetInt32("channel"); set => Accessor.SetInt32("channel", value); } + public int Pitch + { get => Accessor.GetInt32("pitch"); set => Accessor.SetInt32("pitch", value); } + public int Flags + { get => Accessor.GetInt32("flags"); set => Accessor.SetInt32("flags", value); } + public uint SoundNum + { get => Accessor.GetUInt32("sound_num"); set => Accessor.SetUInt32("sound_num", value); } + public uint SoundNumHandle + { get => Accessor.GetUInt32("sound_num_handle"); set => Accessor.SetUInt32("sound_num_handle", value); } + public int SpeakerEntity + { get => Accessor.GetInt32("speaker_entity"); set => Accessor.SetInt32("speaker_entity", value); } + public int RandomSeed + { get => Accessor.GetInt32("random_seed"); set => Accessor.SetInt32("random_seed", value); } + public int SoundLevel + { get => Accessor.GetInt32("sound_level"); set => Accessor.SetInt32("sound_level", value); } + public bool IsSentence + { get => Accessor.GetBool("is_sentence"); set => Accessor.SetBool("is_sentence", value); } + public bool IsAmbient + { get => Accessor.GetBool("is_ambient"); set => Accessor.SetBool("is_ambient", value); } + public uint Guid + { get => Accessor.GetUInt32("guid"); set => Accessor.SetUInt32("guid", value); } + public ulong SoundResourceId + { get => Accessor.GetUInt64("sound_resource_id"); set => Accessor.SetUInt64("sound_resource_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_SplitScreenImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_SplitScreenImpl.cs index 7ead7492b..308104d19 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_SplitScreenImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_SplitScreenImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_SplitScreenImpl : NetMessage, CSVCMsg_SplitScreen { - public CSVCMsg_SplitScreenImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public ESplitScreenMessageType Type - { get => (ESplitScreenMessageType)Accessor.GetInt32("type"); set => Accessor.SetInt32("type", (int)value); } - - - public int Slot - { get => Accessor.GetInt32("slot"); set => Accessor.SetInt32("slot", value); } - - - public int PlayerIndex - { get => Accessor.GetInt32("player_index"); set => Accessor.SetInt32("player_index", value); } - -} + public CSVCMsg_SplitScreenImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public ESplitScreenMessageType Type + { get => (ESplitScreenMessageType)Accessor.GetInt32("type"); set => Accessor.SetInt32("type", (int)value); } + public int Slot + { get => Accessor.GetInt32("slot"); set => Accessor.SetInt32("slot", value); } + public int PlayerIndex + { get => Accessor.GetInt32("player_index"); set => Accessor.SetInt32("player_index", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_StopSoundImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_StopSoundImpl.cs index 9f68e4908..b0ff5a751 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_StopSoundImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_StopSoundImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_StopSoundImpl : NetMessage, CSVCMsg_StopSound { - public CSVCMsg_StopSoundImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint Guid - { get => Accessor.GetUInt32("guid"); set => Accessor.SetUInt32("guid", value); } + public CSVCMsg_StopSoundImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public uint Guid + { get => Accessor.GetUInt32("guid"); set => Accessor.SetUInt32("guid", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_TempEntitiesImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_TempEntitiesImpl.cs index 115deb6e8..24a35bf04 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_TempEntitiesImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_TempEntitiesImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_TempEntitiesImpl : TypedProtobuf, CSVCMsg_TempEntities { - public CSVCMsg_TempEntitiesImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public bool Reliable - { get => Accessor.GetBool("reliable"); set => Accessor.SetBool("reliable", value); } - - - public int NumEntries - { get => Accessor.GetInt32("num_entries"); set => Accessor.SetInt32("num_entries", value); } - - - public byte[] EntityData - { get => Accessor.GetBytes("entity_data"); set => Accessor.SetBytes("entity_data", value); } - -} + public CSVCMsg_TempEntitiesImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public bool Reliable + { get => Accessor.GetBool("reliable"); set => Accessor.SetBool("reliable", value); } + public int NumEntries + { get => Accessor.GetInt32("num_entries"); set => Accessor.SetInt32("num_entries", value); } + public byte[] EntityData + { get => Accessor.GetBytes("entity_data"); set => Accessor.SetBytes("entity_data", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_UpdateStringTableImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_UpdateStringTableImpl.cs index 80244749d..f92b17564 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_UpdateStringTableImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_UpdateStringTableImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_UpdateStringTableImpl : NetMessage, CSVCMsg_UpdateStringTable { - public CSVCMsg_UpdateStringTableImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int TableId - { get => Accessor.GetInt32("table_id"); set => Accessor.SetInt32("table_id", value); } - - - public int NumChangedEntries - { get => Accessor.GetInt32("num_changed_entries"); set => Accessor.SetInt32("num_changed_entries", value); } - - - public byte[] StringData - { get => Accessor.GetBytes("string_data"); set => Accessor.SetBytes("string_data", value); } - -} + public CSVCMsg_UpdateStringTableImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int TableId + { get => Accessor.GetInt32("table_id"); set => Accessor.SetInt32("table_id", value); } + public int NumChangedEntries + { get => Accessor.GetInt32("num_changed_entries"); set => Accessor.SetInt32("num_changed_entries", value); } + public byte[] StringData + { get => Accessor.GetBytes("string_data"); set => Accessor.SetBytes("string_data", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_UserCommandsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_UserCommandsImpl.cs index 8c7af4dc7..d46a644e7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_UserCommandsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_UserCommandsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_UserCommandsImpl : TypedProtobuf, CSVCMsg_UserCommands { - public CSVCMsg_UserCommandsImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldSubMessageType Commands - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "commands"); } + public CSVCMsg_UserCommandsImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public IProtobufRepeatedFieldSubMessageType Commands + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "commands"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_UserMessageImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_UserMessageImpl.cs index cdb42ead4..7613bbccd 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_UserMessageImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_UserMessageImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_UserMessageImpl : NetMessage, CSVCMsg_UserMessage { - public CSVCMsg_UserMessageImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int MsgType - { get => Accessor.GetInt32("msg_type"); set => Accessor.SetInt32("msg_type", value); } - - - public byte[] MsgData - { get => Accessor.GetBytes("msg_data"); set => Accessor.SetBytes("msg_data", value); } - - - public int Passthrough - { get => Accessor.GetInt32("passthrough"); set => Accessor.SetInt32("passthrough", value); } - -} + public CSVCMsg_UserMessageImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int MsgType + { get => Accessor.GetInt32("msg_type"); set => Accessor.SetInt32("msg_type", value); } + public byte[] MsgData + { get => Accessor.GetBytes("msg_data"); set => Accessor.SetBytes("msg_data", value); } + public int Passthrough + { get => Accessor.GetInt32("passthrough"); set => Accessor.SetInt32("passthrough", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_VoiceDataImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_VoiceDataImpl.cs index 4e756f560..6ada42606 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_VoiceDataImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_VoiceDataImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,36 +8,22 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_VoiceDataImpl : NetMessage, CSVCMsg_VoiceData { - public CSVCMsg_VoiceDataImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public CMsgVoiceAudio Audio - { get => new CMsgVoiceAudioImpl(NativeNetMessages.GetNestedMessage(Address, "audio"), false); } - - - public int Client - { get => Accessor.GetInt32("client"); set => Accessor.SetInt32("client", value); } - - - public bool Proximity - { get => Accessor.GetBool("proximity"); set => Accessor.SetBool("proximity", value); } - - - public ulong Xuid - { get => Accessor.GetUInt64("xuid"); set => Accessor.SetUInt64("xuid", value); } - - - public int AudibleMask - { get => Accessor.GetInt32("audible_mask"); set => Accessor.SetInt32("audible_mask", value); } - - - public uint Tick - { get => Accessor.GetUInt32("tick"); set => Accessor.SetUInt32("tick", value); } - - - public int Passthrough - { get => Accessor.GetInt32("passthrough"); set => Accessor.SetInt32("passthrough", value); } - -} + public CSVCMsg_VoiceDataImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public CMsgVoiceAudio Audio + { get => new CMsgVoiceAudioImpl(NativeNetMessages.GetNestedMessage(Address, "audio"), false); } + public int Client + { get => Accessor.GetInt32("client"); set => Accessor.SetInt32("client", value); } + public bool Proximity + { get => Accessor.GetBool("proximity"); set => Accessor.SetBool("proximity", value); } + public ulong Xuid + { get => Accessor.GetUInt64("xuid"); set => Accessor.SetUInt64("xuid", value); } + public int AudibleMask + { get => Accessor.GetInt32("audible_mask"); set => Accessor.SetInt32("audible_mask", value); } + public uint Tick + { get => Accessor.GetUInt32("tick"); set => Accessor.SetUInt32("tick", value); } + public int Passthrough + { get => Accessor.GetInt32("passthrough"); set => Accessor.SetInt32("passthrough", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_VoiceInitImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_VoiceInitImpl.cs index 7901ae3df..d47907eaa 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_VoiceInitImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSVCMsg_VoiceInitImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSVCMsg_VoiceInitImpl : NetMessage, CSVCMsg_VoiceInit { - public CSVCMsg_VoiceInitImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Quality - { get => Accessor.GetInt32("quality"); set => Accessor.SetInt32("quality", value); } - - - public string Codec - { get => Accessor.GetString("codec"); set => Accessor.SetString("codec", value); } - - - public int Version - { get => Accessor.GetInt32("version"); set => Accessor.SetInt32("version", value); } - -} + public CSVCMsg_VoiceInitImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Quality + { get => Accessor.GetInt32("quality"); set => Accessor.SetInt32("quality", value); } + public string Codec + { get => Accessor.GetString("codec"); set => Accessor.SetString("codec", value); } + public int Version + { get => Accessor.GetInt32("version"); set => Accessor.SetInt32("version", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSource2Metrics_MatchPerfSummary_NotificationImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSource2Metrics_MatchPerfSummary_NotificationImpl.cs index a50452dc1..fda41dea4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSource2Metrics_MatchPerfSummary_NotificationImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSource2Metrics_MatchPerfSummary_NotificationImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,36 +8,22 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSource2Metrics_MatchPerfSummary_NotificationImpl : TypedProtobuf, CSource2Metrics_MatchPerfSummary_Notification { - public CSource2Metrics_MatchPerfSummary_NotificationImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Appid - { get => Accessor.GetUInt32("appid"); set => Accessor.SetUInt32("appid", value); } - - - public string GameMode - { get => Accessor.GetString("game_mode"); set => Accessor.SetString("game_mode", value); } - - - public uint ServerBuildId - { get => Accessor.GetUInt32("server_build_id"); set => Accessor.SetUInt32("server_build_id", value); } - - - public uint ServerPopid - { get => Accessor.GetUInt32("server_popid"); set => Accessor.SetUInt32("server_popid", value); } - - - public CMsgSource2VProfLiteReport ServerProfile - { get => new CMsgSource2VProfLiteReportImpl(NativeNetMessages.GetNestedMessage(Address, "server_profile"), false); } - - - public IProtobufRepeatedFieldSubMessageType Clients - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "clients"); } - - - public string Map - { get => Accessor.GetString("map"); set => Accessor.SetString("map", value); } - -} + public CSource2Metrics_MatchPerfSummary_NotificationImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Appid + { get => Accessor.GetUInt32("appid"); set => Accessor.SetUInt32("appid", value); } + public string GameMode + { get => Accessor.GetString("game_mode"); set => Accessor.SetString("game_mode", value); } + public uint ServerBuildId + { get => Accessor.GetUInt32("server_build_id"); set => Accessor.SetUInt32("server_build_id", value); } + public uint ServerPopid + { get => Accessor.GetUInt32("server_popid"); set => Accessor.SetUInt32("server_popid", value); } + public CMsgSource2VProfLiteReport ServerProfile + { get => new CMsgSource2VProfLiteReportImpl(NativeNetMessages.GetNestedMessage(Address, "server_profile"), false); } + public IProtobufRepeatedFieldSubMessageType Clients + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "clients"); } + public string Map + { get => Accessor.GetString("map"); set => Accessor.SetString("map", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSource2Metrics_MatchPerfSummary_Notification_ClientImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSource2Metrics_MatchPerfSummary_Notification_ClientImpl.cs index 928f155fb..c631578e0 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSource2Metrics_MatchPerfSummary_Notification_ClientImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSource2Metrics_MatchPerfSummary_Notification_ClientImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,36 +8,22 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSource2Metrics_MatchPerfSummary_Notification_ClientImpl : TypedProtobuf, CSource2Metrics_MatchPerfSummary_Notification_Client { - public CSource2Metrics_MatchPerfSummary_Notification_ClientImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public CMsgSource2SystemSpecs SystemSpecs - { get => new CMsgSource2SystemSpecsImpl(NativeNetMessages.GetNestedMessage(Address, "system_specs"), false); } - - - public CMsgSource2VProfLiteReport Profile - { get => new CMsgSource2VProfLiteReportImpl(NativeNetMessages.GetNestedMessage(Address, "profile"), false); } - - - public uint BuildId - { get => Accessor.GetUInt32("build_id"); set => Accessor.SetUInt32("build_id", value); } - - - public CMsgSource2NetworkFlowQuality DownstreamFlow - { get => new CMsgSource2NetworkFlowQualityImpl(NativeNetMessages.GetNestedMessage(Address, "downstream_flow"), false); } - - - public CMsgSource2NetworkFlowQuality UpstreamFlow - { get => new CMsgSource2NetworkFlowQualityImpl(NativeNetMessages.GetNestedMessage(Address, "upstream_flow"), false); } - - - public ulong Steamid - { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } - - - public IProtobufRepeatedFieldSubMessageType PerfSamples - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "perf_samples"); } - -} + public CSource2Metrics_MatchPerfSummary_Notification_ClientImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public CMsgSource2SystemSpecs SystemSpecs + { get => new CMsgSource2SystemSpecsImpl(NativeNetMessages.GetNestedMessage(Address, "system_specs"), false); } + public CMsgSource2VProfLiteReport Profile + { get => new CMsgSource2VProfLiteReportImpl(NativeNetMessages.GetNestedMessage(Address, "profile"), false); } + public uint BuildId + { get => Accessor.GetUInt32("build_id"); set => Accessor.SetUInt32("build_id", value); } + public CMsgSource2NetworkFlowQuality DownstreamFlow + { get => new CMsgSource2NetworkFlowQualityImpl(NativeNetMessages.GetNestedMessage(Address, "downstream_flow"), false); } + public CMsgSource2NetworkFlowQuality UpstreamFlow + { get => new CMsgSource2NetworkFlowQualityImpl(NativeNetMessages.GetNestedMessage(Address, "upstream_flow"), false); } + public ulong Steamid + { get => Accessor.GetUInt64("steamid"); set => Accessor.SetUInt64("steamid", value); } + public IProtobufRepeatedFieldSubMessageType PerfSamples + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "perf_samples"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSteam_Voice_EncodingImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSteam_Voice_EncodingImpl.cs index d9a6ca41d..7a588a174 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSteam_Voice_EncodingImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSteam_Voice_EncodingImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSteam_Voice_EncodingImpl : TypedProtobuf, CSteam_Voice_Encoding { - public CSteam_Voice_EncodingImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public byte[] VoiceData - { get => Accessor.GetBytes("voice_data"); set => Accessor.SetBytes("voice_data", value); } + public CSteam_Voice_EncodingImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public byte[] VoiceData + { get => Accessor.GetBytes("voice_data"); set => Accessor.SetBytes("voice_data", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSubtickMoveStepImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSubtickMoveStepImpl.cs index bdca6d82c..a42515438 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSubtickMoveStepImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CSubtickMoveStepImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,36 +8,22 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CSubtickMoveStepImpl : TypedProtobuf, CSubtickMoveStep { - public CSubtickMoveStepImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong Button - { get => Accessor.GetUInt64("button"); set => Accessor.SetUInt64("button", value); } - - - public bool Pressed - { get => Accessor.GetBool("pressed"); set => Accessor.SetBool("pressed", value); } - - - public float When - { get => Accessor.GetFloat("when"); set => Accessor.SetFloat("when", value); } - - - public float AnalogForwardDelta - { get => Accessor.GetFloat("analog_forward_delta"); set => Accessor.SetFloat("analog_forward_delta", value); } - - - public float AnalogLeftDelta - { get => Accessor.GetFloat("analog_left_delta"); set => Accessor.SetFloat("analog_left_delta", value); } - - - public float PitchDelta - { get => Accessor.GetFloat("pitch_delta"); set => Accessor.SetFloat("pitch_delta", value); } - - - public float YawDelta - { get => Accessor.GetFloat("yaw_delta"); set => Accessor.SetFloat("yaw_delta", value); } - -} + public CSubtickMoveStepImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong Button + { get => Accessor.GetUInt64("button"); set => Accessor.SetUInt64("button", value); } + public bool Pressed + { get => Accessor.GetBool("pressed"); set => Accessor.SetBool("pressed", value); } + public float When + { get => Accessor.GetFloat("when"); set => Accessor.SetFloat("when", value); } + public float AnalogForwardDelta + { get => Accessor.GetFloat("analog_forward_delta"); set => Accessor.SetFloat("analog_forward_delta", value); } + public float AnalogLeftDelta + { get => Accessor.GetFloat("analog_left_delta"); set => Accessor.SetFloat("analog_left_delta", value); } + public float PitchDelta + { get => Accessor.GetFloat("pitch_delta"); set => Accessor.SetFloat("pitch_delta", value); } + public float YawDelta + { get => Accessor.GetFloat("yaw_delta"); set => Accessor.SetFloat("yaw_delta", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUIFontFilePBImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUIFontFilePBImpl.cs index 2ebd395d5..351fb35b1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUIFontFilePBImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUIFontFilePBImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUIFontFilePBImpl : TypedProtobuf, CUIFontFilePB { - public CUIFontFilePBImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string FontFileName - { get => Accessor.GetString("font_file_name"); set => Accessor.SetString("font_file_name", value); } - - - public byte[] OpentypeFontData - { get => Accessor.GetBytes("opentype_font_data"); set => Accessor.SetBytes("opentype_font_data", value); } - -} + public CUIFontFilePBImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string FontFileName + { get => Accessor.GetString("font_file_name"); set => Accessor.SetString("font_file_name", value); } + public byte[] OpentypeFontData + { get => Accessor.GetBytes("opentype_font_data"); set => Accessor.SetBytes("opentype_font_data", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUIFontFilePackagePBImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUIFontFilePackagePBImpl.cs index dfea12604..f1ecb3d19 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUIFontFilePackagePBImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUIFontFilePackagePBImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUIFontFilePackagePBImpl : TypedProtobuf, CUIFontFilePackagePB { - public CUIFontFilePackagePBImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint PackageVersion - { get => Accessor.GetUInt32("package_version"); set => Accessor.SetUInt32("package_version", value); } - - - public IProtobufRepeatedFieldSubMessageType EncryptedFontFiles - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "encrypted_font_files"); } - -} + public CUIFontFilePackagePBImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint PackageVersion + { get => Accessor.GetUInt32("package_version"); set => Accessor.SetUInt32("package_version", value); } + public IProtobufRepeatedFieldSubMessageType EncryptedFontFiles + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "encrypted_font_files"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUIFontFilePackagePB_CUIEncryptedFontFilePBImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUIFontFilePackagePB_CUIEncryptedFontFilePBImpl.cs index 34e290650..9637fed81 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUIFontFilePackagePB_CUIEncryptedFontFilePBImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUIFontFilePackagePB_CUIEncryptedFontFilePBImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUIFontFilePackagePB_CUIEncryptedFontFilePBImpl : TypedProtobuf, CUIFontFilePackagePB_CUIEncryptedFontFilePB { - public CUIFontFilePackagePB_CUIEncryptedFontFilePBImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public byte[] EncryptedContents - { get => Accessor.GetBytes("encrypted_contents"); set => Accessor.SetBytes("encrypted_contents", value); } + public CUIFontFilePackagePB_CUIEncryptedFontFilePBImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public byte[] EncryptedContents + { get => Accessor.GetBytes("encrypted_contents"); set => Accessor.SetBytes("encrypted_contents", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserCmdBasePBImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserCmdBasePBImpl.cs index c5c437f71..316dc6b31 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserCmdBasePBImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserCmdBasePBImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserCmdBasePBImpl : TypedProtobuf, CUserCmdBasePB { - public CUserCmdBasePBImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public CBaseUserCmdPB Base - { get => new CBaseUserCmdPBImpl(NativeNetMessages.GetNestedMessage(Address, "base"), false); } + public CUserCmdBasePBImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public CBaseUserCmdPB Base + { get => new CBaseUserCmdPBImpl(NativeNetMessages.GetNestedMessage(Address, "base"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageAchievementEventImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageAchievementEventImpl.cs index 8dec089a5..b4f30e951 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageAchievementEventImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageAchievementEventImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageAchievementEventImpl : NetMessage, CUserMessageAchievementEvent { - public CUserMessageAchievementEventImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint Achievement - { get => Accessor.GetUInt32("achievement"); set => Accessor.SetUInt32("achievement", value); } + public CUserMessageAchievementEventImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public uint Achievement + { get => Accessor.GetUInt32("achievement"); set => Accessor.SetUInt32("achievement", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageAmmoDeniedImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageAmmoDeniedImpl.cs index 7540111fd..4713a32b3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageAmmoDeniedImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageAmmoDeniedImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageAmmoDeniedImpl : NetMessage, CUserMessageAmmoDenied { - public CUserMessageAmmoDeniedImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint AmmoId - { get => Accessor.GetUInt32("ammo_id"); set => Accessor.SetUInt32("ammo_id", value); } + public CUserMessageAmmoDeniedImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public uint AmmoId + { get => Accessor.GetUInt32("ammo_id"); set => Accessor.SetUInt32("ammo_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageAnimStateGraphStateImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageAnimStateGraphStateImpl.cs index 43f6654b7..d81fbf56f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageAnimStateGraphStateImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageAnimStateGraphStateImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageAnimStateGraphStateImpl : TypedProtobuf, CUserMessageAnimStateGraphState { - public CUserMessageAnimStateGraphStateImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int EntityIndex - { get => Accessor.GetInt32("entity_index"); set => Accessor.SetInt32("entity_index", value); } - - - public byte[] Data - { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } - -} + public CUserMessageAnimStateGraphStateImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int EntityIndex + { get => Accessor.GetInt32("entity_index"); set => Accessor.SetInt32("entity_index", value); } + public byte[] Data + { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageAudioParameterImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageAudioParameterImpl.cs index fbeabd449..e9b35388c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageAudioParameterImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageAudioParameterImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageAudioParameterImpl : NetMessage, CUserMessageAudioParameter { - public CUserMessageAudioParameterImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint ParameterType - { get => Accessor.GetUInt32("parameter_type"); set => Accessor.SetUInt32("parameter_type", value); } - - - public uint NameHashCode - { get => Accessor.GetUInt32("name_hash_code"); set => Accessor.SetUInt32("name_hash_code", value); } - - - public float Value - { get => Accessor.GetFloat("value"); set => Accessor.SetFloat("value", value); } - - - public uint IntValue - { get => Accessor.GetUInt32("int_value"); set => Accessor.SetUInt32("int_value", value); } - -} + public CUserMessageAudioParameterImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public uint ParameterType + { get => Accessor.GetUInt32("parameter_type"); set => Accessor.SetUInt32("parameter_type", value); } + public uint NameHashCode + { get => Accessor.GetUInt32("name_hash_code"); set => Accessor.SetUInt32("name_hash_code", value); } + public float Value + { get => Accessor.GetFloat("value"); set => Accessor.SetFloat("value", value); } + public uint IntValue + { get => Accessor.GetUInt32("int_value"); set => Accessor.SetUInt32("int_value", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageCameraTransitionImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageCameraTransitionImpl.cs index eff6c7c61..7ae01515f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageCameraTransitionImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageCameraTransitionImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageCameraTransitionImpl : NetMessage, CUserMessageCameraTransition { - public CUserMessageCameraTransitionImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint CameraType - { get => Accessor.GetUInt32("camera_type"); set => Accessor.SetUInt32("camera_type", value); } - - - public float Duration - { get => Accessor.GetFloat("duration"); set => Accessor.SetFloat("duration", value); } - - - public CUserMessageCameraTransition_Transition_DataDriven ParamsDataDriven - { get => new CUserMessageCameraTransition_Transition_DataDrivenImpl(NativeNetMessages.GetNestedMessage(Address, "params_data_driven"), false); } - -} + public CUserMessageCameraTransitionImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public uint CameraType + { get => Accessor.GetUInt32("camera_type"); set => Accessor.SetUInt32("camera_type", value); } + public float Duration + { get => Accessor.GetFloat("duration"); set => Accessor.SetFloat("duration", value); } + public CUserMessageCameraTransition_Transition_DataDriven ParamsDataDriven + { get => new CUserMessageCameraTransition_Transition_DataDrivenImpl(NativeNetMessages.GetNestedMessage(Address, "params_data_driven"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageCameraTransition_Transition_DataDrivenImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageCameraTransition_Transition_DataDrivenImpl.cs index ec0492194..8188d6a4e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageCameraTransition_Transition_DataDrivenImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageCameraTransition_Transition_DataDrivenImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageCameraTransition_Transition_DataDrivenImpl : TypedProtobuf, CUserMessageCameraTransition_Transition_DataDriven { - public CUserMessageCameraTransition_Transition_DataDrivenImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string Filename - { get => Accessor.GetString("filename"); set => Accessor.SetString("filename", value); } - - - public int AttachEntIndex - { get => Accessor.GetInt32("attach_ent_index"); set => Accessor.SetInt32("attach_ent_index", value); } - - - public float Duration - { get => Accessor.GetFloat("duration"); set => Accessor.SetFloat("duration", value); } - -} + public CUserMessageCameraTransition_Transition_DataDrivenImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string Filename + { get => Accessor.GetString("filename"); set => Accessor.SetString("filename", value); } + public int AttachEntIndex + { get => Accessor.GetInt32("attach_ent_index"); set => Accessor.SetInt32("attach_ent_index", value); } + public float Duration + { get => Accessor.GetFloat("duration"); set => Accessor.SetFloat("duration", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageCloseCaptionDirectImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageCloseCaptionDirectImpl.cs index 394c2329a..399cd16ac 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageCloseCaptionDirectImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageCloseCaptionDirectImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageCloseCaptionDirectImpl : NetMessage, CUserMessageCloseCaptionDirect { - public CUserMessageCloseCaptionDirectImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint Hash - { get => Accessor.GetUInt32("hash"); set => Accessor.SetUInt32("hash", value); } - - - public float Duration - { get => Accessor.GetFloat("duration"); set => Accessor.SetFloat("duration", value); } - - - public bool FromPlayer - { get => Accessor.GetBool("from_player"); set => Accessor.SetBool("from_player", value); } - - - public int EntIndex - { get => Accessor.GetInt32("ent_index"); set => Accessor.SetInt32("ent_index", value); } - -} + public CUserMessageCloseCaptionDirectImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public uint Hash + { get => Accessor.GetUInt32("hash"); set => Accessor.SetUInt32("hash", value); } + public float Duration + { get => Accessor.GetFloat("duration"); set => Accessor.SetFloat("duration", value); } + public bool FromPlayer + { get => Accessor.GetBool("from_player"); set => Accessor.SetBool("from_player", value); } + public int EntIndex + { get => Accessor.GetInt32("ent_index"); set => Accessor.SetInt32("ent_index", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageCloseCaptionImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageCloseCaptionImpl.cs index 366a3b7aa..537feaec0 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageCloseCaptionImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageCloseCaptionImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageCloseCaptionImpl : NetMessage, CUserMessageCloseCaption { - public CUserMessageCloseCaptionImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint Hash - { get => Accessor.GetUInt32("hash"); set => Accessor.SetUInt32("hash", value); } - - - public float Duration - { get => Accessor.GetFloat("duration"); set => Accessor.SetFloat("duration", value); } - - - public bool FromPlayer - { get => Accessor.GetBool("from_player"); set => Accessor.SetBool("from_player", value); } - - - public int EntIndex - { get => Accessor.GetInt32("ent_index"); set => Accessor.SetInt32("ent_index", value); } - -} + public CUserMessageCloseCaptionImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public uint Hash + { get => Accessor.GetUInt32("hash"); set => Accessor.SetUInt32("hash", value); } + public float Duration + { get => Accessor.GetFloat("duration"); set => Accessor.SetFloat("duration", value); } + public bool FromPlayer + { get => Accessor.GetBool("from_player"); set => Accessor.SetBool("from_player", value); } + public int EntIndex + { get => Accessor.GetInt32("ent_index"); set => Accessor.SetInt32("ent_index", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageCloseCaptionPlaceholderImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageCloseCaptionPlaceholderImpl.cs index 46d54354d..4fdc40628 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageCloseCaptionPlaceholderImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageCloseCaptionPlaceholderImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageCloseCaptionPlaceholderImpl : NetMessage, CUserMessageCloseCaptionPlaceholder { - public CUserMessageCloseCaptionPlaceholderImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public string String - { get => Accessor.GetString("string"); set => Accessor.SetString("string", value); } - - - public float Duration - { get => Accessor.GetFloat("duration"); set => Accessor.SetFloat("duration", value); } - - - public bool FromPlayer - { get => Accessor.GetBool("from_player"); set => Accessor.SetBool("from_player", value); } - - - public int EntIndex - { get => Accessor.GetInt32("ent_index"); set => Accessor.SetInt32("ent_index", value); } - -} + public CUserMessageCloseCaptionPlaceholderImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public string String + { get => Accessor.GetString("string"); set => Accessor.SetString("string", value); } + public float Duration + { get => Accessor.GetFloat("duration"); set => Accessor.SetFloat("duration", value); } + public bool FromPlayer + { get => Accessor.GetBool("from_player"); set => Accessor.SetBool("from_player", value); } + public int EntIndex + { get => Accessor.GetInt32("ent_index"); set => Accessor.SetInt32("ent_index", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageColoredTextImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageColoredTextImpl.cs index 1b4743832..f7d068dbf 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageColoredTextImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageColoredTextImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,32 +8,20 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageColoredTextImpl : NetMessage, CUserMessageColoredText { - public CUserMessageColoredTextImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint Color - { get => Accessor.GetUInt32("color"); set => Accessor.SetUInt32("color", value); } - - - public string Text - { get => Accessor.GetString("text"); set => Accessor.SetString("text", value); } - - - public bool Reset - { get => Accessor.GetBool("reset"); set => Accessor.SetBool("reset", value); } - - - public int ContextPlayerSlot - { get => Accessor.GetInt32("context_player_slot"); set => Accessor.SetInt32("context_player_slot", value); } - - - public int ContextValue - { get => Accessor.GetInt32("context_value"); set => Accessor.SetInt32("context_value", value); } - - - public int ContextTeamId - { get => Accessor.GetInt32("context_team_id"); set => Accessor.SetInt32("context_team_id", value); } - -} + public CUserMessageColoredTextImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public uint Color + { get => Accessor.GetUInt32("color"); set => Accessor.SetUInt32("color", value); } + public string Text + { get => Accessor.GetString("text"); set => Accessor.SetString("text", value); } + public bool Reset + { get => Accessor.GetBool("reset"); set => Accessor.SetBool("reset", value); } + public int ContextPlayerSlot + { get => Accessor.GetInt32("context_player_slot"); set => Accessor.SetInt32("context_player_slot", value); } + public int ContextValue + { get => Accessor.GetInt32("context_value"); set => Accessor.SetInt32("context_value", value); } + public int ContextTeamId + { get => Accessor.GetInt32("context_team_id"); set => Accessor.SetInt32("context_team_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageCreditsMsgImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageCreditsMsgImpl.cs index 70e8d1c37..d50660fd5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageCreditsMsgImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageCreditsMsgImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageCreditsMsgImpl : NetMessage, CUserMessageCreditsMsg { - public CUserMessageCreditsMsgImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public eRollType Rolltype - { get => (eRollType)Accessor.GetInt32("rolltype"); set => Accessor.SetInt32("rolltype", (int)value); } - - - public float LogoLength - { get => Accessor.GetFloat("logo_length"); set => Accessor.SetFloat("logo_length", value); } - -} + public CUserMessageCreditsMsgImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public eRollType Rolltype + { get => (eRollType)Accessor.GetInt32("rolltype"); set => Accessor.SetInt32("rolltype", (int)value); } + public float LogoLength + { get => Accessor.GetFloat("logo_length"); set => Accessor.SetFloat("logo_length", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageCurrentTimescaleImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageCurrentTimescaleImpl.cs index 173cc5272..e95dae985 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageCurrentTimescaleImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageCurrentTimescaleImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageCurrentTimescaleImpl : NetMessage, CUserMessageCurrentTimescale { - public CUserMessageCurrentTimescaleImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public float Current - { get => Accessor.GetFloat("current"); set => Accessor.SetFloat("current", value); } + public CUserMessageCurrentTimescaleImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public float Current + { get => Accessor.GetFloat("current"); set => Accessor.SetFloat("current", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageDesiredTimescaleImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageDesiredTimescaleImpl.cs index e3241c3e1..b0f077ecb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageDesiredTimescaleImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageDesiredTimescaleImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageDesiredTimescaleImpl : NetMessage, CUserMessageDesiredTimescale { - public CUserMessageDesiredTimescaleImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public float Desired - { get => Accessor.GetFloat("desired"); set => Accessor.SetFloat("desired", value); } - - - public float Acceleration - { get => Accessor.GetFloat("acceleration"); set => Accessor.SetFloat("acceleration", value); } - - - public float Minblendrate - { get => Accessor.GetFloat("minblendrate"); set => Accessor.SetFloat("minblendrate", value); } - - - public float Blenddeltamultiplier - { get => Accessor.GetFloat("blenddeltamultiplier"); set => Accessor.SetFloat("blenddeltamultiplier", value); } - -} + public CUserMessageDesiredTimescaleImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public float Desired + { get => Accessor.GetFloat("desired"); set => Accessor.SetFloat("desired", value); } + public float Acceleration + { get => Accessor.GetFloat("acceleration"); set => Accessor.SetFloat("acceleration", value); } + public float Minblendrate + { get => Accessor.GetFloat("minblendrate"); set => Accessor.SetFloat("minblendrate", value); } + public float Blenddeltamultiplier + { get => Accessor.GetFloat("blenddeltamultiplier"); set => Accessor.SetFloat("blenddeltamultiplier", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageFadeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageFadeImpl.cs index 1de4f6dfc..1b5cd1633 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageFadeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageFadeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageFadeImpl : NetMessage, CUserMessageFade { - public CUserMessageFadeImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint Duration - { get => Accessor.GetUInt32("duration"); set => Accessor.SetUInt32("duration", value); } - - - public uint HoldTime - { get => Accessor.GetUInt32("hold_time"); set => Accessor.SetUInt32("hold_time", value); } - - - public uint Flags - { get => Accessor.GetUInt32("flags"); set => Accessor.SetUInt32("flags", value); } - - - public uint Color - { get => Accessor.GetUInt32("color"); set => Accessor.SetUInt32("color", value); } - -} + public CUserMessageFadeImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public uint Duration + { get => Accessor.GetUInt32("duration"); set => Accessor.SetUInt32("duration", value); } + public uint HoldTime + { get => Accessor.GetUInt32("hold_time"); set => Accessor.SetUInt32("hold_time", value); } + public uint Flags + { get => Accessor.GetUInt32("flags"); set => Accessor.SetUInt32("flags", value); } + public uint Color + { get => Accessor.GetUInt32("color"); set => Accessor.SetUInt32("color", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageGameTitleImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageGameTitleImpl.cs index 0c94d52c5..8a504f959 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageGameTitleImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageGameTitleImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,9 +8,8 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageGameTitleImpl : NetMessage, CUserMessageGameTitle { - public CUserMessageGameTitleImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - + public CUserMessageGameTitleImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageHapticsManagerEffectImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageHapticsManagerEffectImpl.cs index fd841ce32..250926128 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageHapticsManagerEffectImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageHapticsManagerEffectImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageHapticsManagerEffectImpl : NetMessage, CUserMessageHapticsManagerEffect { - public CUserMessageHapticsManagerEffectImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int HandId - { get => Accessor.GetInt32("hand_id"); set => Accessor.SetInt32("hand_id", value); } - - - public uint EffectNameHashCode - { get => Accessor.GetUInt32("effect_name_hash_code"); set => Accessor.SetUInt32("effect_name_hash_code", value); } - - - public float EffectScale - { get => Accessor.GetFloat("effect_scale"); set => Accessor.SetFloat("effect_scale", value); } - -} + public CUserMessageHapticsManagerEffectImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int HandId + { get => Accessor.GetInt32("hand_id"); set => Accessor.SetInt32("hand_id", value); } + public uint EffectNameHashCode + { get => Accessor.GetUInt32("effect_name_hash_code"); set => Accessor.SetUInt32("effect_name_hash_code", value); } + public float EffectScale + { get => Accessor.GetFloat("effect_scale"); set => Accessor.SetFloat("effect_scale", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageHapticsManagerPulseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageHapticsManagerPulseImpl.cs index f780399f9..2cb0ffc87 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageHapticsManagerPulseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageHapticsManagerPulseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageHapticsManagerPulseImpl : NetMessage, CUserMessageHapticsManagerPulse { - public CUserMessageHapticsManagerPulseImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int HandId - { get => Accessor.GetInt32("hand_id"); set => Accessor.SetInt32("hand_id", value); } - - - public float EffectAmplitude - { get => Accessor.GetFloat("effect_amplitude"); set => Accessor.SetFloat("effect_amplitude", value); } - - - public float EffectFrequency - { get => Accessor.GetFloat("effect_frequency"); set => Accessor.SetFloat("effect_frequency", value); } - - - public float EffectDuration - { get => Accessor.GetFloat("effect_duration"); set => Accessor.SetFloat("effect_duration", value); } - -} + public CUserMessageHapticsManagerPulseImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int HandId + { get => Accessor.GetInt32("hand_id"); set => Accessor.SetInt32("hand_id", value); } + public float EffectAmplitude + { get => Accessor.GetFloat("effect_amplitude"); set => Accessor.SetFloat("effect_amplitude", value); } + public float EffectFrequency + { get => Accessor.GetFloat("effect_frequency"); set => Accessor.SetFloat("effect_frequency", value); } + public float EffectDuration + { get => Accessor.GetFloat("effect_duration"); set => Accessor.SetFloat("effect_duration", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageHudMsgImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageHudMsgImpl.cs index c3ea4b0d6..04e2159c6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageHudMsgImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageHudMsgImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,36 +8,22 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageHudMsgImpl : NetMessage, CUserMessageHudMsg { - public CUserMessageHudMsgImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint Channel - { get => Accessor.GetUInt32("channel"); set => Accessor.SetUInt32("channel", value); } - - - public float X - { get => Accessor.GetFloat("x"); set => Accessor.SetFloat("x", value); } - - - public float Y - { get => Accessor.GetFloat("y"); set => Accessor.SetFloat("y", value); } - - - public uint Color1 - { get => Accessor.GetUInt32("color1"); set => Accessor.SetUInt32("color1", value); } - - - public uint Color2 - { get => Accessor.GetUInt32("color2"); set => Accessor.SetUInt32("color2", value); } - - - public uint Effect - { get => Accessor.GetUInt32("effect"); set => Accessor.SetUInt32("effect", value); } - - - public string Message - { get => Accessor.GetString("message"); set => Accessor.SetString("message", value); } - -} + public CUserMessageHudMsgImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public uint Channel + { get => Accessor.GetUInt32("channel"); set => Accessor.SetUInt32("channel", value); } + public float X + { get => Accessor.GetFloat("x"); set => Accessor.SetFloat("x", value); } + public float Y + { get => Accessor.GetFloat("y"); set => Accessor.SetFloat("y", value); } + public uint Color1 + { get => Accessor.GetUInt32("color1"); set => Accessor.SetUInt32("color1", value); } + public uint Color2 + { get => Accessor.GetUInt32("color2"); set => Accessor.SetUInt32("color2", value); } + public uint Effect + { get => Accessor.GetUInt32("effect"); set => Accessor.SetUInt32("effect", value); } + public string Message + { get => Accessor.GetString("message"); set => Accessor.SetString("message", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageHudTextImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageHudTextImpl.cs index 2e67fed49..5a11bfaa7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageHudTextImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageHudTextImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageHudTextImpl : NetMessage, CUserMessageHudText { - public CUserMessageHudTextImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public string Message - { get => Accessor.GetString("message"); set => Accessor.SetString("message", value); } + public CUserMessageHudTextImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public string Message + { get => Accessor.GetString("message"); set => Accessor.SetString("message", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageItemPickupImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageItemPickupImpl.cs index 63a00f95e..565ff1d48 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageItemPickupImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageItemPickupImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageItemPickupImpl : NetMessage, CUserMessageItemPickup { - public CUserMessageItemPickupImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public string Itemname - { get => Accessor.GetString("itemname"); set => Accessor.SetString("itemname", value); } + public CUserMessageItemPickupImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public string Itemname + { get => Accessor.GetString("itemname"); set => Accessor.SetString("itemname", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageLagCompensationErrorImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageLagCompensationErrorImpl.cs index dd166f744..bb2a747cc 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageLagCompensationErrorImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageLagCompensationErrorImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageLagCompensationErrorImpl : NetMessage, CUserMessageLagCompensationError { - public CUserMessageLagCompensationErrorImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public float Distance - { get => Accessor.GetFloat("distance"); set => Accessor.SetFloat("distance", value); } + public CUserMessageLagCompensationErrorImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public float Distance + { get => Accessor.GetFloat("distance"); set => Accessor.SetFloat("distance", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageRequestDiagnosticImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageRequestDiagnosticImpl.cs index a5710de68..2c5798b15 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageRequestDiagnosticImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageRequestDiagnosticImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageRequestDiagnosticImpl : NetMessage, CUserMessageRequestDiagnostic { - public CUserMessageRequestDiagnosticImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public IProtobufRepeatedFieldSubMessageType Diagnostics - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "diagnostics"); } + public CUserMessageRequestDiagnosticImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public IProtobufRepeatedFieldSubMessageType Diagnostics + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "diagnostics"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageRequestDiagnostic_DiagnosticImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageRequestDiagnostic_DiagnosticImpl.cs index aad1f6b64..2e21cd7f6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageRequestDiagnostic_DiagnosticImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageRequestDiagnostic_DiagnosticImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,60 +8,34 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageRequestDiagnostic_DiagnosticImpl : TypedProtobuf, CUserMessageRequestDiagnostic_Diagnostic { - public CUserMessageRequestDiagnostic_DiagnosticImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Index - { get => Accessor.GetInt32("index"); set => Accessor.SetInt32("index", value); } - - - public long Offset - { get => Accessor.GetInt64("offset"); set => Accessor.SetInt64("offset", value); } - - - public int Param - { get => Accessor.GetInt32("param"); set => Accessor.SetInt32("param", value); } - - - public int Length - { get => Accessor.GetInt32("length"); set => Accessor.SetInt32("length", value); } - - - public int Type - { get => Accessor.GetInt32("type"); set => Accessor.SetInt32("type", value); } - - - public long Base - { get => Accessor.GetInt64("base"); set => Accessor.SetInt64("base", value); } - - - public long Range - { get => Accessor.GetInt64("range"); set => Accessor.SetInt64("range", value); } - - - public long Extent - { get => Accessor.GetInt64("extent"); set => Accessor.SetInt64("extent", value); } - - - public long Detail - { get => Accessor.GetInt64("detail"); set => Accessor.SetInt64("detail", value); } - - - public string Name - { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } - - - public string Alias - { get => Accessor.GetString("alias"); set => Accessor.SetString("alias", value); } - - - public byte[] Vardetail - { get => Accessor.GetBytes("vardetail"); set => Accessor.SetBytes("vardetail", value); } - - - public int Context - { get => Accessor.GetInt32("context"); set => Accessor.SetInt32("context", value); } - -} + public CUserMessageRequestDiagnostic_DiagnosticImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Index + { get => Accessor.GetInt32("index"); set => Accessor.SetInt32("index", value); } + public long Offset + { get => Accessor.GetInt64("offset"); set => Accessor.SetInt64("offset", value); } + public int Param + { get => Accessor.GetInt32("param"); set => Accessor.SetInt32("param", value); } + public int Length + { get => Accessor.GetInt32("length"); set => Accessor.SetInt32("length", value); } + public int Type + { get => Accessor.GetInt32("type"); set => Accessor.SetInt32("type", value); } + public long Base + { get => Accessor.GetInt64("base"); set => Accessor.SetInt64("base", value); } + public long Range + { get => Accessor.GetInt64("range"); set => Accessor.SetInt64("range", value); } + public long Extent + { get => Accessor.GetInt64("extent"); set => Accessor.SetInt64("extent", value); } + public long Detail + { get => Accessor.GetInt64("detail"); set => Accessor.SetInt64("detail", value); } + public string Name + { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } + public string Alias + { get => Accessor.GetString("alias"); set => Accessor.SetString("alias", value); } + public byte[] Vardetail + { get => Accessor.GetBytes("vardetail"); set => Accessor.SetBytes("vardetail", value); } + public int Context + { get => Accessor.GetInt32("context"); set => Accessor.SetInt32("context", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageRequestDllStatusImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageRequestDllStatusImpl.cs index 3d88ecc10..bc276a060 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageRequestDllStatusImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageRequestDllStatusImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageRequestDllStatusImpl : NetMessage, CUserMessageRequestDllStatus { - public CUserMessageRequestDllStatusImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public string DllAction - { get => Accessor.GetString("dll_action"); set => Accessor.SetString("dll_action", value); } - - - public bool FullReport - { get => Accessor.GetBool("full_report"); set => Accessor.SetBool("full_report", value); } - -} + public CUserMessageRequestDllStatusImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public string DllAction + { get => Accessor.GetString("dll_action"); set => Accessor.SetString("dll_action", value); } + public bool FullReport + { get => Accessor.GetBool("full_report"); set => Accessor.SetBool("full_report", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageRequestInventoryImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageRequestInventoryImpl.cs index 6a5d09d31..ac28af9b1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageRequestInventoryImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageRequestInventoryImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageRequestInventoryImpl : NetMessage, CUserMessageRequestInventory { - public CUserMessageRequestInventoryImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Inventory - { get => Accessor.GetInt32("inventory"); set => Accessor.SetInt32("inventory", value); } - - - public int Offset - { get => Accessor.GetInt32("offset"); set => Accessor.SetInt32("offset", value); } - - - public int Options - { get => Accessor.GetInt32("options"); set => Accessor.SetInt32("options", value); } - -} + public CUserMessageRequestInventoryImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Inventory + { get => Accessor.GetInt32("inventory"); set => Accessor.SetInt32("inventory", value); } + public int Offset + { get => Accessor.GetInt32("offset"); set => Accessor.SetInt32("offset", value); } + public int Options + { get => Accessor.GetInt32("options"); set => Accessor.SetInt32("options", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageRequestStateImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageRequestStateImpl.cs index 05ddeca94..eea3cf539 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageRequestStateImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageRequestStateImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,9 +8,8 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageRequestStateImpl : NetMessage, CUserMessageRequestState { - public CUserMessageRequestStateImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - + public CUserMessageRequestStateImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageRequestUtilActionImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageRequestUtilActionImpl.cs index f06661415..a553c067e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageRequestUtilActionImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageRequestUtilActionImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageRequestUtilActionImpl : NetMessage, CUserMessageRequestUtilAction { - public CUserMessageRequestUtilActionImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Util1 - { get => Accessor.GetInt32("util1"); set => Accessor.SetInt32("util1", value); } - - - public int Util2 - { get => Accessor.GetInt32("util2"); set => Accessor.SetInt32("util2", value); } - - - public int Util3 - { get => Accessor.GetInt32("util3"); set => Accessor.SetInt32("util3", value); } - - - public int Util4 - { get => Accessor.GetInt32("util4"); set => Accessor.SetInt32("util4", value); } - - - public int Util5 - { get => Accessor.GetInt32("util5"); set => Accessor.SetInt32("util5", value); } - -} + public CUserMessageRequestUtilActionImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Util1 + { get => Accessor.GetInt32("util1"); set => Accessor.SetInt32("util1", value); } + public int Util2 + { get => Accessor.GetInt32("util2"); set => Accessor.SetInt32("util2", value); } + public int Util3 + { get => Accessor.GetInt32("util3"); set => Accessor.SetInt32("util3", value); } + public int Util4 + { get => Accessor.GetInt32("util4"); set => Accessor.SetInt32("util4", value); } + public int Util5 + { get => Accessor.GetInt32("util5"); set => Accessor.SetInt32("util5", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageResetHUDImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageResetHUDImpl.cs index cb13259f2..b32d02c8a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageResetHUDImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageResetHUDImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,9 +8,8 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageResetHUDImpl : NetMessage, CUserMessageResetHUD { - public CUserMessageResetHUDImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - + public CUserMessageResetHUDImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageRumbleImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageRumbleImpl.cs index 4e24b4e1d..c48fcd88d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageRumbleImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageRumbleImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageRumbleImpl : NetMessage, CUserMessageRumble { - public CUserMessageRumbleImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Index - { get => Accessor.GetInt32("index"); set => Accessor.SetInt32("index", value); } - - - public int Data - { get => Accessor.GetInt32("data"); set => Accessor.SetInt32("data", value); } - - - public int Flags - { get => Accessor.GetInt32("flags"); set => Accessor.SetInt32("flags", value); } - -} + public CUserMessageRumbleImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Index + { get => Accessor.GetInt32("index"); set => Accessor.SetInt32("index", value); } + public int Data + { get => Accessor.GetInt32("data"); set => Accessor.SetInt32("data", value); } + public int Flags + { get => Accessor.GetInt32("flags"); set => Accessor.SetInt32("flags", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageSayText2Impl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageSayText2Impl.cs index f58a4ace4..b089187db 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageSayText2Impl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageSayText2Impl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,36 +8,22 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageSayText2Impl : NetMessage, CUserMessageSayText2 { - public CUserMessageSayText2Impl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Entityindex - { get => Accessor.GetInt32("entityindex"); set => Accessor.SetInt32("entityindex", value); } - - - public bool Chat - { get => Accessor.GetBool("chat"); set => Accessor.SetBool("chat", value); } - - - public string Messagename - { get => Accessor.GetString("messagename"); set => Accessor.SetString("messagename", value); } - - - public string Param1 - { get => Accessor.GetString("param1"); set => Accessor.SetString("param1", value); } - - - public string Param2 - { get => Accessor.GetString("param2"); set => Accessor.SetString("param2", value); } - - - public string Param3 - { get => Accessor.GetString("param3"); set => Accessor.SetString("param3", value); } - - - public string Param4 - { get => Accessor.GetString("param4"); set => Accessor.SetString("param4", value); } - -} + public CUserMessageSayText2Impl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Entityindex + { get => Accessor.GetInt32("entityindex"); set => Accessor.SetInt32("entityindex", value); } + public bool Chat + { get => Accessor.GetBool("chat"); set => Accessor.SetBool("chat", value); } + public string Messagename + { get => Accessor.GetString("messagename"); set => Accessor.SetString("messagename", value); } + public string Param1 + { get => Accessor.GetString("param1"); set => Accessor.SetString("param1", value); } + public string Param2 + { get => Accessor.GetString("param2"); set => Accessor.SetString("param2", value); } + public string Param3 + { get => Accessor.GetString("param3"); set => Accessor.SetString("param3", value); } + public string Param4 + { get => Accessor.GetString("param4"); set => Accessor.SetString("param4", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageSayTextChannelImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageSayTextChannelImpl.cs index 2a868d833..ab5172723 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageSayTextChannelImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageSayTextChannelImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageSayTextChannelImpl : NetMessage, CUserMessageSayTextChannel { - public CUserMessageSayTextChannelImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Player - { get => Accessor.GetInt32("player"); set => Accessor.SetInt32("player", value); } - - - public int Channel - { get => Accessor.GetInt32("channel"); set => Accessor.SetInt32("channel", value); } - - - public string Text - { get => Accessor.GetString("text"); set => Accessor.SetString("text", value); } - -} + public CUserMessageSayTextChannelImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Player + { get => Accessor.GetInt32("player"); set => Accessor.SetInt32("player", value); } + public int Channel + { get => Accessor.GetInt32("channel"); set => Accessor.SetInt32("channel", value); } + public string Text + { get => Accessor.GetString("text"); set => Accessor.SetString("text", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageSayTextImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageSayTextImpl.cs index 9b7601638..dda64e257 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageSayTextImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageSayTextImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageSayTextImpl : NetMessage, CUserMessageSayText { - public CUserMessageSayTextImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Playerindex - { get => Accessor.GetInt32("playerindex"); set => Accessor.SetInt32("playerindex", value); } - - - public string Text - { get => Accessor.GetString("text"); set => Accessor.SetString("text", value); } - - - public bool Chat - { get => Accessor.GetBool("chat"); set => Accessor.SetBool("chat", value); } - -} + public CUserMessageSayTextImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Playerindex + { get => Accessor.GetInt32("playerindex"); set => Accessor.SetInt32("playerindex", value); } + public string Text + { get => Accessor.GetString("text"); set => Accessor.SetString("text", value); } + public bool Chat + { get => Accessor.GetBool("chat"); set => Accessor.SetBool("chat", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageScreenTiltImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageScreenTiltImpl.cs index 1a9846dbe..2525bf378 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageScreenTiltImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageScreenTiltImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageScreenTiltImpl : NetMessage, CUserMessageScreenTilt { - public CUserMessageScreenTiltImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint Command - { get => Accessor.GetUInt32("command"); set => Accessor.SetUInt32("command", value); } - - - public bool EaseInOut - { get => Accessor.GetBool("ease_in_out"); set => Accessor.SetBool("ease_in_out", value); } - - - public Vector Angle - { get => Accessor.GetVector("angle"); set => Accessor.SetVector("angle", value); } - - - public float Duration - { get => Accessor.GetFloat("duration"); set => Accessor.SetFloat("duration", value); } - - - public float Time - { get => Accessor.GetFloat("time"); set => Accessor.SetFloat("time", value); } - -} + public CUserMessageScreenTiltImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public uint Command + { get => Accessor.GetUInt32("command"); set => Accessor.SetUInt32("command", value); } + public bool EaseInOut + { get => Accessor.GetBool("ease_in_out"); set => Accessor.SetBool("ease_in_out", value); } + public Vector Angle + { get => Accessor.GetVector("angle"); set => Accessor.SetVector("angle", value); } + public float Duration + { get => Accessor.GetFloat("duration"); set => Accessor.SetFloat("duration", value); } + public float Time + { get => Accessor.GetFloat("time"); set => Accessor.SetFloat("time", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageSendAudioImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageSendAudioImpl.cs index 9fd248471..a5fe8b975 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageSendAudioImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageSendAudioImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageSendAudioImpl : NetMessage, CUserMessageSendAudio { - public CUserMessageSendAudioImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public string Soundname - { get => Accessor.GetString("soundname"); set => Accessor.SetString("soundname", value); } - - - public bool Stop - { get => Accessor.GetBool("stop"); set => Accessor.SetBool("stop", value); } - -} + public CUserMessageSendAudioImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public string Soundname + { get => Accessor.GetString("soundname"); set => Accessor.SetString("soundname", value); } + public bool Stop + { get => Accessor.GetBool("stop"); set => Accessor.SetBool("stop", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageServerFrameTimeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageServerFrameTimeImpl.cs index 1a391fe93..2f1180dbd 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageServerFrameTimeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageServerFrameTimeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageServerFrameTimeImpl : NetMessage, CUserMessageServerFrameTime { - public CUserMessageServerFrameTimeImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public float FrameTime - { get => Accessor.GetFloat("frame_time"); set => Accessor.SetFloat("frame_time", value); } + public CUserMessageServerFrameTimeImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } -} + public float FrameTime + { get => Accessor.GetFloat("frame_time"); set => Accessor.SetFloat("frame_time", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageShakeDirImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageShakeDirImpl.cs index 4a793cb83..6e506c095 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageShakeDirImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageShakeDirImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageShakeDirImpl : NetMessage, CUserMessageShakeDir { - public CUserMessageShakeDirImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public CUserMessageShake Shake - { get => new CUserMessageShakeImpl(NativeNetMessages.GetNestedMessage(Address, "shake"), false); } - - - public Vector Direction - { get => Accessor.GetVector("direction"); set => Accessor.SetVector("direction", value); } - -} + public CUserMessageShakeDirImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public CUserMessageShake Shake + { get => new CUserMessageShakeImpl(NativeNetMessages.GetNestedMessage(Address, "shake"), false); } + public Vector Direction + { get => Accessor.GetVector("direction"); set => Accessor.SetVector("direction", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageShakeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageShakeImpl.cs index eb188e089..eb9cfdf6a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageShakeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageShakeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageShakeImpl : NetMessage, CUserMessageShake { - public CUserMessageShakeImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint Command - { get => Accessor.GetUInt32("command"); set => Accessor.SetUInt32("command", value); } - - - public float Amplitude - { get => Accessor.GetFloat("amplitude"); set => Accessor.SetFloat("amplitude", value); } - - - public float Frequency - { get => Accessor.GetFloat("frequency"); set => Accessor.SetFloat("frequency", value); } - - - public float Duration - { get => Accessor.GetFloat("duration"); set => Accessor.SetFloat("duration", value); } - -} + public CUserMessageShakeImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public uint Command + { get => Accessor.GetUInt32("command"); set => Accessor.SetUInt32("command", value); } + public float Amplitude + { get => Accessor.GetFloat("amplitude"); set => Accessor.SetFloat("amplitude", value); } + public float Frequency + { get => Accessor.GetFloat("frequency"); set => Accessor.SetFloat("frequency", value); } + public float Duration + { get => Accessor.GetFloat("duration"); set => Accessor.SetFloat("duration", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageShowMenuImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageShowMenuImpl.cs index fcb6a3e04..2d37b83ac 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageShowMenuImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageShowMenuImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageShowMenuImpl : NetMessage, CUserMessageShowMenu { - public CUserMessageShowMenuImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint Validslots - { get => Accessor.GetUInt32("validslots"); set => Accessor.SetUInt32("validslots", value); } - - - public uint Displaytime - { get => Accessor.GetUInt32("displaytime"); set => Accessor.SetUInt32("displaytime", value); } - - - public bool Needmore - { get => Accessor.GetBool("needmore"); set => Accessor.SetBool("needmore", value); } - - - public string Menustring - { get => Accessor.GetString("menustring"); set => Accessor.SetString("menustring", value); } - -} + public CUserMessageShowMenuImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public uint Validslots + { get => Accessor.GetUInt32("validslots"); set => Accessor.SetUInt32("validslots", value); } + public uint Displaytime + { get => Accessor.GetUInt32("displaytime"); set => Accessor.SetUInt32("displaytime", value); } + public bool Needmore + { get => Accessor.GetBool("needmore"); set => Accessor.SetBool("needmore", value); } + public string Menustring + { get => Accessor.GetString("menustring"); set => Accessor.SetString("menustring", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageTextMsgImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageTextMsgImpl.cs index 124504534..664603474 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageTextMsgImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageTextMsgImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageTextMsgImpl : NetMessage, CUserMessageTextMsg { - public CUserMessageTextMsgImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint Dest - { get => Accessor.GetUInt32("dest"); set => Accessor.SetUInt32("dest", value); } - - - public IProtobufRepeatedFieldValueType Param - { get => new ProtobufRepeatedFieldValueType(Accessor, "param"); } - -} + public CUserMessageTextMsgImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public uint Dest + { get => Accessor.GetUInt32("dest"); set => Accessor.SetUInt32("dest", value); } + public IProtobufRepeatedFieldValueType Param + { get => new ProtobufRepeatedFieldValueType(Accessor, "param"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageUpdateCssClassesImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageUpdateCssClassesImpl.cs index 9c47b317f..42913e70a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageUpdateCssClassesImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageUpdateCssClassesImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageUpdateCssClassesImpl : NetMessage, CUserMessageUpdateCssClasses { - public CUserMessageUpdateCssClassesImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int TargetWorldPanel - { get => Accessor.GetInt32("target_world_panel"); set => Accessor.SetInt32("target_world_panel", value); } - - - public string CssClasses - { get => Accessor.GetString("css_classes"); set => Accessor.SetString("css_classes", value); } - - - public bool IsAdd - { get => Accessor.GetBool("is_add"); set => Accessor.SetBool("is_add", value); } - -} + public CUserMessageUpdateCssClassesImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int TargetWorldPanel + { get => Accessor.GetInt32("target_world_panel"); set => Accessor.SetInt32("target_world_panel", value); } + public string CssClasses + { get => Accessor.GetString("css_classes"); set => Accessor.SetString("css_classes", value); } + public bool IsAdd + { get => Accessor.GetBool("is_add"); set => Accessor.SetBool("is_add", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageVoiceMaskImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageVoiceMaskImpl.cs index 4333000ba..5a1e94ce5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageVoiceMaskImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageVoiceMaskImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageVoiceMaskImpl : NetMessage, CUserMessageVoiceMask { - public CUserMessageVoiceMaskImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public IProtobufRepeatedFieldValueType GamerulesMasks - { get => new ProtobufRepeatedFieldValueType(Accessor, "gamerules_masks"); } - - - public IProtobufRepeatedFieldValueType BanMasks - { get => new ProtobufRepeatedFieldValueType(Accessor, "ban_masks"); } - - - public bool ModEnable - { get => Accessor.GetBool("mod_enable"); set => Accessor.SetBool("mod_enable", value); } - -} + public CUserMessageVoiceMaskImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public IProtobufRepeatedFieldValueType GamerulesMasks + { get => new ProtobufRepeatedFieldValueType(Accessor, "gamerules_masks"); } + public IProtobufRepeatedFieldValueType BanMasks + { get => new ProtobufRepeatedFieldValueType(Accessor, "ban_masks"); } + public bool ModEnable + { get => Accessor.GetBool("mod_enable"); set => Accessor.SetBool("mod_enable", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageWaterShakeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageWaterShakeImpl.cs index a99870afd..919fccae2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageWaterShakeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessageWaterShakeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessageWaterShakeImpl : NetMessage, CUserMessageWaterShake { - public CUserMessageWaterShakeImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public uint Command - { get => Accessor.GetUInt32("command"); set => Accessor.SetUInt32("command", value); } - - - public float Amplitude - { get => Accessor.GetFloat("amplitude"); set => Accessor.SetFloat("amplitude", value); } - - - public float Frequency - { get => Accessor.GetFloat("frequency"); set => Accessor.SetFloat("frequency", value); } - - - public float Duration - { get => Accessor.GetFloat("duration"); set => Accessor.SetFloat("duration", value); } - -} + public CUserMessageWaterShakeImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public uint Command + { get => Accessor.GetUInt32("command"); set => Accessor.SetUInt32("command", value); } + public float Amplitude + { get => Accessor.GetFloat("amplitude"); set => Accessor.SetFloat("amplitude", value); } + public float Frequency + { get => Accessor.GetFloat("frequency"); set => Accessor.SetFloat("frequency", value); } + public float Duration + { get => Accessor.GetFloat("duration"); set => Accessor.SetFloat("duration", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_Diagnostic_ResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_Diagnostic_ResponseImpl.cs index b83c01849..73beb03c9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_Diagnostic_ResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_Diagnostic_ResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,32 +8,20 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessage_Diagnostic_ResponseImpl : TypedProtobuf, CUserMessage_Diagnostic_Response { - public CUserMessage_Diagnostic_ResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldSubMessageType Diagnostics - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "diagnostics"); } - - - public int BuildVersion - { get => Accessor.GetInt32("build_version"); set => Accessor.SetInt32("build_version", value); } - - - public int Instance - { get => Accessor.GetInt32("instance"); set => Accessor.SetInt32("instance", value); } - - - public long StartTime - { get => Accessor.GetInt64("start_time"); set => Accessor.SetInt64("start_time", value); } - - - public int Osversion - { get => Accessor.GetInt32("osversion"); set => Accessor.SetInt32("osversion", value); } - - - public int Platform - { get => Accessor.GetInt32("platform"); set => Accessor.SetInt32("platform", value); } - -} + public CUserMessage_Diagnostic_ResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public IProtobufRepeatedFieldSubMessageType Diagnostics + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "diagnostics"); } + public int BuildVersion + { get => Accessor.GetInt32("build_version"); set => Accessor.SetInt32("build_version", value); } + public int Instance + { get => Accessor.GetInt32("instance"); set => Accessor.SetInt32("instance", value); } + public long StartTime + { get => Accessor.GetInt64("start_time"); set => Accessor.SetInt64("start_time", value); } + public int Osversion + { get => Accessor.GetInt32("osversion"); set => Accessor.SetInt32("osversion", value); } + public int Platform + { get => Accessor.GetInt32("platform"); set => Accessor.SetInt32("platform", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_Diagnostic_Response_DiagnosticImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_Diagnostic_Response_DiagnosticImpl.cs index 44f5b48f0..fad6a0497 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_Diagnostic_Response_DiagnosticImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_Diagnostic_Response_DiagnosticImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,68 +8,38 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessage_Diagnostic_Response_DiagnosticImpl : TypedProtobuf, CUserMessage_Diagnostic_Response_Diagnostic { - public CUserMessage_Diagnostic_Response_DiagnosticImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Index - { get => Accessor.GetInt32("index"); set => Accessor.SetInt32("index", value); } - - - public long Offset - { get => Accessor.GetInt64("offset"); set => Accessor.SetInt64("offset", value); } - - - public int Param - { get => Accessor.GetInt32("param"); set => Accessor.SetInt32("param", value); } - - - public int Length - { get => Accessor.GetInt32("length"); set => Accessor.SetInt32("length", value); } - - - public byte[] Detail - { get => Accessor.GetBytes("detail"); set => Accessor.SetBytes("detail", value); } - - - public long Base - { get => Accessor.GetInt64("base"); set => Accessor.SetInt64("base", value); } - - - public long Range - { get => Accessor.GetInt64("range"); set => Accessor.SetInt64("range", value); } - - - public int Type - { get => Accessor.GetInt32("type"); set => Accessor.SetInt32("type", value); } - - - public string Name - { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } - - - public string Alias - { get => Accessor.GetString("alias"); set => Accessor.SetString("alias", value); } - - - public byte[] Backup - { get => Accessor.GetBytes("backup"); set => Accessor.SetBytes("backup", value); } - - - public int Context - { get => Accessor.GetInt32("context"); set => Accessor.SetInt32("context", value); } - - - public long Control - { get => Accessor.GetInt64("control"); set => Accessor.SetInt64("control", value); } - - - public long Augment - { get => Accessor.GetInt64("augment"); set => Accessor.SetInt64("augment", value); } - - - public long Placebo - { get => Accessor.GetInt64("placebo"); set => Accessor.SetInt64("placebo", value); } - -} + public CUserMessage_Diagnostic_Response_DiagnosticImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Index + { get => Accessor.GetInt32("index"); set => Accessor.SetInt32("index", value); } + public long Offset + { get => Accessor.GetInt64("offset"); set => Accessor.SetInt64("offset", value); } + public int Param + { get => Accessor.GetInt32("param"); set => Accessor.SetInt32("param", value); } + public int Length + { get => Accessor.GetInt32("length"); set => Accessor.SetInt32("length", value); } + public byte[] Detail + { get => Accessor.GetBytes("detail"); set => Accessor.SetBytes("detail", value); } + public long Base + { get => Accessor.GetInt64("base"); set => Accessor.SetInt64("base", value); } + public long Range + { get => Accessor.GetInt64("range"); set => Accessor.SetInt64("range", value); } + public int Type + { get => Accessor.GetInt32("type"); set => Accessor.SetInt32("type", value); } + public string Name + { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } + public string Alias + { get => Accessor.GetString("alias"); set => Accessor.SetString("alias", value); } + public byte[] Backup + { get => Accessor.GetBytes("backup"); set => Accessor.SetBytes("backup", value); } + public int Context + { get => Accessor.GetInt32("context"); set => Accessor.SetInt32("context", value); } + public long Control + { get => Accessor.GetInt64("control"); set => Accessor.SetInt64("control", value); } + public long Augment + { get => Accessor.GetInt64("augment"); set => Accessor.SetInt64("augment", value); } + public long Placebo + { get => Accessor.GetInt64("placebo"); set => Accessor.SetInt64("placebo", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_DllStatusImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_DllStatusImpl.cs index b20a79b03..e43859c6e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_DllStatusImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_DllStatusImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,40 +8,24 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessage_DllStatusImpl : TypedProtobuf, CUserMessage_DllStatus { - public CUserMessage_DllStatusImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string FileReport - { get => Accessor.GetString("file_report"); set => Accessor.SetString("file_report", value); } - - - public string CommandLine - { get => Accessor.GetString("command_line"); set => Accessor.SetString("command_line", value); } - - - public uint TotalFiles - { get => Accessor.GetUInt32("total_files"); set => Accessor.SetUInt32("total_files", value); } - - - public uint ProcessId - { get => Accessor.GetUInt32("process_id"); set => Accessor.SetUInt32("process_id", value); } - - - public int Osversion - { get => Accessor.GetInt32("osversion"); set => Accessor.SetInt32("osversion", value); } - - - public ulong ClientTime - { get => Accessor.GetUInt64("client_time"); set => Accessor.SetUInt64("client_time", value); } - - - public IProtobufRepeatedFieldSubMessageType Diagnostics - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "diagnostics"); } - - - public IProtobufRepeatedFieldSubMessageType Modules - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "modules"); } - -} + public CUserMessage_DllStatusImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string FileReport + { get => Accessor.GetString("file_report"); set => Accessor.SetString("file_report", value); } + public string CommandLine + { get => Accessor.GetString("command_line"); set => Accessor.SetString("command_line", value); } + public uint TotalFiles + { get => Accessor.GetUInt32("total_files"); set => Accessor.SetUInt32("total_files", value); } + public uint ProcessId + { get => Accessor.GetUInt32("process_id"); set => Accessor.SetUInt32("process_id", value); } + public int Osversion + { get => Accessor.GetInt32("osversion"); set => Accessor.SetInt32("osversion", value); } + public ulong ClientTime + { get => Accessor.GetUInt64("client_time"); set => Accessor.SetUInt64("client_time", value); } + public IProtobufRepeatedFieldSubMessageType Diagnostics + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "diagnostics"); } + public IProtobufRepeatedFieldSubMessageType Modules + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "modules"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_DllStatus_CModuleImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_DllStatus_CModuleImpl.cs index a3c8e8a21..743383e7b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_DllStatus_CModuleImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_DllStatus_CModuleImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessage_DllStatus_CModuleImpl : TypedProtobuf, CUserMessage_DllStatus_CModule { - public CUserMessage_DllStatus_CModuleImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong BaseAddr - { get => Accessor.GetUInt64("base_addr"); set => Accessor.SetUInt64("base_addr", value); } - - - public string Name - { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } - - - public uint Size - { get => Accessor.GetUInt32("size"); set => Accessor.SetUInt32("size", value); } - - - public uint Timestamp - { get => Accessor.GetUInt32("timestamp"); set => Accessor.SetUInt32("timestamp", value); } - -} + public CUserMessage_DllStatus_CModuleImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong BaseAddr + { get => Accessor.GetUInt64("base_addr"); set => Accessor.SetUInt64("base_addr", value); } + public string Name + { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } + public uint Size + { get => Accessor.GetUInt32("size"); set => Accessor.SetUInt32("size", value); } + public uint Timestamp + { get => Accessor.GetUInt32("timestamp"); set => Accessor.SetUInt32("timestamp", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_DllStatus_CVDiagnosticImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_DllStatus_CVDiagnosticImpl.cs index 589a2b91d..2b49865a5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_DllStatus_CVDiagnosticImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_DllStatus_CVDiagnosticImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessage_DllStatus_CVDiagnosticImpl : TypedProtobuf, CUserMessage_DllStatus_CVDiagnostic { - public CUserMessage_DllStatus_CVDiagnosticImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Id - { get => Accessor.GetUInt32("id"); set => Accessor.SetUInt32("id", value); } - - - public uint Extended - { get => Accessor.GetUInt32("extended"); set => Accessor.SetUInt32("extended", value); } - - - public ulong Value - { get => Accessor.GetUInt64("value"); set => Accessor.SetUInt64("value", value); } - - - public string StringValue - { get => Accessor.GetString("string_value"); set => Accessor.SetString("string_value", value); } - -} + public CUserMessage_DllStatus_CVDiagnosticImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Id + { get => Accessor.GetUInt32("id"); set => Accessor.SetUInt32("id", value); } + public uint Extended + { get => Accessor.GetUInt32("extended"); set => Accessor.SetUInt32("extended", value); } + public ulong Value + { get => Accessor.GetUInt64("value"); set => Accessor.SetUInt64("value", value); } + public string StringValue + { get => Accessor.GetString("string_value"); set => Accessor.SetString("string_value", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_ExtraUserDataImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_ExtraUserDataImpl.cs index c27ad3072..1a5affa46 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_ExtraUserDataImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_ExtraUserDataImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessage_ExtraUserDataImpl : NetMessage, CUserMessage_ExtraUserData { - public CUserMessage_ExtraUserDataImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int Item - { get => Accessor.GetInt32("item"); set => Accessor.SetInt32("item", value); } - - - public long Value1 - { get => Accessor.GetInt64("value1"); set => Accessor.SetInt64("value1", value); } - - - public long Value2 - { get => Accessor.GetInt64("value2"); set => Accessor.SetInt64("value2", value); } - - - public IProtobufRepeatedFieldValueType Detail1 - { get => new ProtobufRepeatedFieldValueType(Accessor, "detail1"); } - - - public IProtobufRepeatedFieldValueType Detail2 - { get => new ProtobufRepeatedFieldValueType(Accessor, "detail2"); } - -} + public CUserMessage_ExtraUserDataImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int Item + { get => Accessor.GetInt32("item"); set => Accessor.SetInt32("item", value); } + public long Value1 + { get => Accessor.GetInt64("value1"); set => Accessor.SetInt64("value1", value); } + public long Value2 + { get => Accessor.GetInt64("value2"); set => Accessor.SetInt64("value2", value); } + public IProtobufRepeatedFieldValueType Detail1 + { get => new ProtobufRepeatedFieldValueType(Accessor, "detail1"); } + public IProtobufRepeatedFieldValueType Detail2 + { get => new ProtobufRepeatedFieldValueType(Accessor, "detail2"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_Inventory_ResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_Inventory_ResponseImpl.cs index 905bf0b3c..df0ada345 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_Inventory_ResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_Inventory_ResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,60 +8,34 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessage_Inventory_ResponseImpl : TypedProtobuf, CUserMessage_Inventory_Response { - public CUserMessage_Inventory_ResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Crc - { get => Accessor.GetUInt32("crc"); set => Accessor.SetUInt32("crc", value); } - - - public int ItemCount - { get => Accessor.GetInt32("item_count"); set => Accessor.SetInt32("item_count", value); } - - - public int Osversion - { get => Accessor.GetInt32("osversion"); set => Accessor.SetInt32("osversion", value); } - - - public int PerfTime - { get => Accessor.GetInt32("perf_time"); set => Accessor.SetInt32("perf_time", value); } - - - public int ClientTimestamp - { get => Accessor.GetInt32("client_timestamp"); set => Accessor.SetInt32("client_timestamp", value); } - - - public int Platform - { get => Accessor.GetInt32("platform"); set => Accessor.SetInt32("platform", value); } - - - public IProtobufRepeatedFieldSubMessageType Inventories - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "inventories"); } - - - public IProtobufRepeatedFieldSubMessageType Inventories2 - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "inventories2"); } - - - public IProtobufRepeatedFieldSubMessageType Inventories3 - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "inventories3"); } - - - public int InvType - { get => Accessor.GetInt32("inv_type"); set => Accessor.SetInt32("inv_type", value); } - - - public int BuildVersion - { get => Accessor.GetInt32("build_version"); set => Accessor.SetInt32("build_version", value); } - - - public int Instance - { get => Accessor.GetInt32("instance"); set => Accessor.SetInt32("instance", value); } - - - public long StartTime - { get => Accessor.GetInt64("start_time"); set => Accessor.SetInt64("start_time", value); } - -} + public CUserMessage_Inventory_ResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Crc + { get => Accessor.GetUInt32("crc"); set => Accessor.SetUInt32("crc", value); } + public int ItemCount + { get => Accessor.GetInt32("item_count"); set => Accessor.SetInt32("item_count", value); } + public int Osversion + { get => Accessor.GetInt32("osversion"); set => Accessor.SetInt32("osversion", value); } + public int PerfTime + { get => Accessor.GetInt32("perf_time"); set => Accessor.SetInt32("perf_time", value); } + public int ClientTimestamp + { get => Accessor.GetInt32("client_timestamp"); set => Accessor.SetInt32("client_timestamp", value); } + public int Platform + { get => Accessor.GetInt32("platform"); set => Accessor.SetInt32("platform", value); } + public IProtobufRepeatedFieldSubMessageType Inventories + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "inventories"); } + public IProtobufRepeatedFieldSubMessageType Inventories2 + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "inventories2"); } + public IProtobufRepeatedFieldSubMessageType Inventories3 + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "inventories3"); } + public int InvType + { get => Accessor.GetInt32("inv_type"); set => Accessor.SetInt32("inv_type", value); } + public int BuildVersion + { get => Accessor.GetInt32("build_version"); set => Accessor.SetInt32("build_version", value); } + public int Instance + { get => Accessor.GetInt32("instance"); set => Accessor.SetInt32("instance", value); } + public long StartTime + { get => Accessor.GetInt64("start_time"); set => Accessor.SetInt64("start_time", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_Inventory_Response_InventoryDetailImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_Inventory_Response_InventoryDetailImpl.cs index 8eb343ea9..0b39a5a29 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_Inventory_Response_InventoryDetailImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_Inventory_Response_InventoryDetailImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,48 +8,28 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessage_Inventory_Response_InventoryDetailImpl : TypedProtobuf, CUserMessage_Inventory_Response_InventoryDetail { - public CUserMessage_Inventory_Response_InventoryDetailImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Index - { get => Accessor.GetInt32("index"); set => Accessor.SetInt32("index", value); } - - - public long Primary - { get => Accessor.GetInt64("primary"); set => Accessor.SetInt64("primary", value); } - - - public long Offset - { get => Accessor.GetInt64("offset"); set => Accessor.SetInt64("offset", value); } - - - public long First - { get => Accessor.GetInt64("first"); set => Accessor.SetInt64("first", value); } - - - public long Base - { get => Accessor.GetInt64("base"); set => Accessor.SetInt64("base", value); } - - - public string Name - { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } - - - public string BaseName - { get => Accessor.GetString("base_name"); set => Accessor.SetString("base_name", value); } - - - public int BaseDetail - { get => Accessor.GetInt32("base_detail"); set => Accessor.SetInt32("base_detail", value); } - - - public int BaseTime - { get => Accessor.GetInt32("base_time"); set => Accessor.SetInt32("base_time", value); } - - - public int BaseHash - { get => Accessor.GetInt32("base_hash"); set => Accessor.SetInt32("base_hash", value); } - -} + public CUserMessage_Inventory_Response_InventoryDetailImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Index + { get => Accessor.GetInt32("index"); set => Accessor.SetInt32("index", value); } + public long Primary + { get => Accessor.GetInt64("primary"); set => Accessor.SetInt64("primary", value); } + public long Offset + { get => Accessor.GetInt64("offset"); set => Accessor.SetInt64("offset", value); } + public long First + { get => Accessor.GetInt64("first"); set => Accessor.SetInt64("first", value); } + public long Base + { get => Accessor.GetInt64("base"); set => Accessor.SetInt64("base", value); } + public string Name + { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } + public string BaseName + { get => Accessor.GetString("base_name"); set => Accessor.SetString("base_name", value); } + public int BaseDetail + { get => Accessor.GetInt32("base_detail"); set => Accessor.SetInt32("base_detail", value); } + public int BaseTime + { get => Accessor.GetInt32("base_time"); set => Accessor.SetInt32("base_time", value); } + public int BaseHash + { get => Accessor.GetInt32("base_hash"); set => Accessor.SetInt32("base_hash", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_NotifyResponseFoundImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_NotifyResponseFoundImpl.cs index 9a639d23e..5a0e60542 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_NotifyResponseFoundImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_NotifyResponseFoundImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,56 +8,32 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessage_NotifyResponseFoundImpl : NetMessage, CUserMessage_NotifyResponseFound { - public CUserMessage_NotifyResponseFoundImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int EntIndex - { get => Accessor.GetInt32("ent_index"); set => Accessor.SetInt32("ent_index", value); } - - - public string RuleName - { get => Accessor.GetString("rule_name"); set => Accessor.SetString("rule_name", value); } - - - public string ResponseValue - { get => Accessor.GetString("response_value"); set => Accessor.SetString("response_value", value); } - - - public string ResponseConcept - { get => Accessor.GetString("response_concept"); set => Accessor.SetString("response_concept", value); } - - - public IProtobufRepeatedFieldSubMessageType Criteria - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "criteria"); } - - - public IProtobufRepeatedFieldValueType IntCriteriaNames - { get => new ProtobufRepeatedFieldValueType(Accessor, "int_criteria_names"); } - - - public IProtobufRepeatedFieldValueType IntCriteriaValues - { get => new ProtobufRepeatedFieldValueType(Accessor, "int_criteria_values"); } - - - public IProtobufRepeatedFieldValueType FloatCriteriaNames - { get => new ProtobufRepeatedFieldValueType(Accessor, "float_criteria_names"); } - - - public IProtobufRepeatedFieldValueType FloatCriteriaValues - { get => new ProtobufRepeatedFieldValueType(Accessor, "float_criteria_values"); } - - - public IProtobufRepeatedFieldValueType SymbolCriteriaNames - { get => new ProtobufRepeatedFieldValueType(Accessor, "symbol_criteria_names"); } - - - public IProtobufRepeatedFieldValueType SymbolCriteriaValues - { get => new ProtobufRepeatedFieldValueType(Accessor, "symbol_criteria_values"); } - - - public int SpeakResult - { get => Accessor.GetInt32("speak_result"); set => Accessor.SetInt32("speak_result", value); } - -} + public CUserMessage_NotifyResponseFoundImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int EntIndex + { get => Accessor.GetInt32("ent_index"); set => Accessor.SetInt32("ent_index", value); } + public string RuleName + { get => Accessor.GetString("rule_name"); set => Accessor.SetString("rule_name", value); } + public string ResponseValue + { get => Accessor.GetString("response_value"); set => Accessor.SetString("response_value", value); } + public string ResponseConcept + { get => Accessor.GetString("response_concept"); set => Accessor.SetString("response_concept", value); } + public IProtobufRepeatedFieldSubMessageType Criteria + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "criteria"); } + public IProtobufRepeatedFieldValueType IntCriteriaNames + { get => new ProtobufRepeatedFieldValueType(Accessor, "int_criteria_names"); } + public IProtobufRepeatedFieldValueType IntCriteriaValues + { get => new ProtobufRepeatedFieldValueType(Accessor, "int_criteria_values"); } + public IProtobufRepeatedFieldValueType FloatCriteriaNames + { get => new ProtobufRepeatedFieldValueType(Accessor, "float_criteria_names"); } + public IProtobufRepeatedFieldValueType FloatCriteriaValues + { get => new ProtobufRepeatedFieldValueType(Accessor, "float_criteria_values"); } + public IProtobufRepeatedFieldValueType SymbolCriteriaNames + { get => new ProtobufRepeatedFieldValueType(Accessor, "symbol_criteria_names"); } + public IProtobufRepeatedFieldValueType SymbolCriteriaValues + { get => new ProtobufRepeatedFieldValueType(Accessor, "symbol_criteria_values"); } + public int SpeakResult + { get => Accessor.GetInt32("speak_result"); set => Accessor.SetInt32("speak_result", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_NotifyResponseFound_CriteriaImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_NotifyResponseFound_CriteriaImpl.cs index c42c1fb8d..37dbbab38 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_NotifyResponseFound_CriteriaImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_NotifyResponseFound_CriteriaImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessage_NotifyResponseFound_CriteriaImpl : TypedProtobuf, CUserMessage_NotifyResponseFound_Criteria { - public CUserMessage_NotifyResponseFound_CriteriaImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint NameSymbol - { get => Accessor.GetUInt32("name_symbol"); set => Accessor.SetUInt32("name_symbol", value); } - - - public string Value - { get => Accessor.GetString("value"); set => Accessor.SetString("value", value); } - -} + public CUserMessage_NotifyResponseFound_CriteriaImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint NameSymbol + { get => Accessor.GetUInt32("name_symbol"); set => Accessor.SetUInt32("name_symbol", value); } + public string Value + { get => Accessor.GetString("value"); set => Accessor.SetString("value", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_PlayResponseConditionalImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_PlayResponseConditionalImpl.cs index ebbeacaab..9a173f7bc 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_PlayResponseConditionalImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_PlayResponseConditionalImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,32 +8,20 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessage_PlayResponseConditionalImpl : NetMessage, CUserMessage_PlayResponseConditional { - public CUserMessage_PlayResponseConditionalImpl(nint handle, bool isManuallyAllocated): base(handle, isManuallyAllocated) - { - } - - - public int EntIndex - { get => Accessor.GetInt32("ent_index"); set => Accessor.SetInt32("ent_index", value); } - - - public IProtobufRepeatedFieldValueType PlayerSlots - { get => new ProtobufRepeatedFieldValueType(Accessor, "player_slots"); } - - - public string Response - { get => Accessor.GetString("response"); set => Accessor.SetString("response", value); } - - - public Vector EntOrigin - { get => Accessor.GetVector("ent_origin"); set => Accessor.SetVector("ent_origin", value); } - - - public float PreDelay - { get => Accessor.GetFloat("pre_delay"); set => Accessor.SetFloat("pre_delay", value); } - - - public int MixPriority - { get => Accessor.GetInt32("mix_priority"); set => Accessor.SetInt32("mix_priority", value); } - -} + public CUserMessage_PlayResponseConditionalImpl(nint handle, bool isManuallyAllocated) : base(handle, isManuallyAllocated) + { + } + + public int EntIndex + { get => Accessor.GetInt32("ent_index"); set => Accessor.SetInt32("ent_index", value); } + public IProtobufRepeatedFieldValueType PlayerSlots + { get => new ProtobufRepeatedFieldValueType(Accessor, "player_slots"); } + public string Response + { get => Accessor.GetString("response"); set => Accessor.SetString("response", value); } + public Vector EntOrigin + { get => Accessor.GetVector("ent_origin"); set => Accessor.SetVector("ent_origin", value); } + public float PreDelay + { get => Accessor.GetFloat("pre_delay"); set => Accessor.SetFloat("pre_delay", value); } + public int MixPriority + { get => Accessor.GetInt32("mix_priority"); set => Accessor.SetInt32("mix_priority", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_UtilMsg_ResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_UtilMsg_ResponseImpl.cs index f3b5c822f..afc581121 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_UtilMsg_ResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_UtilMsg_ResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,56 +8,32 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessage_UtilMsg_ResponseImpl : TypedProtobuf, CUserMessage_UtilMsg_Response { - public CUserMessage_UtilMsg_ResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Crc - { get => Accessor.GetUInt32("crc"); set => Accessor.SetUInt32("crc", value); } - - - public int ItemCount - { get => Accessor.GetInt32("item_count"); set => Accessor.SetInt32("item_count", value); } - - - public uint Crc2 - { get => Accessor.GetUInt32("crc2"); set => Accessor.SetUInt32("crc2", value); } - - - public int ItemCount2 - { get => Accessor.GetInt32("item_count2"); set => Accessor.SetInt32("item_count2", value); } - - - public IProtobufRepeatedFieldValueType CrcPart - { get => new ProtobufRepeatedFieldValueType(Accessor, "crc_part"); } - - - public IProtobufRepeatedFieldValueType CrcPart2 - { get => new ProtobufRepeatedFieldValueType(Accessor, "crc_part2"); } - - - public int ClientTimestamp - { get => Accessor.GetInt32("client_timestamp"); set => Accessor.SetInt32("client_timestamp", value); } - - - public int Platform - { get => Accessor.GetInt32("platform"); set => Accessor.SetInt32("platform", value); } - - - public IProtobufRepeatedFieldSubMessageType Itemdetails - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "itemdetails"); } - - - public int Itemgroup - { get => Accessor.GetInt32("itemgroup"); set => Accessor.SetInt32("itemgroup", value); } - - - public int TotalCount - { get => Accessor.GetInt32("total_count"); set => Accessor.SetInt32("total_count", value); } - - - public int TotalCount2 - { get => Accessor.GetInt32("total_count2"); set => Accessor.SetInt32("total_count2", value); } - -} + public CUserMessage_UtilMsg_ResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Crc + { get => Accessor.GetUInt32("crc"); set => Accessor.SetUInt32("crc", value); } + public int ItemCount + { get => Accessor.GetInt32("item_count"); set => Accessor.SetInt32("item_count", value); } + public uint Crc2 + { get => Accessor.GetUInt32("crc2"); set => Accessor.SetUInt32("crc2", value); } + public int ItemCount2 + { get => Accessor.GetInt32("item_count2"); set => Accessor.SetInt32("item_count2", value); } + public IProtobufRepeatedFieldValueType CrcPart + { get => new ProtobufRepeatedFieldValueType(Accessor, "crc_part"); } + public IProtobufRepeatedFieldValueType CrcPart2 + { get => new ProtobufRepeatedFieldValueType(Accessor, "crc_part2"); } + public int ClientTimestamp + { get => Accessor.GetInt32("client_timestamp"); set => Accessor.SetInt32("client_timestamp", value); } + public int Platform + { get => Accessor.GetInt32("platform"); set => Accessor.SetInt32("platform", value); } + public IProtobufRepeatedFieldSubMessageType Itemdetails + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "itemdetails"); } + public int Itemgroup + { get => Accessor.GetInt32("itemgroup"); set => Accessor.SetInt32("itemgroup", value); } + public int TotalCount + { get => Accessor.GetInt32("total_count"); set => Accessor.SetInt32("total_count", value); } + public int TotalCount2 + { get => Accessor.GetInt32("total_count2"); set => Accessor.SetInt32("total_count2", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_UtilMsg_Response_ItemDetailImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_UtilMsg_Response_ItemDetailImpl.cs index 18bbe5ad7..fa48f7d28 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_UtilMsg_Response_ItemDetailImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMessage_UtilMsg_Response_ItemDetailImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMessage_UtilMsg_Response_ItemDetailImpl : TypedProtobuf, CUserMessage_UtilMsg_Response_ItemDetail { - public CUserMessage_UtilMsg_Response_ItemDetailImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Index - { get => Accessor.GetInt32("index"); set => Accessor.SetInt32("index", value); } - - - public int Hash - { get => Accessor.GetInt32("hash"); set => Accessor.SetInt32("hash", value); } - - - public int Crc - { get => Accessor.GetInt32("crc"); set => Accessor.SetInt32("crc", value); } - - - public string Name - { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } - -} + public CUserMessage_UtilMsg_Response_ItemDetailImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Index + { get => Accessor.GetInt32("index"); set => Accessor.SetInt32("index", value); } + public int Hash + { get => Accessor.GetInt32("hash"); set => Accessor.SetInt32("hash", value); } + public int Crc + { get => Accessor.GetInt32("crc"); set => Accessor.SetInt32("crc", value); } + public string Name + { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_CustomGameEventImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_CustomGameEventImpl.cs index 0d88d00a3..07dd16628 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_CustomGameEventImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_CustomGameEventImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_CustomGameEventImpl : TypedProtobuf, CUserMsg_CustomGameEvent { - public CUserMsg_CustomGameEventImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string EventName - { get => Accessor.GetString("event_name"); set => Accessor.SetString("event_name", value); } - - - public byte[] Data - { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } - -} + public CUserMsg_CustomGameEventImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string EventName + { get => Accessor.GetString("event_name"); set => Accessor.SetString("event_name", value); } + public byte[] Data + { get => Accessor.GetBytes("data"); set => Accessor.SetBytes("data", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_HudErrorImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_HudErrorImpl.cs index 3dde78578..734486f28 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_HudErrorImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_HudErrorImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_HudErrorImpl : TypedProtobuf, CUserMsg_HudError { - public CUserMsg_HudErrorImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int OrderId - { get => Accessor.GetInt32("order_id"); set => Accessor.SetInt32("order_id", value); } + public CUserMsg_HudErrorImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public int OrderId + { get => Accessor.GetInt32("order_id"); set => Accessor.SetInt32("order_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManagerImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManagerImpl.cs index 136996b38..4027ff0be 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManagerImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManagerImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,172 +8,90 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManagerImpl : TypedProtobuf, CUserMsg_ParticleManager { - public CUserMsg_ParticleManagerImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public PARTICLE_MESSAGE Type - { get => (PARTICLE_MESSAGE)Accessor.GetInt32("type"); set => Accessor.SetInt32("type", (int)value); } - - - public uint Index - { get => Accessor.GetUInt32("index"); set => Accessor.SetUInt32("index", value); } - - - public CUserMsg_ParticleManager_ReleaseParticleIndex ReleaseParticleIndex - { get => new CUserMsg_ParticleManager_ReleaseParticleIndexImpl(NativeNetMessages.GetNestedMessage(Address, "release_particle_index"), false); } - - - public CUserMsg_ParticleManager_CreateParticle CreateParticle - { get => new CUserMsg_ParticleManager_CreateParticleImpl(NativeNetMessages.GetNestedMessage(Address, "create_particle"), false); } - - - public CUserMsg_ParticleManager_DestroyParticle DestroyParticle - { get => new CUserMsg_ParticleManager_DestroyParticleImpl(NativeNetMessages.GetNestedMessage(Address, "destroy_particle"), false); } - - - public CUserMsg_ParticleManager_DestroyParticleInvolving DestroyParticleInvolving - { get => new CUserMsg_ParticleManager_DestroyParticleInvolvingImpl(NativeNetMessages.GetNestedMessage(Address, "destroy_particle_involving"), false); } - - - public CUserMsg_ParticleManager_UpdateParticle_OBSOLETE UpdateParticle - { get => new CUserMsg_ParticleManager_UpdateParticle_OBSOLETEImpl(NativeNetMessages.GetNestedMessage(Address, "update_particle"), false); } - - - public CUserMsg_ParticleManager_UpdateParticleFwd_OBSOLETE UpdateParticleFwd - { get => new CUserMsg_ParticleManager_UpdateParticleFwd_OBSOLETEImpl(NativeNetMessages.GetNestedMessage(Address, "update_particle_fwd"), false); } - - - public CUserMsg_ParticleManager_UpdateParticleOrient_OBSOLETE UpdateParticleOrient - { get => new CUserMsg_ParticleManager_UpdateParticleOrient_OBSOLETEImpl(NativeNetMessages.GetNestedMessage(Address, "update_particle_orient"), false); } - - - public CUserMsg_ParticleManager_UpdateParticleFallback UpdateParticleFallback - { get => new CUserMsg_ParticleManager_UpdateParticleFallbackImpl(NativeNetMessages.GetNestedMessage(Address, "update_particle_fallback"), false); } - - - public CUserMsg_ParticleManager_UpdateParticleOffset UpdateParticleOffset - { get => new CUserMsg_ParticleManager_UpdateParticleOffsetImpl(NativeNetMessages.GetNestedMessage(Address, "update_particle_offset"), false); } - - - public CUserMsg_ParticleManager_UpdateParticleEnt UpdateParticleEnt - { get => new CUserMsg_ParticleManager_UpdateParticleEntImpl(NativeNetMessages.GetNestedMessage(Address, "update_particle_ent"), false); } - - - public CUserMsg_ParticleManager_UpdateParticleShouldDraw UpdateParticleShouldDraw - { get => new CUserMsg_ParticleManager_UpdateParticleShouldDrawImpl(NativeNetMessages.GetNestedMessage(Address, "update_particle_should_draw"), false); } - - - public CUserMsg_ParticleManager_UpdateParticleSetFrozen UpdateParticleSetFrozen - { get => new CUserMsg_ParticleManager_UpdateParticleSetFrozenImpl(NativeNetMessages.GetNestedMessage(Address, "update_particle_set_frozen"), false); } - - - public CUserMsg_ParticleManager_ChangeControlPointAttachment ChangeControlPointAttachment - { get => new CUserMsg_ParticleManager_ChangeControlPointAttachmentImpl(NativeNetMessages.GetNestedMessage(Address, "change_control_point_attachment"), false); } - - - public CUserMsg_ParticleManager_UpdateEntityPosition UpdateEntityPosition - { get => new CUserMsg_ParticleManager_UpdateEntityPositionImpl(NativeNetMessages.GetNestedMessage(Address, "update_entity_position"), false); } - - - public CUserMsg_ParticleManager_SetParticleFoWProperties SetParticleFowProperties - { get => new CUserMsg_ParticleManager_SetParticleFoWPropertiesImpl(NativeNetMessages.GetNestedMessage(Address, "set_particle_fow_properties"), false); } - - - public CUserMsg_ParticleManager_SetParticleText SetParticleText - { get => new CUserMsg_ParticleManager_SetParticleTextImpl(NativeNetMessages.GetNestedMessage(Address, "set_particle_text"), false); } - - - public CUserMsg_ParticleManager_SetParticleShouldCheckFoW SetParticleShouldCheckFow - { get => new CUserMsg_ParticleManager_SetParticleShouldCheckFoWImpl(NativeNetMessages.GetNestedMessage(Address, "set_particle_should_check_fow"), false); } - - - public CUserMsg_ParticleManager_SetControlPointModel SetControlPointModel - { get => new CUserMsg_ParticleManager_SetControlPointModelImpl(NativeNetMessages.GetNestedMessage(Address, "set_control_point_model"), false); } - - - public CUserMsg_ParticleManager_SetControlPointSnapshot SetControlPointSnapshot - { get => new CUserMsg_ParticleManager_SetControlPointSnapshotImpl(NativeNetMessages.GetNestedMessage(Address, "set_control_point_snapshot"), false); } - - - public CUserMsg_ParticleManager_SetTextureAttribute SetTextureAttribute - { get => new CUserMsg_ParticleManager_SetTextureAttributeImpl(NativeNetMessages.GetNestedMessage(Address, "set_texture_attribute"), false); } - - - public CUserMsg_ParticleManager_SetSceneObjectGenericFlag SetSceneObjectGenericFlag - { get => new CUserMsg_ParticleManager_SetSceneObjectGenericFlagImpl(NativeNetMessages.GetNestedMessage(Address, "set_scene_object_generic_flag"), false); } - - - public CUserMsg_ParticleManager_SetSceneObjectTintAndDesat SetSceneObjectTintAndDesat - { get => new CUserMsg_ParticleManager_SetSceneObjectTintAndDesatImpl(NativeNetMessages.GetNestedMessage(Address, "set_scene_object_tint_and_desat"), false); } - - - public CUserMsg_ParticleManager_DestroyParticleNamed DestroyParticleNamed - { get => new CUserMsg_ParticleManager_DestroyParticleNamedImpl(NativeNetMessages.GetNestedMessage(Address, "destroy_particle_named"), false); } - - - public CUserMsg_ParticleManager_ParticleSkipToTime ParticleSkipToTime - { get => new CUserMsg_ParticleManager_ParticleSkipToTimeImpl(NativeNetMessages.GetNestedMessage(Address, "particle_skip_to_time"), false); } - - - public CUserMsg_ParticleManager_ParticleCanFreeze ParticleCanFreeze - { get => new CUserMsg_ParticleManager_ParticleCanFreezeImpl(NativeNetMessages.GetNestedMessage(Address, "particle_can_freeze"), false); } - - - public CUserMsg_ParticleManager_SetParticleNamedValueContext SetNamedValueContext - { get => new CUserMsg_ParticleManager_SetParticleNamedValueContextImpl(NativeNetMessages.GetNestedMessage(Address, "set_named_value_context"), false); } - - - public CUserMsg_ParticleManager_UpdateParticleTransform UpdateParticleTransform - { get => new CUserMsg_ParticleManager_UpdateParticleTransformImpl(NativeNetMessages.GetNestedMessage(Address, "update_particle_transform"), false); } - - - public CUserMsg_ParticleManager_ParticleFreezeTransitionOverride ParticleFreezeTransitionOverride - { get => new CUserMsg_ParticleManager_ParticleFreezeTransitionOverrideImpl(NativeNetMessages.GetNestedMessage(Address, "particle_freeze_transition_override"), false); } - - - public CUserMsg_ParticleManager_FreezeParticleInvolving FreezeParticleInvolving - { get => new CUserMsg_ParticleManager_FreezeParticleInvolvingImpl(NativeNetMessages.GetNestedMessage(Address, "freeze_particle_involving"), false); } - - - public CUserMsg_ParticleManager_AddModellistOverrideElement AddModellistOverrideElement - { get => new CUserMsg_ParticleManager_AddModellistOverrideElementImpl(NativeNetMessages.GetNestedMessage(Address, "add_modellist_override_element"), false); } - - - public CUserMsg_ParticleManager_ClearModellistOverride ClearModellistOverride - { get => new CUserMsg_ParticleManager_ClearModellistOverrideImpl(NativeNetMessages.GetNestedMessage(Address, "clear_modellist_override"), false); } - - - public CUserMsg_ParticleManager_CreatePhysicsSim CreatePhysicsSim - { get => new CUserMsg_ParticleManager_CreatePhysicsSimImpl(NativeNetMessages.GetNestedMessage(Address, "create_physics_sim"), false); } - - - public CUserMsg_ParticleManager_DestroyPhysicsSim DestroyPhysicsSim - { get => new CUserMsg_ParticleManager_DestroyPhysicsSimImpl(NativeNetMessages.GetNestedMessage(Address, "destroy_physics_sim"), false); } - - - public CUserMsg_ParticleManager_SetVData SetVdata - { get => new CUserMsg_ParticleManager_SetVDataImpl(NativeNetMessages.GetNestedMessage(Address, "set_vdata"), false); } - - - public CUserMsg_ParticleManager_SetMaterialOverride SetMaterialOverride - { get => new CUserMsg_ParticleManager_SetMaterialOverrideImpl(NativeNetMessages.GetNestedMessage(Address, "set_material_override"), false); } - - - public CUserMsg_ParticleManager_AddFan AddFan - { get => new CUserMsg_ParticleManager_AddFanImpl(NativeNetMessages.GetNestedMessage(Address, "add_fan"), false); } - - - public CUserMsg_ParticleManager_UpdateFan UpdateFan - { get => new CUserMsg_ParticleManager_UpdateFanImpl(NativeNetMessages.GetNestedMessage(Address, "update_fan"), false); } - - - public CUserMsg_ParticleManager_SetParticleClusterGrowth SetParticleClusterGrowth - { get => new CUserMsg_ParticleManager_SetParticleClusterGrowthImpl(NativeNetMessages.GetNestedMessage(Address, "set_particle_cluster_growth"), false); } - - - public CUserMsg_ParticleManager_RemoveFan RemoveFan - { get => new CUserMsg_ParticleManager_RemoveFanImpl(NativeNetMessages.GetNestedMessage(Address, "remove_fan"), false); } - -} + public CUserMsg_ParticleManagerImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public PARTICLE_MESSAGE Type + { get => (PARTICLE_MESSAGE)Accessor.GetInt32("type"); set => Accessor.SetInt32("type", (int)value); } + public uint Index + { get => Accessor.GetUInt32("index"); set => Accessor.SetUInt32("index", value); } + public CUserMsg_ParticleManager_ReleaseParticleIndex ReleaseParticleIndex + { get => new CUserMsg_ParticleManager_ReleaseParticleIndexImpl(NativeNetMessages.GetNestedMessage(Address, "release_particle_index"), false); } + public CUserMsg_ParticleManager_CreateParticle CreateParticle + { get => new CUserMsg_ParticleManager_CreateParticleImpl(NativeNetMessages.GetNestedMessage(Address, "create_particle"), false); } + public CUserMsg_ParticleManager_DestroyParticle DestroyParticle + { get => new CUserMsg_ParticleManager_DestroyParticleImpl(NativeNetMessages.GetNestedMessage(Address, "destroy_particle"), false); } + public CUserMsg_ParticleManager_DestroyParticleInvolving DestroyParticleInvolving + { get => new CUserMsg_ParticleManager_DestroyParticleInvolvingImpl(NativeNetMessages.GetNestedMessage(Address, "destroy_particle_involving"), false); } + public CUserMsg_ParticleManager_UpdateParticle_OBSOLETE UpdateParticle + { get => new CUserMsg_ParticleManager_UpdateParticle_OBSOLETEImpl(NativeNetMessages.GetNestedMessage(Address, "update_particle"), false); } + public CUserMsg_ParticleManager_UpdateParticleFwd_OBSOLETE UpdateParticleFwd + { get => new CUserMsg_ParticleManager_UpdateParticleFwd_OBSOLETEImpl(NativeNetMessages.GetNestedMessage(Address, "update_particle_fwd"), false); } + public CUserMsg_ParticleManager_UpdateParticleOrient_OBSOLETE UpdateParticleOrient + { get => new CUserMsg_ParticleManager_UpdateParticleOrient_OBSOLETEImpl(NativeNetMessages.GetNestedMessage(Address, "update_particle_orient"), false); } + public CUserMsg_ParticleManager_UpdateParticleFallback UpdateParticleFallback + { get => new CUserMsg_ParticleManager_UpdateParticleFallbackImpl(NativeNetMessages.GetNestedMessage(Address, "update_particle_fallback"), false); } + public CUserMsg_ParticleManager_UpdateParticleOffset UpdateParticleOffset + { get => new CUserMsg_ParticleManager_UpdateParticleOffsetImpl(NativeNetMessages.GetNestedMessage(Address, "update_particle_offset"), false); } + public CUserMsg_ParticleManager_UpdateParticleEnt UpdateParticleEnt + { get => new CUserMsg_ParticleManager_UpdateParticleEntImpl(NativeNetMessages.GetNestedMessage(Address, "update_particle_ent"), false); } + public CUserMsg_ParticleManager_UpdateParticleShouldDraw UpdateParticleShouldDraw + { get => new CUserMsg_ParticleManager_UpdateParticleShouldDrawImpl(NativeNetMessages.GetNestedMessage(Address, "update_particle_should_draw"), false); } + public CUserMsg_ParticleManager_UpdateParticleSetFrozen UpdateParticleSetFrozen + { get => new CUserMsg_ParticleManager_UpdateParticleSetFrozenImpl(NativeNetMessages.GetNestedMessage(Address, "update_particle_set_frozen"), false); } + public CUserMsg_ParticleManager_ChangeControlPointAttachment ChangeControlPointAttachment + { get => new CUserMsg_ParticleManager_ChangeControlPointAttachmentImpl(NativeNetMessages.GetNestedMessage(Address, "change_control_point_attachment"), false); } + public CUserMsg_ParticleManager_UpdateEntityPosition UpdateEntityPosition + { get => new CUserMsg_ParticleManager_UpdateEntityPositionImpl(NativeNetMessages.GetNestedMessage(Address, "update_entity_position"), false); } + public CUserMsg_ParticleManager_SetParticleFoWProperties SetParticleFowProperties + { get => new CUserMsg_ParticleManager_SetParticleFoWPropertiesImpl(NativeNetMessages.GetNestedMessage(Address, "set_particle_fow_properties"), false); } + public CUserMsg_ParticleManager_SetParticleText SetParticleText + { get => new CUserMsg_ParticleManager_SetParticleTextImpl(NativeNetMessages.GetNestedMessage(Address, "set_particle_text"), false); } + public CUserMsg_ParticleManager_SetParticleShouldCheckFoW SetParticleShouldCheckFow + { get => new CUserMsg_ParticleManager_SetParticleShouldCheckFoWImpl(NativeNetMessages.GetNestedMessage(Address, "set_particle_should_check_fow"), false); } + public CUserMsg_ParticleManager_SetControlPointModel SetControlPointModel + { get => new CUserMsg_ParticleManager_SetControlPointModelImpl(NativeNetMessages.GetNestedMessage(Address, "set_control_point_model"), false); } + public CUserMsg_ParticleManager_SetControlPointSnapshot SetControlPointSnapshot + { get => new CUserMsg_ParticleManager_SetControlPointSnapshotImpl(NativeNetMessages.GetNestedMessage(Address, "set_control_point_snapshot"), false); } + public CUserMsg_ParticleManager_SetTextureAttribute SetTextureAttribute + { get => new CUserMsg_ParticleManager_SetTextureAttributeImpl(NativeNetMessages.GetNestedMessage(Address, "set_texture_attribute"), false); } + public CUserMsg_ParticleManager_SetSceneObjectGenericFlag SetSceneObjectGenericFlag + { get => new CUserMsg_ParticleManager_SetSceneObjectGenericFlagImpl(NativeNetMessages.GetNestedMessage(Address, "set_scene_object_generic_flag"), false); } + public CUserMsg_ParticleManager_SetSceneObjectTintAndDesat SetSceneObjectTintAndDesat + { get => new CUserMsg_ParticleManager_SetSceneObjectTintAndDesatImpl(NativeNetMessages.GetNestedMessage(Address, "set_scene_object_tint_and_desat"), false); } + public CUserMsg_ParticleManager_DestroyParticleNamed DestroyParticleNamed + { get => new CUserMsg_ParticleManager_DestroyParticleNamedImpl(NativeNetMessages.GetNestedMessage(Address, "destroy_particle_named"), false); } + public CUserMsg_ParticleManager_ParticleSkipToTime ParticleSkipToTime + { get => new CUserMsg_ParticleManager_ParticleSkipToTimeImpl(NativeNetMessages.GetNestedMessage(Address, "particle_skip_to_time"), false); } + public CUserMsg_ParticleManager_ParticleCanFreeze ParticleCanFreeze + { get => new CUserMsg_ParticleManager_ParticleCanFreezeImpl(NativeNetMessages.GetNestedMessage(Address, "particle_can_freeze"), false); } + public CUserMsg_ParticleManager_SetParticleNamedValueContext SetNamedValueContext + { get => new CUserMsg_ParticleManager_SetParticleNamedValueContextImpl(NativeNetMessages.GetNestedMessage(Address, "set_named_value_context"), false); } + public CUserMsg_ParticleManager_UpdateParticleTransform UpdateParticleTransform + { get => new CUserMsg_ParticleManager_UpdateParticleTransformImpl(NativeNetMessages.GetNestedMessage(Address, "update_particle_transform"), false); } + public CUserMsg_ParticleManager_ParticleFreezeTransitionOverride ParticleFreezeTransitionOverride + { get => new CUserMsg_ParticleManager_ParticleFreezeTransitionOverrideImpl(NativeNetMessages.GetNestedMessage(Address, "particle_freeze_transition_override"), false); } + public CUserMsg_ParticleManager_FreezeParticleInvolving FreezeParticleInvolving + { get => new CUserMsg_ParticleManager_FreezeParticleInvolvingImpl(NativeNetMessages.GetNestedMessage(Address, "freeze_particle_involving"), false); } + public CUserMsg_ParticleManager_AddModellistOverrideElement AddModellistOverrideElement + { get => new CUserMsg_ParticleManager_AddModellistOverrideElementImpl(NativeNetMessages.GetNestedMessage(Address, "add_modellist_override_element"), false); } + public CUserMsg_ParticleManager_ClearModellistOverride ClearModellistOverride + { get => new CUserMsg_ParticleManager_ClearModellistOverrideImpl(NativeNetMessages.GetNestedMessage(Address, "clear_modellist_override"), false); } + public CUserMsg_ParticleManager_CreatePhysicsSim CreatePhysicsSim + { get => new CUserMsg_ParticleManager_CreatePhysicsSimImpl(NativeNetMessages.GetNestedMessage(Address, "create_physics_sim"), false); } + public CUserMsg_ParticleManager_DestroyPhysicsSim DestroyPhysicsSim + { get => new CUserMsg_ParticleManager_DestroyPhysicsSimImpl(NativeNetMessages.GetNestedMessage(Address, "destroy_physics_sim"), false); } + public CUserMsg_ParticleManager_SetVData SetVdata + { get => new CUserMsg_ParticleManager_SetVDataImpl(NativeNetMessages.GetNestedMessage(Address, "set_vdata"), false); } + public CUserMsg_ParticleManager_SetMaterialOverride SetMaterialOverride + { get => new CUserMsg_ParticleManager_SetMaterialOverrideImpl(NativeNetMessages.GetNestedMessage(Address, "set_material_override"), false); } + public CUserMsg_ParticleManager_AddFan AddFan + { get => new CUserMsg_ParticleManager_AddFanImpl(NativeNetMessages.GetNestedMessage(Address, "add_fan"), false); } + public CUserMsg_ParticleManager_UpdateFan UpdateFan + { get => new CUserMsg_ParticleManager_UpdateFanImpl(NativeNetMessages.GetNestedMessage(Address, "update_fan"), false); } + public CUserMsg_ParticleManager_SetParticleClusterGrowth SetParticleClusterGrowth + { get => new CUserMsg_ParticleManager_SetParticleClusterGrowthImpl(NativeNetMessages.GetNestedMessage(Address, "set_particle_cluster_growth"), false); } + public CUserMsg_ParticleManager_RemoveFan RemoveFan + { get => new CUserMsg_ParticleManager_RemoveFanImpl(NativeNetMessages.GetNestedMessage(Address, "remove_fan"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_AddFanImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_AddFanImpl.cs index 47c34cfc0..d71bab3a9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_AddFanImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_AddFanImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,80 +8,44 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_AddFanImpl : TypedProtobuf, CUserMsg_ParticleManager_AddFan { - public CUserMsg_ParticleManager_AddFanImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public bool Active - { get => Accessor.GetBool("active"); set => Accessor.SetBool("active", value); } - - - public Vector BoundsMins - { get => Accessor.GetVector("bounds_mins"); set => Accessor.SetVector("bounds_mins", value); } - - - public Vector BoundsMaxs - { get => Accessor.GetVector("bounds_maxs"); set => Accessor.SetVector("bounds_maxs", value); } - - - public Vector FanOrigin - { get => Accessor.GetVector("fan_origin"); set => Accessor.SetVector("fan_origin", value); } - - - public Vector FanOriginOffset - { get => Accessor.GetVector("fan_origin_offset"); set => Accessor.SetVector("fan_origin_offset", value); } - - - public Vector FanDirection - { get => Accessor.GetVector("fan_direction"); set => Accessor.SetVector("fan_direction", value); } - - - public float Force - { get => Accessor.GetFloat("force"); set => Accessor.SetFloat("force", value); } - - - public string FanForceCurve - { get => Accessor.GetString("fan_force_curve"); set => Accessor.SetString("fan_force_curve", value); } - - - public bool Falloff - { get => Accessor.GetBool("falloff"); set => Accessor.SetBool("falloff", value); } - - - public bool PullTowardsPoint - { get => Accessor.GetBool("pull_towards_point"); set => Accessor.SetBool("pull_towards_point", value); } - - - public float CurveMinDist - { get => Accessor.GetFloat("curve_min_dist"); set => Accessor.SetFloat("curve_min_dist", value); } - - - public float CurveMaxDist - { get => Accessor.GetFloat("curve_max_dist"); set => Accessor.SetFloat("curve_max_dist", value); } - - - public uint FanType - { get => Accessor.GetUInt32("fan_type"); set => Accessor.SetUInt32("fan_type", value); } - - - public float ConeStartRadius - { get => Accessor.GetFloat("cone_start_radius"); set => Accessor.SetFloat("cone_start_radius", value); } - - - public float ConeEndRadius - { get => Accessor.GetFloat("cone_end_radius"); set => Accessor.SetFloat("cone_end_radius", value); } - - - public float ConeLength - { get => Accessor.GetFloat("cone_length"); set => Accessor.SetFloat("cone_length", value); } - - - public uint EntityHandle - { get => Accessor.GetUInt32("entity_handle"); set => Accessor.SetUInt32("entity_handle", value); } - - - public string AttachmentName - { get => Accessor.GetString("attachment_name"); set => Accessor.SetString("attachment_name", value); } - -} + public CUserMsg_ParticleManager_AddFanImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public bool Active + { get => Accessor.GetBool("active"); set => Accessor.SetBool("active", value); } + public Vector BoundsMins + { get => Accessor.GetVector("bounds_mins"); set => Accessor.SetVector("bounds_mins", value); } + public Vector BoundsMaxs + { get => Accessor.GetVector("bounds_maxs"); set => Accessor.SetVector("bounds_maxs", value); } + public Vector FanOrigin + { get => Accessor.GetVector("fan_origin"); set => Accessor.SetVector("fan_origin", value); } + public Vector FanOriginOffset + { get => Accessor.GetVector("fan_origin_offset"); set => Accessor.SetVector("fan_origin_offset", value); } + public Vector FanDirection + { get => Accessor.GetVector("fan_direction"); set => Accessor.SetVector("fan_direction", value); } + public float Force + { get => Accessor.GetFloat("force"); set => Accessor.SetFloat("force", value); } + public string FanForceCurve + { get => Accessor.GetString("fan_force_curve"); set => Accessor.SetString("fan_force_curve", value); } + public bool Falloff + { get => Accessor.GetBool("falloff"); set => Accessor.SetBool("falloff", value); } + public bool PullTowardsPoint + { get => Accessor.GetBool("pull_towards_point"); set => Accessor.SetBool("pull_towards_point", value); } + public float CurveMinDist + { get => Accessor.GetFloat("curve_min_dist"); set => Accessor.SetFloat("curve_min_dist", value); } + public float CurveMaxDist + { get => Accessor.GetFloat("curve_max_dist"); set => Accessor.SetFloat("curve_max_dist", value); } + public uint FanType + { get => Accessor.GetUInt32("fan_type"); set => Accessor.SetUInt32("fan_type", value); } + public float ConeStartRadius + { get => Accessor.GetFloat("cone_start_radius"); set => Accessor.SetFloat("cone_start_radius", value); } + public float ConeEndRadius + { get => Accessor.GetFloat("cone_end_radius"); set => Accessor.SetFloat("cone_end_radius", value); } + public float ConeLength + { get => Accessor.GetFloat("cone_length"); set => Accessor.SetFloat("cone_length", value); } + public uint EntityHandle + { get => Accessor.GetUInt32("entity_handle"); set => Accessor.SetUInt32("entity_handle", value); } + public string AttachmentName + { get => Accessor.GetString("attachment_name"); set => Accessor.SetString("attachment_name", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_AddModellistOverrideElementImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_AddModellistOverrideElementImpl.cs index a9b7fe9ce..74f049175 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_AddModellistOverrideElementImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_AddModellistOverrideElementImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_AddModellistOverrideElementImpl : TypedProtobuf, CUserMsg_ParticleManager_AddModellistOverrideElement { - public CUserMsg_ParticleManager_AddModellistOverrideElementImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string ModelName - { get => Accessor.GetString("model_name"); set => Accessor.SetString("model_name", value); } - - - public float SpawnProbability - { get => Accessor.GetFloat("spawn_probability"); set => Accessor.SetFloat("spawn_probability", value); } - - - public uint Groupid - { get => Accessor.GetUInt32("groupid"); set => Accessor.SetUInt32("groupid", value); } - -} + public CUserMsg_ParticleManager_AddModellistOverrideElementImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string ModelName + { get => Accessor.GetString("model_name"); set => Accessor.SetString("model_name", value); } + public float SpawnProbability + { get => Accessor.GetFloat("spawn_probability"); set => Accessor.SetFloat("spawn_probability", value); } + public uint Groupid + { get => Accessor.GetUInt32("groupid"); set => Accessor.SetUInt32("groupid", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_ChangeControlPointAttachmentImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_ChangeControlPointAttachmentImpl.cs index b46299a7d..396fd9e0b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_ChangeControlPointAttachmentImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_ChangeControlPointAttachmentImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_ChangeControlPointAttachmentImpl : TypedProtobuf, CUserMsg_ParticleManager_ChangeControlPointAttachment { - public CUserMsg_ParticleManager_ChangeControlPointAttachmentImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int AttachmentOld - { get => Accessor.GetInt32("attachment_old"); set => Accessor.SetInt32("attachment_old", value); } - - - public int AttachmentNew - { get => Accessor.GetInt32("attachment_new"); set => Accessor.SetInt32("attachment_new", value); } - - - public uint EntityHandle - { get => Accessor.GetUInt32("entity_handle"); set => Accessor.SetUInt32("entity_handle", value); } - -} + public CUserMsg_ParticleManager_ChangeControlPointAttachmentImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int AttachmentOld + { get => Accessor.GetInt32("attachment_old"); set => Accessor.SetInt32("attachment_old", value); } + public int AttachmentNew + { get => Accessor.GetInt32("attachment_new"); set => Accessor.SetInt32("attachment_new", value); } + public uint EntityHandle + { get => Accessor.GetUInt32("entity_handle"); set => Accessor.SetUInt32("entity_handle", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_ClearModellistOverrideImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_ClearModellistOverrideImpl.cs index a13549672..e533ab901 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_ClearModellistOverrideImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_ClearModellistOverrideImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_ClearModellistOverrideImpl : TypedProtobuf, CUserMsg_ParticleManager_ClearModellistOverride { - public CUserMsg_ParticleManager_ClearModellistOverrideImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Groupid - { get => Accessor.GetUInt32("groupid"); set => Accessor.SetUInt32("groupid", value); } + public CUserMsg_ParticleManager_ClearModellistOverrideImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public uint Groupid + { get => Accessor.GetUInt32("groupid"); set => Accessor.SetUInt32("groupid", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_CreateParticleImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_CreateParticleImpl.cs index 727d25717..c2c87b514 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_CreateParticleImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_CreateParticleImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,48 +8,28 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_CreateParticleImpl : TypedProtobuf, CUserMsg_ParticleManager_CreateParticle { - public CUserMsg_ParticleManager_CreateParticleImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong ParticleNameIndex - { get => Accessor.GetUInt64("particle_name_index"); set => Accessor.SetUInt64("particle_name_index", value); } - - - public int AttachType - { get => Accessor.GetInt32("attach_type"); set => Accessor.SetInt32("attach_type", value); } - - - public uint EntityHandle - { get => Accessor.GetUInt32("entity_handle"); set => Accessor.SetUInt32("entity_handle", value); } - - - public uint EntityHandleForModifiers - { get => Accessor.GetUInt32("entity_handle_for_modifiers"); set => Accessor.SetUInt32("entity_handle_for_modifiers", value); } - - - public bool ApplyVoiceBanRules - { get => Accessor.GetBool("apply_voice_ban_rules"); set => Accessor.SetBool("apply_voice_ban_rules", value); } - - - public int TeamBehavior - { get => Accessor.GetInt32("team_behavior"); set => Accessor.SetInt32("team_behavior", value); } - - - public string ControlPointConfiguration - { get => Accessor.GetString("control_point_configuration"); set => Accessor.SetString("control_point_configuration", value); } - - - public bool Cluster - { get => Accessor.GetBool("cluster"); set => Accessor.SetBool("cluster", value); } - - - public float EndcapTime - { get => Accessor.GetFloat("endcap_time"); set => Accessor.SetFloat("endcap_time", value); } - - - public Vector AggregationPosition - { get => Accessor.GetVector("aggregation_position"); set => Accessor.SetVector("aggregation_position", value); } - -} + public CUserMsg_ParticleManager_CreateParticleImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong ParticleNameIndex + { get => Accessor.GetUInt64("particle_name_index"); set => Accessor.SetUInt64("particle_name_index", value); } + public int AttachType + { get => Accessor.GetInt32("attach_type"); set => Accessor.SetInt32("attach_type", value); } + public uint EntityHandle + { get => Accessor.GetUInt32("entity_handle"); set => Accessor.SetUInt32("entity_handle", value); } + public uint EntityHandleForModifiers + { get => Accessor.GetUInt32("entity_handle_for_modifiers"); set => Accessor.SetUInt32("entity_handle_for_modifiers", value); } + public bool ApplyVoiceBanRules + { get => Accessor.GetBool("apply_voice_ban_rules"); set => Accessor.SetBool("apply_voice_ban_rules", value); } + public int TeamBehavior + { get => Accessor.GetInt32("team_behavior"); set => Accessor.SetInt32("team_behavior", value); } + public string ControlPointConfiguration + { get => Accessor.GetString("control_point_configuration"); set => Accessor.SetString("control_point_configuration", value); } + public bool Cluster + { get => Accessor.GetBool("cluster"); set => Accessor.SetBool("cluster", value); } + public float EndcapTime + { get => Accessor.GetFloat("endcap_time"); set => Accessor.SetFloat("endcap_time", value); } + public Vector AggregationPosition + { get => Accessor.GetVector("aggregation_position"); set => Accessor.SetVector("aggregation_position", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_CreatePhysicsSimImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_CreatePhysicsSimImpl.cs index 1c49c3244..9dbe54cf3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_CreatePhysicsSimImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_CreatePhysicsSimImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_CreatePhysicsSimImpl : TypedProtobuf, CUserMsg_ParticleManager_CreatePhysicsSim { - public CUserMsg_ParticleManager_CreatePhysicsSimImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string PropGroupName - { get => Accessor.GetString("prop_group_name"); set => Accessor.SetString("prop_group_name", value); } - - - public bool UseHighQualitySimulation - { get => Accessor.GetBool("use_high_quality_simulation"); set => Accessor.SetBool("use_high_quality_simulation", value); } - - - public uint MaxParticleCount - { get => Accessor.GetUInt32("max_particle_count"); set => Accessor.SetUInt32("max_particle_count", value); } - -} + public CUserMsg_ParticleManager_CreatePhysicsSimImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string PropGroupName + { get => Accessor.GetString("prop_group_name"); set => Accessor.SetString("prop_group_name", value); } + public bool UseHighQualitySimulation + { get => Accessor.GetBool("use_high_quality_simulation"); set => Accessor.SetBool("use_high_quality_simulation", value); } + public uint MaxParticleCount + { get => Accessor.GetUInt32("max_particle_count"); set => Accessor.SetUInt32("max_particle_count", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_DestroyParticleImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_DestroyParticleImpl.cs index 7861b5165..9c0102c28 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_DestroyParticleImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_DestroyParticleImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_DestroyParticleImpl : TypedProtobuf, CUserMsg_ParticleManager_DestroyParticle { - public CUserMsg_ParticleManager_DestroyParticleImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public bool DestroyImmediately - { get => Accessor.GetBool("destroy_immediately"); set => Accessor.SetBool("destroy_immediately", value); } + public CUserMsg_ParticleManager_DestroyParticleImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public bool DestroyImmediately + { get => Accessor.GetBool("destroy_immediately"); set => Accessor.SetBool("destroy_immediately", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_DestroyParticleInvolvingImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_DestroyParticleInvolvingImpl.cs index b3288642c..d698c5bf2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_DestroyParticleInvolvingImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_DestroyParticleInvolvingImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_DestroyParticleInvolvingImpl : TypedProtobuf, CUserMsg_ParticleManager_DestroyParticleInvolving { - public CUserMsg_ParticleManager_DestroyParticleInvolvingImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public bool DestroyImmediately - { get => Accessor.GetBool("destroy_immediately"); set => Accessor.SetBool("destroy_immediately", value); } - - - public uint EntityHandle - { get => Accessor.GetUInt32("entity_handle"); set => Accessor.SetUInt32("entity_handle", value); } - -} + public CUserMsg_ParticleManager_DestroyParticleInvolvingImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public bool DestroyImmediately + { get => Accessor.GetBool("destroy_immediately"); set => Accessor.SetBool("destroy_immediately", value); } + public uint EntityHandle + { get => Accessor.GetUInt32("entity_handle"); set => Accessor.SetUInt32("entity_handle", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_DestroyParticleNamedImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_DestroyParticleNamedImpl.cs index d682cb4c5..687a0ae54 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_DestroyParticleNamedImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_DestroyParticleNamedImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_DestroyParticleNamedImpl : TypedProtobuf, CUserMsg_ParticleManager_DestroyParticleNamed { - public CUserMsg_ParticleManager_DestroyParticleNamedImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong ParticleNameIndex - { get => Accessor.GetUInt64("particle_name_index"); set => Accessor.SetUInt64("particle_name_index", value); } - - - public uint EntityHandle - { get => Accessor.GetUInt32("entity_handle"); set => Accessor.SetUInt32("entity_handle", value); } - - - public bool DestroyImmediately - { get => Accessor.GetBool("destroy_immediately"); set => Accessor.SetBool("destroy_immediately", value); } - - - public bool PlayEndcap - { get => Accessor.GetBool("play_endcap"); set => Accessor.SetBool("play_endcap", value); } - -} + public CUserMsg_ParticleManager_DestroyParticleNamedImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong ParticleNameIndex + { get => Accessor.GetUInt64("particle_name_index"); set => Accessor.SetUInt64("particle_name_index", value); } + public uint EntityHandle + { get => Accessor.GetUInt32("entity_handle"); set => Accessor.SetUInt32("entity_handle", value); } + public bool DestroyImmediately + { get => Accessor.GetBool("destroy_immediately"); set => Accessor.SetBool("destroy_immediately", value); } + public bool PlayEndcap + { get => Accessor.GetBool("play_endcap"); set => Accessor.SetBool("play_endcap", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_DestroyPhysicsSimImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_DestroyPhysicsSimImpl.cs index eab3cf597..78bf6ea7a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_DestroyPhysicsSimImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_DestroyPhysicsSimImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,9 +8,8 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_DestroyPhysicsSimImpl : TypedProtobuf, CUserMsg_ParticleManager_DestroyPhysicsSim { - public CUserMsg_ParticleManager_DestroyPhysicsSimImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - + public CUserMsg_ParticleManager_DestroyPhysicsSimImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_FreezeParticleInvolvingImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_FreezeParticleInvolvingImpl.cs index 5b65f33e9..a8283e2fb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_FreezeParticleInvolvingImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_FreezeParticleInvolvingImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_FreezeParticleInvolvingImpl : TypedProtobuf, CUserMsg_ParticleManager_FreezeParticleInvolving { - public CUserMsg_ParticleManager_FreezeParticleInvolvingImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public bool SetFrozen - { get => Accessor.GetBool("set_frozen"); set => Accessor.SetBool("set_frozen", value); } - - - public float TransitionDuration - { get => Accessor.GetFloat("transition_duration"); set => Accessor.SetFloat("transition_duration", value); } - - - public uint EntityHandle - { get => Accessor.GetUInt32("entity_handle"); set => Accessor.SetUInt32("entity_handle", value); } - -} + public CUserMsg_ParticleManager_FreezeParticleInvolvingImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public bool SetFrozen + { get => Accessor.GetBool("set_frozen"); set => Accessor.SetBool("set_frozen", value); } + public float TransitionDuration + { get => Accessor.GetFloat("transition_duration"); set => Accessor.SetFloat("transition_duration", value); } + public uint EntityHandle + { get => Accessor.GetUInt32("entity_handle"); set => Accessor.SetUInt32("entity_handle", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_ParticleCanFreezeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_ParticleCanFreezeImpl.cs index 54587042f..ffff754e4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_ParticleCanFreezeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_ParticleCanFreezeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_ParticleCanFreezeImpl : TypedProtobuf, CUserMsg_ParticleManager_ParticleCanFreeze { - public CUserMsg_ParticleManager_ParticleCanFreezeImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public bool CanFreeze - { get => Accessor.GetBool("can_freeze"); set => Accessor.SetBool("can_freeze", value); } + public CUserMsg_ParticleManager_ParticleCanFreezeImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public bool CanFreeze + { get => Accessor.GetBool("can_freeze"); set => Accessor.SetBool("can_freeze", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_ParticleFreezeTransitionOverrideImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_ParticleFreezeTransitionOverrideImpl.cs index 31442c705..6d0b49315 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_ParticleFreezeTransitionOverrideImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_ParticleFreezeTransitionOverrideImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_ParticleFreezeTransitionOverrideImpl : TypedProtobuf, CUserMsg_ParticleManager_ParticleFreezeTransitionOverride { - public CUserMsg_ParticleManager_ParticleFreezeTransitionOverrideImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public float FreezeTransitionOverride - { get => Accessor.GetFloat("freeze_transition_override"); set => Accessor.SetFloat("freeze_transition_override", value); } + public CUserMsg_ParticleManager_ParticleFreezeTransitionOverrideImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public float FreezeTransitionOverride + { get => Accessor.GetFloat("freeze_transition_override"); set => Accessor.SetFloat("freeze_transition_override", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_ParticleSkipToTimeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_ParticleSkipToTimeImpl.cs index 0cd262c1e..41be6b3cf 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_ParticleSkipToTimeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_ParticleSkipToTimeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_ParticleSkipToTimeImpl : TypedProtobuf, CUserMsg_ParticleManager_ParticleSkipToTime { - public CUserMsg_ParticleManager_ParticleSkipToTimeImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public float SkipToTime - { get => Accessor.GetFloat("skip_to_time"); set => Accessor.SetFloat("skip_to_time", value); } + public CUserMsg_ParticleManager_ParticleSkipToTimeImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public float SkipToTime + { get => Accessor.GetFloat("skip_to_time"); set => Accessor.SetFloat("skip_to_time", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_ReleaseParticleIndexImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_ReleaseParticleIndexImpl.cs index 227ae06cb..dd0b6e5d4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_ReleaseParticleIndexImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_ReleaseParticleIndexImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,9 +8,8 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_ReleaseParticleIndexImpl : TypedProtobuf, CUserMsg_ParticleManager_ReleaseParticleIndex { - public CUserMsg_ParticleManager_ReleaseParticleIndexImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - + public CUserMsg_ParticleManager_ReleaseParticleIndexImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_RemoveFanImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_RemoveFanImpl.cs index 726baa6b4..3edf08c80 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_RemoveFanImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_RemoveFanImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,9 +8,8 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_RemoveFanImpl : TypedProtobuf, CUserMsg_ParticleManager_RemoveFan { - public CUserMsg_ParticleManager_RemoveFanImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - + public CUserMsg_ParticleManager_RemoveFanImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetControlPointModelImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetControlPointModelImpl.cs index 1cc50d9ab..1a89d202b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetControlPointModelImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetControlPointModelImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_SetControlPointModelImpl : TypedProtobuf, CUserMsg_ParticleManager_SetControlPointModel { - public CUserMsg_ParticleManager_SetControlPointModelImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int ControlPoint - { get => Accessor.GetInt32("control_point"); set => Accessor.SetInt32("control_point", value); } - - - public string ModelName - { get => Accessor.GetString("model_name"); set => Accessor.SetString("model_name", value); } - -} + public CUserMsg_ParticleManager_SetControlPointModelImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int ControlPoint + { get => Accessor.GetInt32("control_point"); set => Accessor.SetInt32("control_point", value); } + public string ModelName + { get => Accessor.GetString("model_name"); set => Accessor.SetString("model_name", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetControlPointSnapshotImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetControlPointSnapshotImpl.cs index f811b9145..fbd2bdef8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetControlPointSnapshotImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetControlPointSnapshotImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_SetControlPointSnapshotImpl : TypedProtobuf, CUserMsg_ParticleManager_SetControlPointSnapshot { - public CUserMsg_ParticleManager_SetControlPointSnapshotImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int ControlPoint - { get => Accessor.GetInt32("control_point"); set => Accessor.SetInt32("control_point", value); } - - - public string SnapshotName - { get => Accessor.GetString("snapshot_name"); set => Accessor.SetString("snapshot_name", value); } - -} + public CUserMsg_ParticleManager_SetControlPointSnapshotImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int ControlPoint + { get => Accessor.GetInt32("control_point"); set => Accessor.SetInt32("control_point", value); } + public string SnapshotName + { get => Accessor.GetString("snapshot_name"); set => Accessor.SetString("snapshot_name", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetMaterialOverrideImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetMaterialOverrideImpl.cs index 52e899b70..79459e129 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetMaterialOverrideImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetMaterialOverrideImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_SetMaterialOverrideImpl : TypedProtobuf, CUserMsg_ParticleManager_SetMaterialOverride { - public CUserMsg_ParticleManager_SetMaterialOverrideImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string MaterialName - { get => Accessor.GetString("material_name"); set => Accessor.SetString("material_name", value); } - - - public bool IncludeChildren - { get => Accessor.GetBool("include_children"); set => Accessor.SetBool("include_children", value); } - -} + public CUserMsg_ParticleManager_SetMaterialOverrideImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string MaterialName + { get => Accessor.GetString("material_name"); set => Accessor.SetString("material_name", value); } + public bool IncludeChildren + { get => Accessor.GetBool("include_children"); set => Accessor.SetBool("include_children", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleClusterGrowthImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleClusterGrowthImpl.cs index 005a26958..7dfbf886f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleClusterGrowthImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleClusterGrowthImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_SetParticleClusterGrowthImpl : TypedProtobuf, CUserMsg_ParticleManager_SetParticleClusterGrowth { - public CUserMsg_ParticleManager_SetParticleClusterGrowthImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public float Duration - { get => Accessor.GetFloat("duration"); set => Accessor.SetFloat("duration", value); } - - - public Vector Origin - { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } - -} + public CUserMsg_ParticleManager_SetParticleClusterGrowthImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public float Duration + { get => Accessor.GetFloat("duration"); set => Accessor.SetFloat("duration", value); } + public Vector Origin + { get => Accessor.GetVector("origin"); set => Accessor.SetVector("origin", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleFoWPropertiesImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleFoWPropertiesImpl.cs index 56d0ef26e..bcb8672bf 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleFoWPropertiesImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleFoWPropertiesImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_SetParticleFoWPropertiesImpl : TypedProtobuf, CUserMsg_ParticleManager_SetParticleFoWProperties { - public CUserMsg_ParticleManager_SetParticleFoWPropertiesImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int FowControlPoint - { get => Accessor.GetInt32("fow_control_point"); set => Accessor.SetInt32("fow_control_point", value); } - - - public int FowControlPoint2 - { get => Accessor.GetInt32("fow_control_point2"); set => Accessor.SetInt32("fow_control_point2", value); } - - - public float FowRadius - { get => Accessor.GetFloat("fow_radius"); set => Accessor.SetFloat("fow_radius", value); } - -} + public CUserMsg_ParticleManager_SetParticleFoWPropertiesImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int FowControlPoint + { get => Accessor.GetInt32("fow_control_point"); set => Accessor.SetInt32("fow_control_point", value); } + public int FowControlPoint2 + { get => Accessor.GetInt32("fow_control_point2"); set => Accessor.SetInt32("fow_control_point2", value); } + public float FowRadius + { get => Accessor.GetFloat("fow_radius"); set => Accessor.SetFloat("fow_radius", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleNamedValueContextImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleNamedValueContextImpl.cs index fc0021f2a..2a05b708c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleNamedValueContextImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleNamedValueContextImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_SetParticleNamedValueContextImpl : TypedProtobuf, CUserMsg_ParticleManager_SetParticleNamedValueContext { - public CUserMsg_ParticleManager_SetParticleNamedValueContextImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldSubMessageType FloatValues - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "float_values"); } - - - public IProtobufRepeatedFieldSubMessageType VectorValues - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "vector_values"); } - - - public IProtobufRepeatedFieldSubMessageType TransformValues - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "transform_values"); } - - - public IProtobufRepeatedFieldSubMessageType EhandleValues - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "ehandle_values"); } - -} + public CUserMsg_ParticleManager_SetParticleNamedValueContextImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public IProtobufRepeatedFieldSubMessageType FloatValues + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "float_values"); } + public IProtobufRepeatedFieldSubMessageType VectorValues + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "vector_values"); } + public IProtobufRepeatedFieldSubMessageType TransformValues + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "transform_values"); } + public IProtobufRepeatedFieldSubMessageType EhandleValues + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "ehandle_values"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleNamedValueContext_EHandleContextImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleNamedValueContext_EHandleContextImpl.cs index 5810c8385..4e2648a2a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleNamedValueContext_EHandleContextImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleNamedValueContext_EHandleContextImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_SetParticleNamedValueContext_EHandleContextImpl : TypedProtobuf, CUserMsg_ParticleManager_SetParticleNamedValueContext_EHandleContext { - public CUserMsg_ParticleManager_SetParticleNamedValueContext_EHandleContextImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint ValueNameHash - { get => Accessor.GetUInt32("value_name_hash"); set => Accessor.SetUInt32("value_name_hash", value); } - - - public uint EntIndex - { get => Accessor.GetUInt32("ent_index"); set => Accessor.SetUInt32("ent_index", value); } - -} + public CUserMsg_ParticleManager_SetParticleNamedValueContext_EHandleContextImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint ValueNameHash + { get => Accessor.GetUInt32("value_name_hash"); set => Accessor.SetUInt32("value_name_hash", value); } + public uint EntIndex + { get => Accessor.GetUInt32("ent_index"); set => Accessor.SetUInt32("ent_index", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleNamedValueContext_FloatContextValueImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleNamedValueContext_FloatContextValueImpl.cs index 81ab6abfb..d3bd31378 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleNamedValueContext_FloatContextValueImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleNamedValueContext_FloatContextValueImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_SetParticleNamedValueContext_FloatContextValueImpl : TypedProtobuf, CUserMsg_ParticleManager_SetParticleNamedValueContext_FloatContextValue { - public CUserMsg_ParticleManager_SetParticleNamedValueContext_FloatContextValueImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint ValueNameHash - { get => Accessor.GetUInt32("value_name_hash"); set => Accessor.SetUInt32("value_name_hash", value); } - - - public float Value - { get => Accessor.GetFloat("value"); set => Accessor.SetFloat("value", value); } - -} + public CUserMsg_ParticleManager_SetParticleNamedValueContext_FloatContextValueImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint ValueNameHash + { get => Accessor.GetUInt32("value_name_hash"); set => Accessor.SetUInt32("value_name_hash", value); } + public float Value + { get => Accessor.GetFloat("value"); set => Accessor.SetFloat("value", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleNamedValueContext_TransformContextValueImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleNamedValueContext_TransformContextValueImpl.cs index 42c8941d9..1f5f7dcb1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleNamedValueContext_TransformContextValueImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleNamedValueContext_TransformContextValueImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_SetParticleNamedValueContext_TransformContextValueImpl : TypedProtobuf, CUserMsg_ParticleManager_SetParticleNamedValueContext_TransformContextValue { - public CUserMsg_ParticleManager_SetParticleNamedValueContext_TransformContextValueImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint ValueNameHash - { get => Accessor.GetUInt32("value_name_hash"); set => Accessor.SetUInt32("value_name_hash", value); } - - - public QAngle Angles - { get => Accessor.GetQAngle("angles"); set => Accessor.SetQAngle("angles", value); } - - - public Vector Translation - { get => Accessor.GetVector("translation"); set => Accessor.SetVector("translation", value); } - -} + public CUserMsg_ParticleManager_SetParticleNamedValueContext_TransformContextValueImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint ValueNameHash + { get => Accessor.GetUInt32("value_name_hash"); set => Accessor.SetUInt32("value_name_hash", value); } + public QAngle Angles + { get => Accessor.GetQAngle("angles"); set => Accessor.SetQAngle("angles", value); } + public Vector Translation + { get => Accessor.GetVector("translation"); set => Accessor.SetVector("translation", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleNamedValueContext_VectorContextValueImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleNamedValueContext_VectorContextValueImpl.cs index bf1e04a6b..78daf1a08 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleNamedValueContext_VectorContextValueImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleNamedValueContext_VectorContextValueImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_SetParticleNamedValueContext_VectorContextValueImpl : TypedProtobuf, CUserMsg_ParticleManager_SetParticleNamedValueContext_VectorContextValue { - public CUserMsg_ParticleManager_SetParticleNamedValueContext_VectorContextValueImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint ValueNameHash - { get => Accessor.GetUInt32("value_name_hash"); set => Accessor.SetUInt32("value_name_hash", value); } - - - public Vector Value - { get => Accessor.GetVector("value"); set => Accessor.SetVector("value", value); } - -} + public CUserMsg_ParticleManager_SetParticleNamedValueContext_VectorContextValueImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint ValueNameHash + { get => Accessor.GetUInt32("value_name_hash"); set => Accessor.SetUInt32("value_name_hash", value); } + public Vector Value + { get => Accessor.GetVector("value"); set => Accessor.SetVector("value", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleShouldCheckFoWImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleShouldCheckFoWImpl.cs index 417e9e5af..b56f80884 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleShouldCheckFoWImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleShouldCheckFoWImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_SetParticleShouldCheckFoWImpl : TypedProtobuf, CUserMsg_ParticleManager_SetParticleShouldCheckFoW { - public CUserMsg_ParticleManager_SetParticleShouldCheckFoWImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public bool CheckFow - { get => Accessor.GetBool("check_fow"); set => Accessor.SetBool("check_fow", value); } + public CUserMsg_ParticleManager_SetParticleShouldCheckFoWImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public bool CheckFow + { get => Accessor.GetBool("check_fow"); set => Accessor.SetBool("check_fow", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleTextImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleTextImpl.cs index f8d9ec11b..92f9d1c8f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleTextImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetParticleTextImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_SetParticleTextImpl : TypedProtobuf, CUserMsg_ParticleManager_SetParticleText { - public CUserMsg_ParticleManager_SetParticleTextImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string Text - { get => Accessor.GetString("text"); set => Accessor.SetString("text", value); } + public CUserMsg_ParticleManager_SetParticleTextImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public string Text + { get => Accessor.GetString("text"); set => Accessor.SetString("text", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetSceneObjectGenericFlagImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetSceneObjectGenericFlagImpl.cs index 651d60142..304b25f87 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetSceneObjectGenericFlagImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetSceneObjectGenericFlagImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_SetSceneObjectGenericFlagImpl : TypedProtobuf, CUserMsg_ParticleManager_SetSceneObjectGenericFlag { - public CUserMsg_ParticleManager_SetSceneObjectGenericFlagImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public bool FlagValue - { get => Accessor.GetBool("flag_value"); set => Accessor.SetBool("flag_value", value); } + public CUserMsg_ParticleManager_SetSceneObjectGenericFlagImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public bool FlagValue + { get => Accessor.GetBool("flag_value"); set => Accessor.SetBool("flag_value", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetSceneObjectTintAndDesatImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetSceneObjectTintAndDesatImpl.cs index 707a4b2e0..8b5abcef5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetSceneObjectTintAndDesatImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetSceneObjectTintAndDesatImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_SetSceneObjectTintAndDesatImpl : TypedProtobuf, CUserMsg_ParticleManager_SetSceneObjectTintAndDesat { - public CUserMsg_ParticleManager_SetSceneObjectTintAndDesatImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Tint - { get => Accessor.GetUInt32("tint"); set => Accessor.SetUInt32("tint", value); } - - - public float Desat - { get => Accessor.GetFloat("desat"); set => Accessor.SetFloat("desat", value); } - -} + public CUserMsg_ParticleManager_SetSceneObjectTintAndDesatImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Tint + { get => Accessor.GetUInt32("tint"); set => Accessor.SetUInt32("tint", value); } + public float Desat + { get => Accessor.GetFloat("desat"); set => Accessor.SetFloat("desat", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetTextureAttributeImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetTextureAttributeImpl.cs index 25532360e..a370c3678 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetTextureAttributeImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetTextureAttributeImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_SetTextureAttributeImpl : TypedProtobuf, CUserMsg_ParticleManager_SetTextureAttribute { - public CUserMsg_ParticleManager_SetTextureAttributeImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string AttributeName - { get => Accessor.GetString("attribute_name"); set => Accessor.SetString("attribute_name", value); } - - - public string TextureName - { get => Accessor.GetString("texture_name"); set => Accessor.SetString("texture_name", value); } - -} + public CUserMsg_ParticleManager_SetTextureAttributeImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string AttributeName + { get => Accessor.GetString("attribute_name"); set => Accessor.SetString("attribute_name", value); } + public string TextureName + { get => Accessor.GetString("texture_name"); set => Accessor.SetString("texture_name", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetVDataImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetVDataImpl.cs index 0ef1fe8c6..420f95a55 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetVDataImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_SetVDataImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_SetVDataImpl : TypedProtobuf, CUserMsg_ParticleManager_SetVData { - public CUserMsg_ParticleManager_SetVDataImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string VdataName - { get => Accessor.GetString("vdata_name"); set => Accessor.SetString("vdata_name", value); } + public CUserMsg_ParticleManager_SetVDataImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public string VdataName + { get => Accessor.GetString("vdata_name"); set => Accessor.SetString("vdata_name", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateEntityPositionImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateEntityPositionImpl.cs index 85782f379..061f03190 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateEntityPositionImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateEntityPositionImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_UpdateEntityPositionImpl : TypedProtobuf, CUserMsg_ParticleManager_UpdateEntityPosition { - public CUserMsg_ParticleManager_UpdateEntityPositionImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint EntityHandle - { get => Accessor.GetUInt32("entity_handle"); set => Accessor.SetUInt32("entity_handle", value); } - - - public Vector Position - { get => Accessor.GetVector("position"); set => Accessor.SetVector("position", value); } - -} + public CUserMsg_ParticleManager_UpdateEntityPositionImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint EntityHandle + { get => Accessor.GetUInt32("entity_handle"); set => Accessor.SetUInt32("entity_handle", value); } + public Vector Position + { get => Accessor.GetVector("position"); set => Accessor.SetVector("position", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateFanImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateFanImpl.cs index d8f7cd102..c62443f2b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateFanImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateFanImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,36 +8,22 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_UpdateFanImpl : TypedProtobuf, CUserMsg_ParticleManager_UpdateFan { - public CUserMsg_ParticleManager_UpdateFanImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public bool Active - { get => Accessor.GetBool("active"); set => Accessor.SetBool("active", value); } - - - public Vector FanOrigin - { get => Accessor.GetVector("fan_origin"); set => Accessor.SetVector("fan_origin", value); } - - - public Vector FanOriginOffset - { get => Accessor.GetVector("fan_origin_offset"); set => Accessor.SetVector("fan_origin_offset", value); } - - - public Vector FanDirection - { get => Accessor.GetVector("fan_direction"); set => Accessor.SetVector("fan_direction", value); } - - - public float FanRampRatio - { get => Accessor.GetFloat("fan_ramp_ratio"); set => Accessor.SetFloat("fan_ramp_ratio", value); } - - - public Vector BoundsMins - { get => Accessor.GetVector("bounds_mins"); set => Accessor.SetVector("bounds_mins", value); } - - - public Vector BoundsMaxs - { get => Accessor.GetVector("bounds_maxs"); set => Accessor.SetVector("bounds_maxs", value); } - -} + public CUserMsg_ParticleManager_UpdateFanImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public bool Active + { get => Accessor.GetBool("active"); set => Accessor.SetBool("active", value); } + public Vector FanOrigin + { get => Accessor.GetVector("fan_origin"); set => Accessor.SetVector("fan_origin", value); } + public Vector FanOriginOffset + { get => Accessor.GetVector("fan_origin_offset"); set => Accessor.SetVector("fan_origin_offset", value); } + public Vector FanDirection + { get => Accessor.GetVector("fan_direction"); set => Accessor.SetVector("fan_direction", value); } + public float FanRampRatio + { get => Accessor.GetFloat("fan_ramp_ratio"); set => Accessor.SetFloat("fan_ramp_ratio", value); } + public Vector BoundsMins + { get => Accessor.GetVector("bounds_mins"); set => Accessor.SetVector("bounds_mins", value); } + public Vector BoundsMaxs + { get => Accessor.GetVector("bounds_maxs"); set => Accessor.SetVector("bounds_maxs", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleEntImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleEntImpl.cs index 0626e9a66..9b467d629 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleEntImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleEntImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,40 +8,24 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_UpdateParticleEntImpl : TypedProtobuf, CUserMsg_ParticleManager_UpdateParticleEnt { - public CUserMsg_ParticleManager_UpdateParticleEntImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int ControlPoint - { get => Accessor.GetInt32("control_point"); set => Accessor.SetInt32("control_point", value); } - - - public uint EntityHandle - { get => Accessor.GetUInt32("entity_handle"); set => Accessor.SetUInt32("entity_handle", value); } - - - public int AttachType - { get => Accessor.GetInt32("attach_type"); set => Accessor.SetInt32("attach_type", value); } - - - public int Attachment - { get => Accessor.GetInt32("attachment"); set => Accessor.SetInt32("attachment", value); } - - - public Vector FallbackPosition - { get => Accessor.GetVector("fallback_position"); set => Accessor.SetVector("fallback_position", value); } - - - public bool IncludeWearables - { get => Accessor.GetBool("include_wearables"); set => Accessor.SetBool("include_wearables", value); } - - - public Vector OffsetPosition - { get => Accessor.GetVector("offset_position"); set => Accessor.SetVector("offset_position", value); } - - - public QAngle OffsetAngles - { get => Accessor.GetQAngle("offset_angles"); set => Accessor.SetQAngle("offset_angles", value); } - -} + public CUserMsg_ParticleManager_UpdateParticleEntImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int ControlPoint + { get => Accessor.GetInt32("control_point"); set => Accessor.SetInt32("control_point", value); } + public uint EntityHandle + { get => Accessor.GetUInt32("entity_handle"); set => Accessor.SetUInt32("entity_handle", value); } + public int AttachType + { get => Accessor.GetInt32("attach_type"); set => Accessor.SetInt32("attach_type", value); } + public int Attachment + { get => Accessor.GetInt32("attachment"); set => Accessor.SetInt32("attachment", value); } + public Vector FallbackPosition + { get => Accessor.GetVector("fallback_position"); set => Accessor.SetVector("fallback_position", value); } + public bool IncludeWearables + { get => Accessor.GetBool("include_wearables"); set => Accessor.SetBool("include_wearables", value); } + public Vector OffsetPosition + { get => Accessor.GetVector("offset_position"); set => Accessor.SetVector("offset_position", value); } + public QAngle OffsetAngles + { get => Accessor.GetQAngle("offset_angles"); set => Accessor.SetQAngle("offset_angles", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleFallbackImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleFallbackImpl.cs index 57dfdf05d..8cef938f7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleFallbackImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleFallbackImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_UpdateParticleFallbackImpl : TypedProtobuf, CUserMsg_ParticleManager_UpdateParticleFallback { - public CUserMsg_ParticleManager_UpdateParticleFallbackImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int ControlPoint - { get => Accessor.GetInt32("control_point"); set => Accessor.SetInt32("control_point", value); } - - - public Vector Position - { get => Accessor.GetVector("position"); set => Accessor.SetVector("position", value); } - -} + public CUserMsg_ParticleManager_UpdateParticleFallbackImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int ControlPoint + { get => Accessor.GetInt32("control_point"); set => Accessor.SetInt32("control_point", value); } + public Vector Position + { get => Accessor.GetVector("position"); set => Accessor.SetVector("position", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleFwd_OBSOLETEImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleFwd_OBSOLETEImpl.cs index a24f00b03..fd32fd6b6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleFwd_OBSOLETEImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleFwd_OBSOLETEImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_UpdateParticleFwd_OBSOLETEImpl : TypedProtobuf, CUserMsg_ParticleManager_UpdateParticleFwd_OBSOLETE { - public CUserMsg_ParticleManager_UpdateParticleFwd_OBSOLETEImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int ControlPoint - { get => Accessor.GetInt32("control_point"); set => Accessor.SetInt32("control_point", value); } - - - public Vector Forward - { get => Accessor.GetVector("forward"); set => Accessor.SetVector("forward", value); } - -} + public CUserMsg_ParticleManager_UpdateParticleFwd_OBSOLETEImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int ControlPoint + { get => Accessor.GetInt32("control_point"); set => Accessor.SetInt32("control_point", value); } + public Vector Forward + { get => Accessor.GetVector("forward"); set => Accessor.SetVector("forward", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleOffsetImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleOffsetImpl.cs index 4d83aad4d..cd48ae677 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleOffsetImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleOffsetImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_UpdateParticleOffsetImpl : TypedProtobuf, CUserMsg_ParticleManager_UpdateParticleOffset { - public CUserMsg_ParticleManager_UpdateParticleOffsetImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int ControlPoint - { get => Accessor.GetInt32("control_point"); set => Accessor.SetInt32("control_point", value); } - - - public Vector OriginOffset - { get => Accessor.GetVector("origin_offset"); set => Accessor.SetVector("origin_offset", value); } - - - public QAngle AngleOffset - { get => Accessor.GetQAngle("angle_offset"); set => Accessor.SetQAngle("angle_offset", value); } - -} + public CUserMsg_ParticleManager_UpdateParticleOffsetImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int ControlPoint + { get => Accessor.GetInt32("control_point"); set => Accessor.SetInt32("control_point", value); } + public Vector OriginOffset + { get => Accessor.GetVector("origin_offset"); set => Accessor.SetVector("origin_offset", value); } + public QAngle AngleOffset + { get => Accessor.GetQAngle("angle_offset"); set => Accessor.SetQAngle("angle_offset", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleOrient_OBSOLETEImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleOrient_OBSOLETEImpl.cs index 7a92c7d74..765c808f6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleOrient_OBSOLETEImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleOrient_OBSOLETEImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_UpdateParticleOrient_OBSOLETEImpl : TypedProtobuf, CUserMsg_ParticleManager_UpdateParticleOrient_OBSOLETE { - public CUserMsg_ParticleManager_UpdateParticleOrient_OBSOLETEImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int ControlPoint - { get => Accessor.GetInt32("control_point"); set => Accessor.SetInt32("control_point", value); } - - - public Vector Forward - { get => Accessor.GetVector("forward"); set => Accessor.SetVector("forward", value); } - - - public Vector DeprecatedRight - { get => Accessor.GetVector("deprecated_right"); set => Accessor.SetVector("deprecated_right", value); } - - - public Vector Up - { get => Accessor.GetVector("up"); set => Accessor.SetVector("up", value); } - - - public Vector Left - { get => Accessor.GetVector("left"); set => Accessor.SetVector("left", value); } - -} + public CUserMsg_ParticleManager_UpdateParticleOrient_OBSOLETEImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int ControlPoint + { get => Accessor.GetInt32("control_point"); set => Accessor.SetInt32("control_point", value); } + public Vector Forward + { get => Accessor.GetVector("forward"); set => Accessor.SetVector("forward", value); } + public Vector DeprecatedRight + { get => Accessor.GetVector("deprecated_right"); set => Accessor.SetVector("deprecated_right", value); } + public Vector Up + { get => Accessor.GetVector("up"); set => Accessor.SetVector("up", value); } + public Vector Left + { get => Accessor.GetVector("left"); set => Accessor.SetVector("left", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleSetFrozenImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleSetFrozenImpl.cs index 99a7d632c..523cc90ab 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleSetFrozenImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleSetFrozenImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_UpdateParticleSetFrozenImpl : TypedProtobuf, CUserMsg_ParticleManager_UpdateParticleSetFrozen { - public CUserMsg_ParticleManager_UpdateParticleSetFrozenImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public bool SetFrozen - { get => Accessor.GetBool("set_frozen"); set => Accessor.SetBool("set_frozen", value); } - - - public float TransitionDuration - { get => Accessor.GetFloat("transition_duration"); set => Accessor.SetFloat("transition_duration", value); } - -} + public CUserMsg_ParticleManager_UpdateParticleSetFrozenImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public bool SetFrozen + { get => Accessor.GetBool("set_frozen"); set => Accessor.SetBool("set_frozen", value); } + public float TransitionDuration + { get => Accessor.GetFloat("transition_duration"); set => Accessor.SetFloat("transition_duration", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleShouldDrawImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleShouldDrawImpl.cs index fe19e9441..4437a7d3b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleShouldDrawImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleShouldDrawImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_UpdateParticleShouldDrawImpl : TypedProtobuf, CUserMsg_ParticleManager_UpdateParticleShouldDraw { - public CUserMsg_ParticleManager_UpdateParticleShouldDrawImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public bool ShouldDraw - { get => Accessor.GetBool("should_draw"); set => Accessor.SetBool("should_draw", value); } + public CUserMsg_ParticleManager_UpdateParticleShouldDrawImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public bool ShouldDraw + { get => Accessor.GetBool("should_draw"); set => Accessor.SetBool("should_draw", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleTransformImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleTransformImpl.cs index e5cc6c6ef..96f3be449 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleTransformImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticleTransformImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_UpdateParticleTransformImpl : TypedProtobuf, CUserMsg_ParticleManager_UpdateParticleTransform { - public CUserMsg_ParticleManager_UpdateParticleTransformImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int ControlPoint - { get => Accessor.GetInt32("control_point"); set => Accessor.SetInt32("control_point", value); } - - - public Vector Position - { get => Accessor.GetVector("position"); set => Accessor.SetVector("position", value); } - - - public CMsgQuaternion Orientation - { get => new CMsgQuaternionImpl(NativeNetMessages.GetNestedMessage(Address, "orientation"), false); } - - - public float InterpolationInterval - { get => Accessor.GetFloat("interpolation_interval"); set => Accessor.SetFloat("interpolation_interval", value); } - -} + public CUserMsg_ParticleManager_UpdateParticleTransformImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int ControlPoint + { get => Accessor.GetInt32("control_point"); set => Accessor.SetInt32("control_point", value); } + public Vector Position + { get => Accessor.GetVector("position"); set => Accessor.SetVector("position", value); } + public CMsgQuaternion Orientation + { get => new CMsgQuaternionImpl(NativeNetMessages.GetNestedMessage(Address, "orientation"), false); } + public float InterpolationInterval + { get => Accessor.GetFloat("interpolation_interval"); set => Accessor.SetFloat("interpolation_interval", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticle_OBSOLETEImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticle_OBSOLETEImpl.cs index 7bb0adc37..f466bf4ae 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticle_OBSOLETEImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CUserMsg_ParticleManager_UpdateParticle_OBSOLETEImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CUserMsg_ParticleManager_UpdateParticle_OBSOLETEImpl : TypedProtobuf, CUserMsg_ParticleManager_UpdateParticle_OBSOLETE { - public CUserMsg_ParticleManager_UpdateParticle_OBSOLETEImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int ControlPoint - { get => Accessor.GetInt32("control_point"); set => Accessor.SetInt32("control_point", value); } - - - public Vector Position - { get => Accessor.GetVector("position"); set => Accessor.SetVector("position", value); } - -} + public CUserMsg_ParticleManager_UpdateParticle_OBSOLETEImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int ControlPoint + { get => Accessor.GetInt32("control_point"); set => Accessor.SetInt32("control_point", value); } + public Vector Position + { get => Accessor.GetVector("position"); set => Accessor.SetVector("position", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CVDiagnosticImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CVDiagnosticImpl.cs index 287e91401..9e538d537 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CVDiagnosticImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CVDiagnosticImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CVDiagnosticImpl : TypedProtobuf, CVDiagnostic { - public CVDiagnosticImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Id - { get => Accessor.GetUInt32("id"); set => Accessor.SetUInt32("id", value); } - - - public uint Extended - { get => Accessor.GetUInt32("extended"); set => Accessor.SetUInt32("extended", value); } - - - public ulong Value - { get => Accessor.GetUInt64("value"); set => Accessor.SetUInt64("value", value); } - - - public string StringValue - { get => Accessor.GetString("string_value"); set => Accessor.SetString("string_value", value); } - -} + public CVDiagnosticImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Id + { get => Accessor.GetUInt32("id"); set => Accessor.SetUInt32("id", value); } + public uint Extended + { get => Accessor.GetUInt32("extended"); set => Accessor.SetUInt32("extended", value); } + public ulong Value + { get => Accessor.GetUInt64("value"); set => Accessor.SetUInt64("value", value); } + public string StringValue + { get => Accessor.GetString("string_value"); set => Accessor.SetString("string_value", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_AddSpecialPayment_RequestImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_AddSpecialPayment_RequestImpl.cs index c19bfbf33..17f0cb577 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_AddSpecialPayment_RequestImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_AddSpecialPayment_RequestImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CWorkshop_AddSpecialPayment_RequestImpl : TypedProtobuf, CWorkshop_AddSpecialPayment_Request { - public CWorkshop_AddSpecialPayment_RequestImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Appid - { get => Accessor.GetUInt32("appid"); set => Accessor.SetUInt32("appid", value); } - - - public uint Gameitemid - { get => Accessor.GetUInt32("gameitemid"); set => Accessor.SetUInt32("gameitemid", value); } - - - public string Date - { get => Accessor.GetString("date"); set => Accessor.SetString("date", value); } - - - public ulong PaymentUsUsd - { get => Accessor.GetUInt64("payment_us_usd"); set => Accessor.SetUInt64("payment_us_usd", value); } - - - public ulong PaymentRowUsd - { get => Accessor.GetUInt64("payment_row_usd"); set => Accessor.SetUInt64("payment_row_usd", value); } - -} + public CWorkshop_AddSpecialPayment_RequestImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Appid + { get => Accessor.GetUInt32("appid"); set => Accessor.SetUInt32("appid", value); } + public uint Gameitemid + { get => Accessor.GetUInt32("gameitemid"); set => Accessor.SetUInt32("gameitemid", value); } + public string Date + { get => Accessor.GetString("date"); set => Accessor.SetString("date", value); } + public ulong PaymentUsUsd + { get => Accessor.GetUInt64("payment_us_usd"); set => Accessor.SetUInt64("payment_us_usd", value); } + public ulong PaymentRowUsd + { get => Accessor.GetUInt64("payment_row_usd"); set => Accessor.SetUInt64("payment_row_usd", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_AddSpecialPayment_ResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_AddSpecialPayment_ResponseImpl.cs index 540be207c..33e277a25 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_AddSpecialPayment_ResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_AddSpecialPayment_ResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,9 +8,8 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CWorkshop_AddSpecialPayment_ResponseImpl : TypedProtobuf, CWorkshop_AddSpecialPayment_Response { - public CWorkshop_AddSpecialPayment_ResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - + public CWorkshop_AddSpecialPayment_ResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_GetContributors_RequestImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_GetContributors_RequestImpl.cs index 741dabe4a..c9cb482eb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_GetContributors_RequestImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_GetContributors_RequestImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CWorkshop_GetContributors_RequestImpl : TypedProtobuf, CWorkshop_GetContributors_Request { - public CWorkshop_GetContributors_RequestImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Appid - { get => Accessor.GetUInt32("appid"); set => Accessor.SetUInt32("appid", value); } - - - public uint Gameitemid - { get => Accessor.GetUInt32("gameitemid"); set => Accessor.SetUInt32("gameitemid", value); } - -} + public CWorkshop_GetContributors_RequestImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Appid + { get => Accessor.GetUInt32("appid"); set => Accessor.SetUInt32("appid", value); } + public uint Gameitemid + { get => Accessor.GetUInt32("gameitemid"); set => Accessor.SetUInt32("gameitemid", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_GetContributors_ResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_GetContributors_ResponseImpl.cs index 9acf99960..35a65ef9f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_GetContributors_ResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_GetContributors_ResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CWorkshop_GetContributors_ResponseImpl : TypedProtobuf, CWorkshop_GetContributors_Response { - public CWorkshop_GetContributors_ResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldValueType Contributors - { get => new ProtobufRepeatedFieldValueType(Accessor, "contributors"); } + public CWorkshop_GetContributors_ResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public IProtobufRepeatedFieldValueType Contributors + { get => new ProtobufRepeatedFieldValueType(Accessor, "contributors"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_PopulateItemDescriptions_RequestImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_PopulateItemDescriptions_RequestImpl.cs index 55f6f2c6f..afb5950dc 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_PopulateItemDescriptions_RequestImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_PopulateItemDescriptions_RequestImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CWorkshop_PopulateItemDescriptions_RequestImpl : TypedProtobuf, CWorkshop_PopulateItemDescriptions_Request { - public CWorkshop_PopulateItemDescriptions_RequestImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Appid - { get => Accessor.GetUInt32("appid"); set => Accessor.SetUInt32("appid", value); } - - - public IProtobufRepeatedFieldSubMessageType Languages - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "languages"); } - -} + public CWorkshop_PopulateItemDescriptions_RequestImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Appid + { get => Accessor.GetUInt32("appid"); set => Accessor.SetUInt32("appid", value); } + public IProtobufRepeatedFieldSubMessageType Languages + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "languages"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_PopulateItemDescriptions_Request_ItemDescriptionsLanguageBlockImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_PopulateItemDescriptions_Request_ItemDescriptionsLanguageBlockImpl.cs index cc87bb622..d3308a426 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_PopulateItemDescriptions_Request_ItemDescriptionsLanguageBlockImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_PopulateItemDescriptions_Request_ItemDescriptionsLanguageBlockImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CWorkshop_PopulateItemDescriptions_Request_ItemDescriptionsLanguageBlockImpl : TypedProtobuf, CWorkshop_PopulateItemDescriptions_Request_ItemDescriptionsLanguageBlock { - public CWorkshop_PopulateItemDescriptions_Request_ItemDescriptionsLanguageBlockImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string Language - { get => Accessor.GetString("language"); set => Accessor.SetString("language", value); } - - - public IProtobufRepeatedFieldSubMessageType Descriptions - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "descriptions"); } - -} + public CWorkshop_PopulateItemDescriptions_Request_ItemDescriptionsLanguageBlockImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string Language + { get => Accessor.GetString("language"); set => Accessor.SetString("language", value); } + public IProtobufRepeatedFieldSubMessageType Descriptions + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "descriptions"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_PopulateItemDescriptions_Request_SingleItemDescriptionImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_PopulateItemDescriptions_Request_SingleItemDescriptionImpl.cs index cbe9f3538..dd2607e66 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_PopulateItemDescriptions_Request_SingleItemDescriptionImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_PopulateItemDescriptions_Request_SingleItemDescriptionImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CWorkshop_PopulateItemDescriptions_Request_SingleItemDescriptionImpl : TypedProtobuf, CWorkshop_PopulateItemDescriptions_Request_SingleItemDescription { - public CWorkshop_PopulateItemDescriptions_Request_SingleItemDescriptionImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Gameitemid - { get => Accessor.GetUInt32("gameitemid"); set => Accessor.SetUInt32("gameitemid", value); } - - - public string ItemDescription - { get => Accessor.GetString("item_description"); set => Accessor.SetString("item_description", value); } - - - public bool OnePerAccount - { get => Accessor.GetBool("one_per_account"); set => Accessor.SetBool("one_per_account", value); } - -} + public CWorkshop_PopulateItemDescriptions_Request_SingleItemDescriptionImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Gameitemid + { get => Accessor.GetUInt32("gameitemid"); set => Accessor.SetUInt32("gameitemid", value); } + public string ItemDescription + { get => Accessor.GetString("item_description"); set => Accessor.SetString("item_description", value); } + public bool OnePerAccount + { get => Accessor.GetBool("one_per_account"); set => Accessor.SetBool("one_per_account", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_SetItemPaymentRules_RequestImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_SetItemPaymentRules_RequestImpl.cs index 3d1660921..04b3b9209 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_SetItemPaymentRules_RequestImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_SetItemPaymentRules_RequestImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,36 +8,22 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CWorkshop_SetItemPaymentRules_RequestImpl : TypedProtobuf, CWorkshop_SetItemPaymentRules_Request { - public CWorkshop_SetItemPaymentRules_RequestImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Appid - { get => Accessor.GetUInt32("appid"); set => Accessor.SetUInt32("appid", value); } - - - public uint Gameitemid - { get => Accessor.GetUInt32("gameitemid"); set => Accessor.SetUInt32("gameitemid", value); } - - - public IProtobufRepeatedFieldSubMessageType AssociatedWorkshopFiles - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "associated_workshop_files"); } - - - public IProtobufRepeatedFieldSubMessageType PartnerAccounts - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "partner_accounts"); } - - - public bool ValidateOnly - { get => Accessor.GetBool("validate_only"); set => Accessor.SetBool("validate_only", value); } - - - public bool MakeWorkshopFilesSubscribable - { get => Accessor.GetBool("make_workshop_files_subscribable"); set => Accessor.SetBool("make_workshop_files_subscribable", value); } - - - public CWorkshop_SetItemPaymentRules_Request_WorkshopDirectPaymentRule AssociatedWorkshopFileForDirectPayments - { get => new CWorkshop_SetItemPaymentRules_Request_WorkshopDirectPaymentRuleImpl(NativeNetMessages.GetNestedMessage(Address, "associated_workshop_file_for_direct_payments"), false); } - -} + public CWorkshop_SetItemPaymentRules_RequestImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Appid + { get => Accessor.GetUInt32("appid"); set => Accessor.SetUInt32("appid", value); } + public uint Gameitemid + { get => Accessor.GetUInt32("gameitemid"); set => Accessor.SetUInt32("gameitemid", value); } + public IProtobufRepeatedFieldSubMessageType AssociatedWorkshopFiles + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "associated_workshop_files"); } + public IProtobufRepeatedFieldSubMessageType PartnerAccounts + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "partner_accounts"); } + public bool ValidateOnly + { get => Accessor.GetBool("validate_only"); set => Accessor.SetBool("validate_only", value); } + public bool MakeWorkshopFilesSubscribable + { get => Accessor.GetBool("make_workshop_files_subscribable"); set => Accessor.SetBool("make_workshop_files_subscribable", value); } + public CWorkshop_SetItemPaymentRules_Request_WorkshopDirectPaymentRule AssociatedWorkshopFileForDirectPayments + { get => new CWorkshop_SetItemPaymentRules_Request_WorkshopDirectPaymentRuleImpl(NativeNetMessages.GetNestedMessage(Address, "associated_workshop_file_for_direct_payments"), false); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_SetItemPaymentRules_Request_PartnerItemPaymentRuleImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_SetItemPaymentRules_Request_PartnerItemPaymentRuleImpl.cs index fabfae447..c2aa78410 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_SetItemPaymentRules_Request_PartnerItemPaymentRuleImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_SetItemPaymentRules_Request_PartnerItemPaymentRuleImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CWorkshop_SetItemPaymentRules_Request_PartnerItemPaymentRuleImpl : TypedProtobuf, CWorkshop_SetItemPaymentRules_Request_PartnerItemPaymentRule { - public CWorkshop_SetItemPaymentRules_Request_PartnerItemPaymentRuleImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint AccountId - { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } - - - public float RevenuePercentage - { get => Accessor.GetFloat("revenue_percentage"); set => Accessor.SetFloat("revenue_percentage", value); } - - - public string RuleDescription - { get => Accessor.GetString("rule_description"); set => Accessor.SetString("rule_description", value); } - -} + public CWorkshop_SetItemPaymentRules_Request_PartnerItemPaymentRuleImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint AccountId + { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } + public float RevenuePercentage + { get => Accessor.GetFloat("revenue_percentage"); set => Accessor.SetFloat("revenue_percentage", value); } + public string RuleDescription + { get => Accessor.GetString("rule_description"); set => Accessor.SetString("rule_description", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_SetItemPaymentRules_Request_WorkshopDirectPaymentRuleImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_SetItemPaymentRules_Request_WorkshopDirectPaymentRuleImpl.cs index c6a447160..7168a88fa 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_SetItemPaymentRules_Request_WorkshopDirectPaymentRuleImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_SetItemPaymentRules_Request_WorkshopDirectPaymentRuleImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CWorkshop_SetItemPaymentRules_Request_WorkshopDirectPaymentRuleImpl : TypedProtobuf, CWorkshop_SetItemPaymentRules_Request_WorkshopDirectPaymentRule { - public CWorkshop_SetItemPaymentRules_Request_WorkshopDirectPaymentRuleImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong WorkshopFileId - { get => Accessor.GetUInt64("workshop_file_id"); set => Accessor.SetUInt64("workshop_file_id", value); } - - - public string RuleDescription - { get => Accessor.GetString("rule_description"); set => Accessor.SetString("rule_description", value); } - -} + public CWorkshop_SetItemPaymentRules_Request_WorkshopDirectPaymentRuleImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong WorkshopFileId + { get => Accessor.GetUInt64("workshop_file_id"); set => Accessor.SetUInt64("workshop_file_id", value); } + public string RuleDescription + { get => Accessor.GetString("rule_description"); set => Accessor.SetString("rule_description", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_SetItemPaymentRules_Request_WorkshopItemPaymentRuleImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_SetItemPaymentRules_Request_WorkshopItemPaymentRuleImpl.cs index b324760db..b366d84a9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_SetItemPaymentRules_Request_WorkshopItemPaymentRuleImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_SetItemPaymentRules_Request_WorkshopItemPaymentRuleImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CWorkshop_SetItemPaymentRules_Request_WorkshopItemPaymentRuleImpl : TypedProtobuf, CWorkshop_SetItemPaymentRules_Request_WorkshopItemPaymentRule { - public CWorkshop_SetItemPaymentRules_Request_WorkshopItemPaymentRuleImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong WorkshopFileId - { get => Accessor.GetUInt64("workshop_file_id"); set => Accessor.SetUInt64("workshop_file_id", value); } - - - public float RevenuePercentage - { get => Accessor.GetFloat("revenue_percentage"); set => Accessor.SetFloat("revenue_percentage", value); } - - - public string RuleDescription - { get => Accessor.GetString("rule_description"); set => Accessor.SetString("rule_description", value); } - - - public uint RuleType - { get => Accessor.GetUInt32("rule_type"); set => Accessor.SetUInt32("rule_type", value); } - -} + public CWorkshop_SetItemPaymentRules_Request_WorkshopItemPaymentRuleImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong WorkshopFileId + { get => Accessor.GetUInt64("workshop_file_id"); set => Accessor.SetUInt64("workshop_file_id", value); } + public float RevenuePercentage + { get => Accessor.GetFloat("revenue_percentage"); set => Accessor.SetFloat("revenue_percentage", value); } + public string RuleDescription + { get => Accessor.GetString("rule_description"); set => Accessor.SetString("rule_description", value); } + public uint RuleType + { get => Accessor.GetUInt32("rule_type"); set => Accessor.SetUInt32("rule_type", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_SetItemPaymentRules_ResponseImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_SetItemPaymentRules_ResponseImpl.cs index beb1aba79..b5565288c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_SetItemPaymentRules_ResponseImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/CWorkshop_SetItemPaymentRules_ResponseImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,9 +8,8 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class CWorkshop_SetItemPaymentRules_ResponseImpl : TypedProtobuf, CWorkshop_SetItemPaymentRules_Response { - public CWorkshop_SetItemPaymentRules_ResponseImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - + public CWorkshop_SetItemPaymentRules_ResponseImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/DataCenterPingImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/DataCenterPingImpl.cs index c23679c3a..e7830578c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/DataCenterPingImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/DataCenterPingImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class DataCenterPingImpl : TypedProtobuf, DataCenterPing { - public DataCenterPingImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint DataCenterId - { get => Accessor.GetUInt32("data_center_id"); set => Accessor.SetUInt32("data_center_id", value); } - - - public int Ping - { get => Accessor.GetInt32("ping"); set => Accessor.SetInt32("ping", value); } - -} + public DataCenterPingImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint DataCenterId + { get => Accessor.GetUInt32("data_center_id"); set => Accessor.SetUInt32("data_center_id", value); } + public int Ping + { get => Accessor.GetInt32("ping"); set => Accessor.SetInt32("ping", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/DeepPlayerMatchEventImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/DeepPlayerMatchEventImpl.cs index ef32ca8ac..cf80a0761 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/DeepPlayerMatchEventImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/DeepPlayerMatchEventImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,64 +8,36 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class DeepPlayerMatchEventImpl : TypedProtobuf, DeepPlayerMatchEvent { - public DeepPlayerMatchEventImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Accountid - { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } - - - public ulong MatchId - { get => Accessor.GetUInt64("match_id"); set => Accessor.SetUInt64("match_id", value); } - - - public uint EventId - { get => Accessor.GetUInt32("event_id"); set => Accessor.SetUInt32("event_id", value); } - - - public uint EventType - { get => Accessor.GetUInt32("event_type"); set => Accessor.SetUInt32("event_type", value); } - - - public bool BPlayingCt - { get => Accessor.GetBool("b_playing_ct"); set => Accessor.SetBool("b_playing_ct", value); } - - - public int UserPosX - { get => Accessor.GetInt32("user_pos_x"); set => Accessor.SetInt32("user_pos_x", value); } - - - public int UserPosY - { get => Accessor.GetInt32("user_pos_y"); set => Accessor.SetInt32("user_pos_y", value); } - - - public int UserPosZ - { get => Accessor.GetInt32("user_pos_z"); set => Accessor.SetInt32("user_pos_z", value); } - - - public uint UserDefidx - { get => Accessor.GetUInt32("user_defidx"); set => Accessor.SetUInt32("user_defidx", value); } - - - public int OtherPosX - { get => Accessor.GetInt32("other_pos_x"); set => Accessor.SetInt32("other_pos_x", value); } - - - public int OtherPosY - { get => Accessor.GetInt32("other_pos_y"); set => Accessor.SetInt32("other_pos_y", value); } - - - public int OtherPosZ - { get => Accessor.GetInt32("other_pos_z"); set => Accessor.SetInt32("other_pos_z", value); } - - - public uint OtherDefidx - { get => Accessor.GetUInt32("other_defidx"); set => Accessor.SetUInt32("other_defidx", value); } - - - public int EventData - { get => Accessor.GetInt32("event_data"); set => Accessor.SetInt32("event_data", value); } - -} + public DeepPlayerMatchEventImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Accountid + { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } + public ulong MatchId + { get => Accessor.GetUInt64("match_id"); set => Accessor.SetUInt64("match_id", value); } + public uint EventId + { get => Accessor.GetUInt32("event_id"); set => Accessor.SetUInt32("event_id", value); } + public uint EventType + { get => Accessor.GetUInt32("event_type"); set => Accessor.SetUInt32("event_type", value); } + public bool BPlayingCt + { get => Accessor.GetBool("b_playing_ct"); set => Accessor.SetBool("b_playing_ct", value); } + public int UserPosX + { get => Accessor.GetInt32("user_pos_x"); set => Accessor.SetInt32("user_pos_x", value); } + public int UserPosY + { get => Accessor.GetInt32("user_pos_y"); set => Accessor.SetInt32("user_pos_y", value); } + public int UserPosZ + { get => Accessor.GetInt32("user_pos_z"); set => Accessor.SetInt32("user_pos_z", value); } + public uint UserDefidx + { get => Accessor.GetUInt32("user_defidx"); set => Accessor.SetUInt32("user_defidx", value); } + public int OtherPosX + { get => Accessor.GetInt32("other_pos_x"); set => Accessor.SetInt32("other_pos_x", value); } + public int OtherPosY + { get => Accessor.GetInt32("other_pos_y"); set => Accessor.SetInt32("other_pos_y", value); } + public int OtherPosZ + { get => Accessor.GetInt32("other_pos_z"); set => Accessor.SetInt32("other_pos_z", value); } + public uint OtherDefidx + { get => Accessor.GetUInt32("other_defidx"); set => Accessor.SetUInt32("other_defidx", value); } + public int EventData + { get => Accessor.GetInt32("event_data"); set => Accessor.SetInt32("event_data", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/DeepPlayerStatsEntryImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/DeepPlayerStatsEntryImpl.cs index 86900094b..1c9091d45 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/DeepPlayerStatsEntryImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/DeepPlayerStatsEntryImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,120 +8,64 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class DeepPlayerStatsEntryImpl : TypedProtobuf, DeepPlayerStatsEntry { - public DeepPlayerStatsEntryImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Accountid - { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } - - - public ulong MatchId - { get => Accessor.GetUInt64("match_id"); set => Accessor.SetUInt64("match_id", value); } - - - public uint MmGameMode - { get => Accessor.GetUInt32("mm_game_mode"); set => Accessor.SetUInt32("mm_game_mode", value); } - - - public uint Mapid - { get => Accessor.GetUInt32("mapid"); set => Accessor.SetUInt32("mapid", value); } - - - public bool BStartingCt - { get => Accessor.GetBool("b_starting_ct"); set => Accessor.SetBool("b_starting_ct", value); } - - - public uint MatchOutcome - { get => Accessor.GetUInt32("match_outcome"); set => Accessor.SetUInt32("match_outcome", value); } - - - public uint RoundsWon - { get => Accessor.GetUInt32("rounds_won"); set => Accessor.SetUInt32("rounds_won", value); } - - - public uint RoundsLost - { get => Accessor.GetUInt32("rounds_lost"); set => Accessor.SetUInt32("rounds_lost", value); } - - - public uint StatScore - { get => Accessor.GetUInt32("stat_score"); set => Accessor.SetUInt32("stat_score", value); } - - - public uint StatDeaths - { get => Accessor.GetUInt32("stat_deaths"); set => Accessor.SetUInt32("stat_deaths", value); } - - - public uint StatMvps - { get => Accessor.GetUInt32("stat_mvps"); set => Accessor.SetUInt32("stat_mvps", value); } - - - public uint EnemyKills - { get => Accessor.GetUInt32("enemy_kills"); set => Accessor.SetUInt32("enemy_kills", value); } - - - public uint EnemyHeadshots - { get => Accessor.GetUInt32("enemy_headshots"); set => Accessor.SetUInt32("enemy_headshots", value); } - - - public uint Enemy2ks - { get => Accessor.GetUInt32("enemy_2ks"); set => Accessor.SetUInt32("enemy_2ks", value); } - - - public uint Enemy3ks - { get => Accessor.GetUInt32("enemy_3ks"); set => Accessor.SetUInt32("enemy_3ks", value); } - - - public uint Enemy4ks - { get => Accessor.GetUInt32("enemy_4ks"); set => Accessor.SetUInt32("enemy_4ks", value); } - - - public uint TotalDamage - { get => Accessor.GetUInt32("total_damage"); set => Accessor.SetUInt32("total_damage", value); } - - - public uint EngagementsEntryCount - { get => Accessor.GetUInt32("engagements_entry_count"); set => Accessor.SetUInt32("engagements_entry_count", value); } - - - public uint EngagementsEntryWins - { get => Accessor.GetUInt32("engagements_entry_wins"); set => Accessor.SetUInt32("engagements_entry_wins", value); } - - - public uint Engagements1v1Count - { get => Accessor.GetUInt32("engagements_1v1_count"); set => Accessor.SetUInt32("engagements_1v1_count", value); } - - - public uint Engagements1v1Wins - { get => Accessor.GetUInt32("engagements_1v1_wins"); set => Accessor.SetUInt32("engagements_1v1_wins", value); } - - - public uint Engagements1v2Count - { get => Accessor.GetUInt32("engagements_1v2_count"); set => Accessor.SetUInt32("engagements_1v2_count", value); } - - - public uint Engagements1v2Wins - { get => Accessor.GetUInt32("engagements_1v2_wins"); set => Accessor.SetUInt32("engagements_1v2_wins", value); } - - - public uint UtilityCount - { get => Accessor.GetUInt32("utility_count"); set => Accessor.SetUInt32("utility_count", value); } - - - public uint UtilitySuccess - { get => Accessor.GetUInt32("utility_success"); set => Accessor.SetUInt32("utility_success", value); } - - - public uint FlashCount - { get => Accessor.GetUInt32("flash_count"); set => Accessor.SetUInt32("flash_count", value); } - - - public uint FlashSuccess - { get => Accessor.GetUInt32("flash_success"); set => Accessor.SetUInt32("flash_success", value); } - - - public IProtobufRepeatedFieldValueType Mates - { get => new ProtobufRepeatedFieldValueType(Accessor, "mates"); } - -} + public DeepPlayerStatsEntryImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Accountid + { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } + public ulong MatchId + { get => Accessor.GetUInt64("match_id"); set => Accessor.SetUInt64("match_id", value); } + public uint MmGameMode + { get => Accessor.GetUInt32("mm_game_mode"); set => Accessor.SetUInt32("mm_game_mode", value); } + public uint Mapid + { get => Accessor.GetUInt32("mapid"); set => Accessor.SetUInt32("mapid", value); } + public bool BStartingCt + { get => Accessor.GetBool("b_starting_ct"); set => Accessor.SetBool("b_starting_ct", value); } + public uint MatchOutcome + { get => Accessor.GetUInt32("match_outcome"); set => Accessor.SetUInt32("match_outcome", value); } + public uint RoundsWon + { get => Accessor.GetUInt32("rounds_won"); set => Accessor.SetUInt32("rounds_won", value); } + public uint RoundsLost + { get => Accessor.GetUInt32("rounds_lost"); set => Accessor.SetUInt32("rounds_lost", value); } + public uint StatScore + { get => Accessor.GetUInt32("stat_score"); set => Accessor.SetUInt32("stat_score", value); } + public uint StatDeaths + { get => Accessor.GetUInt32("stat_deaths"); set => Accessor.SetUInt32("stat_deaths", value); } + public uint StatMvps + { get => Accessor.GetUInt32("stat_mvps"); set => Accessor.SetUInt32("stat_mvps", value); } + public uint EnemyKills + { get => Accessor.GetUInt32("enemy_kills"); set => Accessor.SetUInt32("enemy_kills", value); } + public uint EnemyHeadshots + { get => Accessor.GetUInt32("enemy_headshots"); set => Accessor.SetUInt32("enemy_headshots", value); } + public uint Enemy2ks + { get => Accessor.GetUInt32("enemy_2ks"); set => Accessor.SetUInt32("enemy_2ks", value); } + public uint Enemy3ks + { get => Accessor.GetUInt32("enemy_3ks"); set => Accessor.SetUInt32("enemy_3ks", value); } + public uint Enemy4ks + { get => Accessor.GetUInt32("enemy_4ks"); set => Accessor.SetUInt32("enemy_4ks", value); } + public uint TotalDamage + { get => Accessor.GetUInt32("total_damage"); set => Accessor.SetUInt32("total_damage", value); } + public uint EngagementsEntryCount + { get => Accessor.GetUInt32("engagements_entry_count"); set => Accessor.SetUInt32("engagements_entry_count", value); } + public uint EngagementsEntryWins + { get => Accessor.GetUInt32("engagements_entry_wins"); set => Accessor.SetUInt32("engagements_entry_wins", value); } + public uint Engagements1v1Count + { get => Accessor.GetUInt32("engagements_1v1_count"); set => Accessor.SetUInt32("engagements_1v1_count", value); } + public uint Engagements1v1Wins + { get => Accessor.GetUInt32("engagements_1v1_wins"); set => Accessor.SetUInt32("engagements_1v1_wins", value); } + public uint Engagements1v2Count + { get => Accessor.GetUInt32("engagements_1v2_count"); set => Accessor.SetUInt32("engagements_1v2_count", value); } + public uint Engagements1v2Wins + { get => Accessor.GetUInt32("engagements_1v2_wins"); set => Accessor.SetUInt32("engagements_1v2_wins", value); } + public uint UtilityCount + { get => Accessor.GetUInt32("utility_count"); set => Accessor.SetUInt32("utility_count", value); } + public uint UtilitySuccess + { get => Accessor.GetUInt32("utility_success"); set => Accessor.SetUInt32("utility_success", value); } + public uint FlashCount + { get => Accessor.GetUInt32("flash_count"); set => Accessor.SetUInt32("flash_count", value); } + public uint FlashSuccess + { get => Accessor.GetUInt32("flash_success"); set => Accessor.SetUInt32("flash_success", value); } + public IProtobufRepeatedFieldValueType Mates + { get => new ProtobufRepeatedFieldValueType(Accessor, "mates"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/DetailedSearchStatisticImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/DetailedSearchStatisticImpl.cs index 7b6ba17dc..92d064a69 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/DetailedSearchStatisticImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/DetailedSearchStatisticImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class DetailedSearchStatisticImpl : TypedProtobuf, DetailedSearchStatistic { - public DetailedSearchStatisticImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint GameType - { get => Accessor.GetUInt32("game_type"); set => Accessor.SetUInt32("game_type", value); } - - - public uint SearchTimeAvg - { get => Accessor.GetUInt32("search_time_avg"); set => Accessor.SetUInt32("search_time_avg", value); } - - - public uint PlayersSearching - { get => Accessor.GetUInt32("players_searching"); set => Accessor.SetUInt32("players_searching", value); } - -} + public DetailedSearchStatisticImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint GameType + { get => Accessor.GetUInt32("game_type"); set => Accessor.SetUInt32("game_type", value); } + public uint SearchTimeAvg + { get => Accessor.GetUInt32("search_time_avg"); set => Accessor.SetUInt32("search_time_avg", value); } + public uint PlayersSearching + { get => Accessor.GetUInt32("players_searching"); set => Accessor.SetUInt32("players_searching", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/GameServerPingImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/GameServerPingImpl.cs index a769e4670..1a6b992c1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/GameServerPingImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/GameServerPingImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class GameServerPingImpl : TypedProtobuf, GameServerPing { - public GameServerPingImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Ping - { get => Accessor.GetInt32("ping"); set => Accessor.SetInt32("ping", value); } - - - public uint Ip - { get => Accessor.GetUInt32("ip"); set => Accessor.SetUInt32("ip", value); } - - - public uint Instances - { get => Accessor.GetUInt32("instances"); set => Accessor.SetUInt32("instances", value); } - -} + public GameServerPingImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Ping + { get => Accessor.GetInt32("ping"); set => Accessor.SetInt32("ping", value); } + public uint Ip + { get => Accessor.GetUInt32("ip"); set => Accessor.SetUInt32("ip", value); } + public uint Instances + { get => Accessor.GetUInt32("instances"); set => Accessor.SetUInt32("instances", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/GlobalStatisticsImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/GlobalStatisticsImpl.cs index 71f32773b..491f72e78 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/GlobalStatisticsImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/GlobalStatisticsImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,68 +8,38 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class GlobalStatisticsImpl : TypedProtobuf, GlobalStatistics { - public GlobalStatisticsImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint PlayersOnline - { get => Accessor.GetUInt32("players_online"); set => Accessor.SetUInt32("players_online", value); } - - - public uint ServersOnline - { get => Accessor.GetUInt32("servers_online"); set => Accessor.SetUInt32("servers_online", value); } - - - public uint PlayersSearching - { get => Accessor.GetUInt32("players_searching"); set => Accessor.SetUInt32("players_searching", value); } - - - public uint ServersAvailable - { get => Accessor.GetUInt32("servers_available"); set => Accessor.SetUInt32("servers_available", value); } - - - public uint OngoingMatches - { get => Accessor.GetUInt32("ongoing_matches"); set => Accessor.SetUInt32("ongoing_matches", value); } - - - public uint SearchTimeAvg - { get => Accessor.GetUInt32("search_time_avg"); set => Accessor.SetUInt32("search_time_avg", value); } - - - public IProtobufRepeatedFieldSubMessageType SearchStatistics - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "search_statistics"); } - - - public string MainPostUrl - { get => Accessor.GetString("main_post_url"); set => Accessor.SetString("main_post_url", value); } - - - public uint RequiredAppidVersion - { get => Accessor.GetUInt32("required_appid_version"); set => Accessor.SetUInt32("required_appid_version", value); } - - - public uint PricesheetVersion - { get => Accessor.GetUInt32("pricesheet_version"); set => Accessor.SetUInt32("pricesheet_version", value); } - - - public uint TwitchStreamsVersion - { get => Accessor.GetUInt32("twitch_streams_version"); set => Accessor.SetUInt32("twitch_streams_version", value); } - - - public uint ActiveTournamentEventid - { get => Accessor.GetUInt32("active_tournament_eventid"); set => Accessor.SetUInt32("active_tournament_eventid", value); } - - - public uint ActiveSurveyId - { get => Accessor.GetUInt32("active_survey_id"); set => Accessor.SetUInt32("active_survey_id", value); } - - - public uint Rtime32Cur - { get => Accessor.GetUInt32("rtime32_cur"); set => Accessor.SetUInt32("rtime32_cur", value); } - - - public uint RequiredAppidVersion2 - { get => Accessor.GetUInt32("required_appid_version2"); set => Accessor.SetUInt32("required_appid_version2", value); } - -} + public GlobalStatisticsImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint PlayersOnline + { get => Accessor.GetUInt32("players_online"); set => Accessor.SetUInt32("players_online", value); } + public uint ServersOnline + { get => Accessor.GetUInt32("servers_online"); set => Accessor.SetUInt32("servers_online", value); } + public uint PlayersSearching + { get => Accessor.GetUInt32("players_searching"); set => Accessor.SetUInt32("players_searching", value); } + public uint ServersAvailable + { get => Accessor.GetUInt32("servers_available"); set => Accessor.SetUInt32("servers_available", value); } + public uint OngoingMatches + { get => Accessor.GetUInt32("ongoing_matches"); set => Accessor.SetUInt32("ongoing_matches", value); } + public uint SearchTimeAvg + { get => Accessor.GetUInt32("search_time_avg"); set => Accessor.SetUInt32("search_time_avg", value); } + public IProtobufRepeatedFieldSubMessageType SearchStatistics + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "search_statistics"); } + public string MainPostUrl + { get => Accessor.GetString("main_post_url"); set => Accessor.SetString("main_post_url", value); } + public uint RequiredAppidVersion + { get => Accessor.GetUInt32("required_appid_version"); set => Accessor.SetUInt32("required_appid_version", value); } + public uint PricesheetVersion + { get => Accessor.GetUInt32("pricesheet_version"); set => Accessor.SetUInt32("pricesheet_version", value); } + public uint TwitchStreamsVersion + { get => Accessor.GetUInt32("twitch_streams_version"); set => Accessor.SetUInt32("twitch_streams_version", value); } + public uint ActiveTournamentEventid + { get => Accessor.GetUInt32("active_tournament_eventid"); set => Accessor.SetUInt32("active_tournament_eventid", value); } + public uint ActiveSurveyId + { get => Accessor.GetUInt32("active_survey_id"); set => Accessor.SetUInt32("active_survey_id", value); } + public uint Rtime32Cur + { get => Accessor.GetUInt32("rtime32_cur"); set => Accessor.SetUInt32("rtime32_cur", value); } + public uint RequiredAppidVersion2 + { get => Accessor.GetUInt32("required_appid_version2"); set => Accessor.SetUInt32("required_appid_version2", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/IpAddressMaskImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/IpAddressMaskImpl.cs index 2a9d614ff..5ecb456ce 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/IpAddressMaskImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/IpAddressMaskImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,32 +8,20 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class IpAddressMaskImpl : TypedProtobuf, IpAddressMask { - public IpAddressMaskImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint A - { get => Accessor.GetUInt32("a"); set => Accessor.SetUInt32("a", value); } - - - public uint B - { get => Accessor.GetUInt32("b"); set => Accessor.SetUInt32("b", value); } - - - public uint C - { get => Accessor.GetUInt32("c"); set => Accessor.SetUInt32("c", value); } - - - public uint D - { get => Accessor.GetUInt32("d"); set => Accessor.SetUInt32("d", value); } - - - public uint Bits - { get => Accessor.GetUInt32("bits"); set => Accessor.SetUInt32("bits", value); } - - - public uint Token - { get => Accessor.GetUInt32("token"); set => Accessor.SetUInt32("token", value); } - -} + public IpAddressMaskImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint A + { get => Accessor.GetUInt32("a"); set => Accessor.SetUInt32("a", value); } + public uint B + { get => Accessor.GetUInt32("b"); set => Accessor.SetUInt32("b", value); } + public uint C + { get => Accessor.GetUInt32("c"); set => Accessor.SetUInt32("c", value); } + public uint D + { get => Accessor.GetUInt32("d"); set => Accessor.SetUInt32("d", value); } + public uint Bits + { get => Accessor.GetUInt32("bits"); set => Accessor.SetUInt32("bits", value); } + public uint Token + { get => Accessor.GetUInt32("token"); set => Accessor.SetUInt32("token", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLDemoHeaderImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLDemoHeaderImpl.cs index d4b192f8b..44de7886a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLDemoHeaderImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLDemoHeaderImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class MLDemoHeaderImpl : TypedProtobuf, MLDemoHeader { - public MLDemoHeaderImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string MapName - { get => Accessor.GetString("map_name"); set => Accessor.SetString("map_name", value); } - - - public int TickRate - { get => Accessor.GetInt32("tick_rate"); set => Accessor.SetInt32("tick_rate", value); } - - - public uint Version - { get => Accessor.GetUInt32("version"); set => Accessor.SetUInt32("version", value); } - - - public uint SteamUniverse - { get => Accessor.GetUInt32("steam_universe"); set => Accessor.SetUInt32("steam_universe", value); } - -} + public MLDemoHeaderImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string MapName + { get => Accessor.GetString("map_name"); set => Accessor.SetString("map_name", value); } + public int TickRate + { get => Accessor.GetInt32("tick_rate"); set => Accessor.SetInt32("tick_rate", value); } + public uint Version + { get => Accessor.GetUInt32("version"); set => Accessor.SetUInt32("version", value); } + public uint SteamUniverse + { get => Accessor.GetUInt32("steam_universe"); set => Accessor.SetUInt32("steam_universe", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLDictImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLDictImpl.cs index 43b195c1c..1f43f28ac 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLDictImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLDictImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class MLDictImpl : TypedProtobuf, MLDict { - public MLDictImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string Key - { get => Accessor.GetString("key"); set => Accessor.SetString("key", value); } - - - public string ValString - { get => Accessor.GetString("val_string"); set => Accessor.SetString("val_string", value); } - - - public int ValInt - { get => Accessor.GetInt32("val_int"); set => Accessor.SetInt32("val_int", value); } - - - public float ValFloat - { get => Accessor.GetFloat("val_float"); set => Accessor.SetFloat("val_float", value); } - -} + public MLDictImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string Key + { get => Accessor.GetString("key"); set => Accessor.SetString("key", value); } + public string ValString + { get => Accessor.GetString("val_string"); set => Accessor.SetString("val_string", value); } + public int ValInt + { get => Accessor.GetInt32("val_int"); set => Accessor.SetInt32("val_int", value); } + public float ValFloat + { get => Accessor.GetFloat("val_float"); set => Accessor.SetFloat("val_float", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLEventImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLEventImpl.cs index e9514530d..12f6e05c2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLEventImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLEventImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class MLEventImpl : TypedProtobuf, MLEvent { - public MLEventImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string EventName - { get => Accessor.GetString("event_name"); set => Accessor.SetString("event_name", value); } - - - public IProtobufRepeatedFieldSubMessageType Data - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "data"); } - -} + public MLEventImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string EventName + { get => Accessor.GetString("event_name"); set => Accessor.SetString("event_name", value); } + public IProtobufRepeatedFieldSubMessageType Data + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "data"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLGameStateImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLGameStateImpl.cs index cfae703b4..1133bf6fe 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLGameStateImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLGameStateImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class MLGameStateImpl : TypedProtobuf, MLGameState { - public MLGameStateImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public MLMatchState Match - { get => new MLMatchStateImpl(NativeNetMessages.GetNestedMessage(Address, "match"), false); } - - - public MLRoundState Round - { get => new MLRoundStateImpl(NativeNetMessages.GetNestedMessage(Address, "round"), false); } - - - public IProtobufRepeatedFieldSubMessageType Players - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "players"); } - -} + public MLGameStateImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public MLMatchState Match + { get => new MLMatchStateImpl(NativeNetMessages.GetNestedMessage(Address, "match"), false); } + public MLRoundState Round + { get => new MLRoundStateImpl(NativeNetMessages.GetNestedMessage(Address, "round"), false); } + public IProtobufRepeatedFieldSubMessageType Players + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "players"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLMatchStateImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLMatchStateImpl.cs index 31801e835..76bacbfe1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLMatchStateImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLMatchStateImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class MLMatchStateImpl : TypedProtobuf, MLMatchState { - public MLMatchStateImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string GameMode - { get => Accessor.GetString("game_mode"); set => Accessor.SetString("game_mode", value); } - - - public string Phase - { get => Accessor.GetString("phase"); set => Accessor.SetString("phase", value); } - - - public int Round - { get => Accessor.GetInt32("round"); set => Accessor.SetInt32("round", value); } - - - public int ScoreCt - { get => Accessor.GetInt32("score_ct"); set => Accessor.SetInt32("score_ct", value); } - - - public int ScoreT - { get => Accessor.GetInt32("score_t"); set => Accessor.SetInt32("score_t", value); } - -} + public MLMatchStateImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string GameMode + { get => Accessor.GetString("game_mode"); set => Accessor.SetString("game_mode", value); } + public string Phase + { get => Accessor.GetString("phase"); set => Accessor.SetString("phase", value); } + public int Round + { get => Accessor.GetInt32("round"); set => Accessor.SetInt32("round", value); } + public int ScoreCt + { get => Accessor.GetInt32("score_ct"); set => Accessor.SetInt32("score_ct", value); } + public int ScoreT + { get => Accessor.GetInt32("score_t"); set => Accessor.SetInt32("score_t", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLPlayerStateImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLPlayerStateImpl.cs index bc7750705..5277e250c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLPlayerStateImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLPlayerStateImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,88 +8,48 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class MLPlayerStateImpl : TypedProtobuf, MLPlayerState { - public MLPlayerStateImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int AccountId - { get => Accessor.GetInt32("account_id"); set => Accessor.SetInt32("account_id", value); } - - - public int PlayerSlot - { get => Accessor.GetInt32("player_slot"); set => Accessor.SetInt32("player_slot", value); } - - - public int Entindex - { get => Accessor.GetInt32("entindex"); set => Accessor.SetInt32("entindex", value); } - - - public string Name - { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } - - - public string Clan - { get => Accessor.GetString("clan"); set => Accessor.SetString("clan", value); } - - - public ETeam Team - { get => (ETeam)Accessor.GetInt32("team"); set => Accessor.SetInt32("team", (int)value); } - - - public Vector Abspos - { get => Accessor.GetVector("abspos"); set => Accessor.SetVector("abspos", value); } - - - public QAngle Eyeangle - { get => Accessor.GetQAngle("eyeangle"); set => Accessor.SetQAngle("eyeangle", value); } - - - public Vector EyeangleFwd - { get => Accessor.GetVector("eyeangle_fwd"); set => Accessor.SetVector("eyeangle_fwd", value); } - - - public int Health - { get => Accessor.GetInt32("health"); set => Accessor.SetInt32("health", value); } - - - public int Armor - { get => Accessor.GetInt32("armor"); set => Accessor.SetInt32("armor", value); } - - - public float Flashed - { get => Accessor.GetFloat("flashed"); set => Accessor.SetFloat("flashed", value); } - - - public float Smoked - { get => Accessor.GetFloat("smoked"); set => Accessor.SetFloat("smoked", value); } - - - public int Money - { get => Accessor.GetInt32("money"); set => Accessor.SetInt32("money", value); } - - - public int RoundKills - { get => Accessor.GetInt32("round_kills"); set => Accessor.SetInt32("round_kills", value); } - - - public int RoundKillhs - { get => Accessor.GetInt32("round_killhs"); set => Accessor.SetInt32("round_killhs", value); } - - - public float Burning - { get => Accessor.GetFloat("burning"); set => Accessor.SetFloat("burning", value); } - - - public bool Helmet - { get => Accessor.GetBool("helmet"); set => Accessor.SetBool("helmet", value); } - - - public bool DefuseKit - { get => Accessor.GetBool("defuse_kit"); set => Accessor.SetBool("defuse_kit", value); } - - - public IProtobufRepeatedFieldSubMessageType Weapons - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "weapons"); } - -} + public MLPlayerStateImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int AccountId + { get => Accessor.GetInt32("account_id"); set => Accessor.SetInt32("account_id", value); } + public int PlayerSlot + { get => Accessor.GetInt32("player_slot"); set => Accessor.SetInt32("player_slot", value); } + public int Entindex + { get => Accessor.GetInt32("entindex"); set => Accessor.SetInt32("entindex", value); } + public string Name + { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } + public string Clan + { get => Accessor.GetString("clan"); set => Accessor.SetString("clan", value); } + public ETeam Team + { get => (ETeam)Accessor.GetInt32("team"); set => Accessor.SetInt32("team", (int)value); } + public Vector Abspos + { get => Accessor.GetVector("abspos"); set => Accessor.SetVector("abspos", value); } + public QAngle Eyeangle + { get => Accessor.GetQAngle("eyeangle"); set => Accessor.SetQAngle("eyeangle", value); } + public Vector EyeangleFwd + { get => Accessor.GetVector("eyeangle_fwd"); set => Accessor.SetVector("eyeangle_fwd", value); } + public int Health + { get => Accessor.GetInt32("health"); set => Accessor.SetInt32("health", value); } + public int Armor + { get => Accessor.GetInt32("armor"); set => Accessor.SetInt32("armor", value); } + public float Flashed + { get => Accessor.GetFloat("flashed"); set => Accessor.SetFloat("flashed", value); } + public float Smoked + { get => Accessor.GetFloat("smoked"); set => Accessor.SetFloat("smoked", value); } + public int Money + { get => Accessor.GetInt32("money"); set => Accessor.SetInt32("money", value); } + public int RoundKills + { get => Accessor.GetInt32("round_kills"); set => Accessor.SetInt32("round_kills", value); } + public int RoundKillhs + { get => Accessor.GetInt32("round_killhs"); set => Accessor.SetInt32("round_killhs", value); } + public float Burning + { get => Accessor.GetFloat("burning"); set => Accessor.SetFloat("burning", value); } + public bool Helmet + { get => Accessor.GetBool("helmet"); set => Accessor.SetBool("helmet", value); } + public bool DefuseKit + { get => Accessor.GetBool("defuse_kit"); set => Accessor.SetBool("defuse_kit", value); } + public IProtobufRepeatedFieldSubMessageType Weapons + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "weapons"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLRoundStateImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLRoundStateImpl.cs index 34972d20a..9e761ec3d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLRoundStateImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLRoundStateImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class MLRoundStateImpl : TypedProtobuf, MLRoundState { - public MLRoundStateImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string Phase - { get => Accessor.GetString("phase"); set => Accessor.SetString("phase", value); } - - - public ETeam WinTeam - { get => (ETeam)Accessor.GetInt32("win_team"); set => Accessor.SetInt32("win_team", (int)value); } - - - public string BombState - { get => Accessor.GetString("bomb_state"); set => Accessor.SetString("bomb_state", value); } - -} + public MLRoundStateImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string Phase + { get => Accessor.GetString("phase"); set => Accessor.SetString("phase", value); } + public ETeam WinTeam + { get => (ETeam)Accessor.GetInt32("win_team"); set => Accessor.SetInt32("win_team", (int)value); } + public string BombState + { get => Accessor.GetString("bomb_state"); set => Accessor.SetString("bomb_state", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLTickImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLTickImpl.cs index f5f0e85ad..3ea131026 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLTickImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLTickImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class MLTickImpl : TypedProtobuf, MLTick { - public MLTickImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int TickCount - { get => Accessor.GetInt32("tick_count"); set => Accessor.SetInt32("tick_count", value); } - - - public MLGameState State - { get => new MLGameStateImpl(NativeNetMessages.GetNestedMessage(Address, "state"), false); } - - - public IProtobufRepeatedFieldSubMessageType Events - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "events"); } - -} + public MLTickImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int TickCount + { get => Accessor.GetInt32("tick_count"); set => Accessor.SetInt32("tick_count", value); } + public MLGameState State + { get => new MLGameStateImpl(NativeNetMessages.GetNestedMessage(Address, "state"), false); } + public IProtobufRepeatedFieldSubMessageType Events + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "events"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLWeaponStateImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLWeaponStateImpl.cs index 55454fc5c..8f703d858 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLWeaponStateImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MLWeaponStateImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,40 +8,24 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class MLWeaponStateImpl : TypedProtobuf, MLWeaponState { - public MLWeaponStateImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Index - { get => Accessor.GetInt32("index"); set => Accessor.SetInt32("index", value); } - - - public string Name - { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } - - - public EWeaponType Type - { get => (EWeaponType)Accessor.GetInt32("type"); set => Accessor.SetInt32("type", (int)value); } - - - public int AmmoClip - { get => Accessor.GetInt32("ammo_clip"); set => Accessor.SetInt32("ammo_clip", value); } - - - public int AmmoClipMax - { get => Accessor.GetInt32("ammo_clip_max"); set => Accessor.SetInt32("ammo_clip_max", value); } - - - public int AmmoReserve - { get => Accessor.GetInt32("ammo_reserve"); set => Accessor.SetInt32("ammo_reserve", value); } - - - public string State - { get => Accessor.GetString("state"); set => Accessor.SetString("state", value); } - - - public float RecoilIndex - { get => Accessor.GetFloat("recoil_index"); set => Accessor.SetFloat("recoil_index", value); } - -} + public MLWeaponStateImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Index + { get => Accessor.GetInt32("index"); set => Accessor.SetInt32("index", value); } + public string Name + { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } + public EWeaponType Type + { get => (EWeaponType)Accessor.GetInt32("type"); set => Accessor.SetInt32("type", (int)value); } + public int AmmoClip + { get => Accessor.GetInt32("ammo_clip"); set => Accessor.SetInt32("ammo_clip", value); } + public int AmmoClipMax + { get => Accessor.GetInt32("ammo_clip_max"); set => Accessor.SetInt32("ammo_clip_max", value); } + public int AmmoReserve + { get => Accessor.GetInt32("ammo_reserve"); set => Accessor.SetInt32("ammo_reserve", value); } + public string State + { get => Accessor.GetString("state"); set => Accessor.SetString("state", value); } + public float RecoilIndex + { get => Accessor.GetFloat("recoil_index"); set => Accessor.SetFloat("recoil_index", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MatchEndItemUpdatesImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MatchEndItemUpdatesImpl.cs index 77207a651..3a6f9ddc9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MatchEndItemUpdatesImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/MatchEndItemUpdatesImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class MatchEndItemUpdatesImpl : TypedProtobuf, MatchEndItemUpdates { - public MatchEndItemUpdatesImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong ItemId - { get => Accessor.GetUInt64("item_id"); set => Accessor.SetUInt64("item_id", value); } - - - public uint ItemAttrDefidx - { get => Accessor.GetUInt32("item_attr_defidx"); set => Accessor.SetUInt32("item_attr_defidx", value); } - - - public uint ItemAttrDeltaValue - { get => Accessor.GetUInt32("item_attr_delta_value"); set => Accessor.SetUInt32("item_attr_delta_value", value); } - -} + public MatchEndItemUpdatesImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong ItemId + { get => Accessor.GetUInt64("item_id"); set => Accessor.SetUInt64("item_id", value); } + public uint ItemAttrDefidx + { get => Accessor.GetUInt32("item_attr_defidx"); set => Accessor.SetUInt32("item_attr_defidx", value); } + public uint ItemAttrDeltaValue + { get => Accessor.GetUInt32("item_attr_delta_value"); set => Accessor.SetUInt32("item_attr_delta_value", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/NetMessageConnectionClosedImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/NetMessageConnectionClosedImpl.cs index 228aad638..9d2b07550 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/NetMessageConnectionClosedImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/NetMessageConnectionClosedImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class NetMessageConnectionClosedImpl : TypedProtobuf, NetMessageConnectionClosed { - public NetMessageConnectionClosedImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Reason - { get => Accessor.GetUInt32("reason"); set => Accessor.SetUInt32("reason", value); } - - - public string Message - { get => Accessor.GetString("message"); set => Accessor.SetString("message", value); } - -} + public NetMessageConnectionClosedImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Reason + { get => Accessor.GetUInt32("reason"); set => Accessor.SetUInt32("reason", value); } + public string Message + { get => Accessor.GetString("message"); set => Accessor.SetString("message", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/NetMessageConnectionCrashedImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/NetMessageConnectionCrashedImpl.cs index 5bed0172c..40863a87b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/NetMessageConnectionCrashedImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/NetMessageConnectionCrashedImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class NetMessageConnectionCrashedImpl : TypedProtobuf, NetMessageConnectionCrashed { - public NetMessageConnectionCrashedImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Reason - { get => Accessor.GetUInt32("reason"); set => Accessor.SetUInt32("reason", value); } - - - public string Message - { get => Accessor.GetString("message"); set => Accessor.SetString("message", value); } - -} + public NetMessageConnectionCrashedImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Reason + { get => Accessor.GetUInt32("reason"); set => Accessor.SetUInt32("reason", value); } + public string Message + { get => Accessor.GetString("message"); set => Accessor.SetString("message", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/NetMessagePacketEndImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/NetMessagePacketEndImpl.cs index 3e746a19c..0004bdefb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/NetMessagePacketEndImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/NetMessagePacketEndImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,9 +8,8 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class NetMessagePacketEndImpl : TypedProtobuf, NetMessagePacketEnd { - public NetMessagePacketEndImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - + public NetMessagePacketEndImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/NetMessagePacketStartImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/NetMessagePacketStartImpl.cs index 163d40aad..c1a95424c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/NetMessagePacketStartImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/NetMessagePacketStartImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,9 +8,8 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class NetMessagePacketStartImpl : TypedProtobuf, NetMessagePacketStart { - public NetMessagePacketStartImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - + public NetMessagePacketStartImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/NetMessageSplitscreenUserChangedImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/NetMessageSplitscreenUserChangedImpl.cs index 65a13e59e..0703a3920 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/NetMessageSplitscreenUserChangedImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/NetMessageSplitscreenUserChangedImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,12 +8,10 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class NetMessageSplitscreenUserChangedImpl : TypedProtobuf, NetMessageSplitscreenUserChanged { - public NetMessageSplitscreenUserChangedImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Slot - { get => Accessor.GetUInt32("slot"); set => Accessor.SetUInt32("slot", value); } + public NetMessageSplitscreenUserChangedImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } -} + public uint Slot + { get => Accessor.GetUInt32("slot"); set => Accessor.SetUInt32("slot", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/OperationalStatisticDescriptionImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/OperationalStatisticDescriptionImpl.cs index 1bdc03b4d..a1862e3d6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/OperationalStatisticDescriptionImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/OperationalStatisticDescriptionImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class OperationalStatisticDescriptionImpl : TypedProtobuf, OperationalStatisticDescription { - public OperationalStatisticDescriptionImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string Name - { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } - - - public uint Idkey - { get => Accessor.GetUInt32("idkey"); set => Accessor.SetUInt32("idkey", value); } - -} + public OperationalStatisticDescriptionImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string Name + { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } + public uint Idkey + { get => Accessor.GetUInt32("idkey"); set => Accessor.SetUInt32("idkey", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/OperationalStatisticElementImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/OperationalStatisticElementImpl.cs index 69b881cbc..785c2cc5d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/OperationalStatisticElementImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/OperationalStatisticElementImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class OperationalStatisticElementImpl : TypedProtobuf, OperationalStatisticElement { - public OperationalStatisticElementImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Idkey - { get => Accessor.GetUInt32("idkey"); set => Accessor.SetUInt32("idkey", value); } - - - public IProtobufRepeatedFieldValueType Values - { get => new ProtobufRepeatedFieldValueType(Accessor, "values"); } - -} + public OperationalStatisticElementImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Idkey + { get => Accessor.GetUInt32("idkey"); set => Accessor.SetUInt32("idkey", value); } + public IProtobufRepeatedFieldValueType Values + { get => new ProtobufRepeatedFieldValueType(Accessor, "values"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/OperationalStatisticsPacketImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/OperationalStatisticsPacketImpl.cs index 0eda6548c..b663a378f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/OperationalStatisticsPacketImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/OperationalStatisticsPacketImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class OperationalStatisticsPacketImpl : TypedProtobuf, OperationalStatisticsPacket { - public OperationalStatisticsPacketImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int Packetid - { get => Accessor.GetInt32("packetid"); set => Accessor.SetInt32("packetid", value); } - - - public int Mstimestamp - { get => Accessor.GetInt32("mstimestamp"); set => Accessor.SetInt32("mstimestamp", value); } - - - public IProtobufRepeatedFieldSubMessageType Values - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "values"); } - -} + public OperationalStatisticsPacketImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int Packetid + { get => Accessor.GetInt32("packetid"); set => Accessor.SetInt32("packetid", value); } + public int Mstimestamp + { get => Accessor.GetInt32("mstimestamp"); set => Accessor.SetInt32("mstimestamp", value); } + public IProtobufRepeatedFieldSubMessageType Values + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "values"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/OperationalVarValueImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/OperationalVarValueImpl.cs index 132f8b3dd..fe30b1e84 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/OperationalVarValueImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/OperationalVarValueImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class OperationalVarValueImpl : TypedProtobuf, OperationalVarValue { - public OperationalVarValueImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public string Name - { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } - - - public int Ivalue - { get => Accessor.GetInt32("ivalue"); set => Accessor.SetInt32("ivalue", value); } - - - public float Fvalue - { get => Accessor.GetFloat("fvalue"); set => Accessor.SetFloat("fvalue", value); } - - - public byte[] Svalue - { get => Accessor.GetBytes("svalue"); set => Accessor.SetBytes("svalue", value); } - -} + public OperationalVarValueImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public string Name + { get => Accessor.GetString("name"); set => Accessor.SetString("name", value); } + public int Ivalue + { get => Accessor.GetInt32("ivalue"); set => Accessor.SetInt32("ivalue", value); } + public float Fvalue + { get => Accessor.GetFloat("fvalue"); set => Accessor.SetFloat("fvalue", value); } + public byte[] Svalue + { get => Accessor.GetBytes("svalue"); set => Accessor.SetBytes("svalue", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/PlayerCommendationInfoImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/PlayerCommendationInfoImpl.cs index 1eb004eb7..6ca43cb28 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/PlayerCommendationInfoImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/PlayerCommendationInfoImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class PlayerCommendationInfoImpl : TypedProtobuf, PlayerCommendationInfo { - public PlayerCommendationInfoImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint CmdFriendly - { get => Accessor.GetUInt32("cmd_friendly"); set => Accessor.SetUInt32("cmd_friendly", value); } - - - public uint CmdTeaching - { get => Accessor.GetUInt32("cmd_teaching"); set => Accessor.SetUInt32("cmd_teaching", value); } - - - public uint CmdLeader - { get => Accessor.GetUInt32("cmd_leader"); set => Accessor.SetUInt32("cmd_leader", value); } - -} + public PlayerCommendationInfoImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint CmdFriendly + { get => Accessor.GetUInt32("cmd_friendly"); set => Accessor.SetUInt32("cmd_friendly", value); } + public uint CmdTeaching + { get => Accessor.GetUInt32("cmd_teaching"); set => Accessor.SetUInt32("cmd_teaching", value); } + public uint CmdLeader + { get => Accessor.GetUInt32("cmd_leader"); set => Accessor.SetUInt32("cmd_leader", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/PlayerDecalDigitalSignatureImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/PlayerDecalDigitalSignatureImpl.cs index 2cea7ab55..01a7b90be 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/PlayerDecalDigitalSignatureImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/PlayerDecalDigitalSignatureImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,64 +8,36 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class PlayerDecalDigitalSignatureImpl : TypedProtobuf, PlayerDecalDigitalSignature { - public PlayerDecalDigitalSignatureImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public byte[] Signature - { get => Accessor.GetBytes("signature"); set => Accessor.SetBytes("signature", value); } - - - public uint Accountid - { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } - - - public uint Rtime - { get => Accessor.GetUInt32("rtime"); set => Accessor.SetUInt32("rtime", value); } - - - public IProtobufRepeatedFieldValueType Endpos - { get => new ProtobufRepeatedFieldValueType(Accessor, "endpos"); } - - - public IProtobufRepeatedFieldValueType Startpos - { get => new ProtobufRepeatedFieldValueType(Accessor, "startpos"); } - - - public IProtobufRepeatedFieldValueType Left - { get => new ProtobufRepeatedFieldValueType(Accessor, "left"); } - - - public uint TxDefidx - { get => Accessor.GetUInt32("tx_defidx"); set => Accessor.SetUInt32("tx_defidx", value); } - - - public int Entindex - { get => Accessor.GetInt32("entindex"); set => Accessor.SetInt32("entindex", value); } - - - public uint Hitbox - { get => Accessor.GetUInt32("hitbox"); set => Accessor.SetUInt32("hitbox", value); } - - - public float Creationtime - { get => Accessor.GetFloat("creationtime"); set => Accessor.SetFloat("creationtime", value); } - - - public uint Equipslot - { get => Accessor.GetUInt32("equipslot"); set => Accessor.SetUInt32("equipslot", value); } - - - public uint TraceId - { get => Accessor.GetUInt32("trace_id"); set => Accessor.SetUInt32("trace_id", value); } - - - public IProtobufRepeatedFieldValueType Normal - { get => new ProtobufRepeatedFieldValueType(Accessor, "normal"); } - - - public uint TintId - { get => Accessor.GetUInt32("tint_id"); set => Accessor.SetUInt32("tint_id", value); } - -} + public PlayerDecalDigitalSignatureImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public byte[] Signature + { get => Accessor.GetBytes("signature"); set => Accessor.SetBytes("signature", value); } + public uint Accountid + { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } + public uint Rtime + { get => Accessor.GetUInt32("rtime"); set => Accessor.SetUInt32("rtime", value); } + public IProtobufRepeatedFieldValueType Endpos + { get => new ProtobufRepeatedFieldValueType(Accessor, "endpos"); } + public IProtobufRepeatedFieldValueType Startpos + { get => new ProtobufRepeatedFieldValueType(Accessor, "startpos"); } + public IProtobufRepeatedFieldValueType Left + { get => new ProtobufRepeatedFieldValueType(Accessor, "left"); } + public uint TxDefidx + { get => Accessor.GetUInt32("tx_defidx"); set => Accessor.SetUInt32("tx_defidx", value); } + public int Entindex + { get => Accessor.GetInt32("entindex"); set => Accessor.SetInt32("entindex", value); } + public uint Hitbox + { get => Accessor.GetUInt32("hitbox"); set => Accessor.SetUInt32("hitbox", value); } + public float Creationtime + { get => Accessor.GetFloat("creationtime"); set => Accessor.SetFloat("creationtime", value); } + public uint Equipslot + { get => Accessor.GetUInt32("equipslot"); set => Accessor.SetUInt32("equipslot", value); } + public uint TraceId + { get => Accessor.GetUInt32("trace_id"); set => Accessor.SetUInt32("trace_id", value); } + public IProtobufRepeatedFieldValueType Normal + { get => new ProtobufRepeatedFieldValueType(Accessor, "normal"); } + public uint TintId + { get => Accessor.GetUInt32("tint_id"); set => Accessor.SetUInt32("tint_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/PlayerMedalsInfoImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/PlayerMedalsInfoImpl.cs index d386f54b2..45d70aca3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/PlayerMedalsInfoImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/PlayerMedalsInfoImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class PlayerMedalsInfoImpl : TypedProtobuf, PlayerMedalsInfo { - public PlayerMedalsInfoImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public IProtobufRepeatedFieldValueType DisplayItemsDefidx - { get => new ProtobufRepeatedFieldValueType(Accessor, "display_items_defidx"); } - - - public uint FeaturedDisplayItemDefidx - { get => Accessor.GetUInt32("featured_display_item_defidx"); set => Accessor.SetUInt32("featured_display_item_defidx", value); } - -} + public PlayerMedalsInfoImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public IProtobufRepeatedFieldValueType DisplayItemsDefidx + { get => new ProtobufRepeatedFieldValueType(Accessor, "display_items_defidx"); } + public uint FeaturedDisplayItemDefidx + { get => Accessor.GetUInt32("featured_display_item_defidx"); set => Accessor.SetUInt32("featured_display_item_defidx", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/PlayerQuestDataImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/PlayerQuestDataImpl.cs index 270cbbcfe..3202f4dc7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/PlayerQuestDataImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/PlayerQuestDataImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,40 +8,24 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class PlayerQuestDataImpl : TypedProtobuf, PlayerQuestData { - public PlayerQuestDataImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint QuesterAccountId - { get => Accessor.GetUInt32("quester_account_id"); set => Accessor.SetUInt32("quester_account_id", value); } - - - public IProtobufRepeatedFieldSubMessageType QuestItemData - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "quest_item_data"); } - - - public IProtobufRepeatedFieldSubMessageType XpProgressData - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "xp_progress_data"); } - - - public uint TimePlayed - { get => Accessor.GetUInt32("time_played"); set => Accessor.SetUInt32("time_played", value); } - - - public uint MmGameMode - { get => Accessor.GetUInt32("mm_game_mode"); set => Accessor.SetUInt32("mm_game_mode", value); } - - - public IProtobufRepeatedFieldSubMessageType ItemUpdates - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "item_updates"); } - - - public bool OperationPointsEligible - { get => Accessor.GetBool("operation_points_eligible"); set => Accessor.SetBool("operation_points_eligible", value); } - - - public IProtobufRepeatedFieldSubMessageType Userstatchanges - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "userstatchanges"); } - -} + public PlayerQuestDataImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint QuesterAccountId + { get => Accessor.GetUInt32("quester_account_id"); set => Accessor.SetUInt32("quester_account_id", value); } + public IProtobufRepeatedFieldSubMessageType QuestItemData + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "quest_item_data"); } + public IProtobufRepeatedFieldSubMessageType XpProgressData + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "xp_progress_data"); } + public uint TimePlayed + { get => Accessor.GetUInt32("time_played"); set => Accessor.SetUInt32("time_played", value); } + public uint MmGameMode + { get => Accessor.GetUInt32("mm_game_mode"); set => Accessor.SetUInt32("mm_game_mode", value); } + public IProtobufRepeatedFieldSubMessageType ItemUpdates + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "item_updates"); } + public bool OperationPointsEligible + { get => Accessor.GetBool("operation_points_eligible"); set => Accessor.SetBool("operation_points_eligible", value); } + public IProtobufRepeatedFieldSubMessageType Userstatchanges + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "userstatchanges"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/PlayerQuestData_QuestItemDataImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/PlayerQuestData_QuestItemDataImpl.cs index a4277d4f0..d8d99b253 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/PlayerQuestData_QuestItemDataImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/PlayerQuestData_QuestItemDataImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,36 +8,22 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class PlayerQuestData_QuestItemDataImpl : TypedProtobuf, PlayerQuestData_QuestItemData { - public PlayerQuestData_QuestItemDataImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong QuestId - { get => Accessor.GetUInt64("quest_id"); set => Accessor.SetUInt64("quest_id", value); } - - - public int QuestNormalPointsEarned - { get => Accessor.GetInt32("quest_normal_points_earned"); set => Accessor.SetInt32("quest_normal_points_earned", value); } - - - public int QuestBonusPointsEarned - { get => Accessor.GetInt32("quest_bonus_points_earned"); set => Accessor.SetInt32("quest_bonus_points_earned", value); } - - - public IProtobufRepeatedFieldValueType QuestNormalPointsRequired - { get => new ProtobufRepeatedFieldValueType(Accessor, "quest_normal_points_required"); } - - - public IProtobufRepeatedFieldValueType QuestRewardXp - { get => new ProtobufRepeatedFieldValueType(Accessor, "quest_reward_xp"); } - - - public int QuestPeriod - { get => Accessor.GetInt32("quest_period"); set => Accessor.SetInt32("quest_period", value); } - - - public QuestType QuestType - { get => (QuestType)Accessor.GetInt32("quest_type"); set => Accessor.SetInt32("quest_type", (int)value); } - -} + public PlayerQuestData_QuestItemDataImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong QuestId + { get => Accessor.GetUInt64("quest_id"); set => Accessor.SetUInt64("quest_id", value); } + public int QuestNormalPointsEarned + { get => Accessor.GetInt32("quest_normal_points_earned"); set => Accessor.SetInt32("quest_normal_points_earned", value); } + public int QuestBonusPointsEarned + { get => Accessor.GetInt32("quest_bonus_points_earned"); set => Accessor.SetInt32("quest_bonus_points_earned", value); } + public IProtobufRepeatedFieldValueType QuestNormalPointsRequired + { get => new ProtobufRepeatedFieldValueType(Accessor, "quest_normal_points_required"); } + public IProtobufRepeatedFieldValueType QuestRewardXp + { get => new ProtobufRepeatedFieldValueType(Accessor, "quest_reward_xp"); } + public int QuestPeriod + { get => Accessor.GetInt32("quest_period"); set => Accessor.SetInt32("quest_period", value); } + public QuestType QuestType + { get => (QuestType)Accessor.GetInt32("quest_type"); set => Accessor.SetInt32("quest_type", (int)value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/PlayerRankingInfoImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/PlayerRankingInfoImpl.cs index 4ae93b712..7fe3a9028 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/PlayerRankingInfoImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/PlayerRankingInfoImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,68 +8,38 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class PlayerRankingInfoImpl : TypedProtobuf, PlayerRankingInfo { - public PlayerRankingInfoImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint AccountId - { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } - - - public uint RankId - { get => Accessor.GetUInt32("rank_id"); set => Accessor.SetUInt32("rank_id", value); } - - - public uint Wins - { get => Accessor.GetUInt32("wins"); set => Accessor.SetUInt32("wins", value); } - - - public float RankChange - { get => Accessor.GetFloat("rank_change"); set => Accessor.SetFloat("rank_change", value); } - - - public uint RankTypeId - { get => Accessor.GetUInt32("rank_type_id"); set => Accessor.SetUInt32("rank_type_id", value); } - - - public uint TvControl - { get => Accessor.GetUInt32("tv_control"); set => Accessor.SetUInt32("tv_control", value); } - - - public ulong RankWindowStats - { get => Accessor.GetUInt64("rank_window_stats"); set => Accessor.SetUInt64("rank_window_stats", value); } - - - public string LeaderboardName - { get => Accessor.GetString("leaderboard_name"); set => Accessor.SetString("leaderboard_name", value); } - - - public uint RankIfWin - { get => Accessor.GetUInt32("rank_if_win"); set => Accessor.SetUInt32("rank_if_win", value); } - - - public uint RankIfLose - { get => Accessor.GetUInt32("rank_if_lose"); set => Accessor.SetUInt32("rank_if_lose", value); } - - - public uint RankIfTie - { get => Accessor.GetUInt32("rank_if_tie"); set => Accessor.SetUInt32("rank_if_tie", value); } - - - public IProtobufRepeatedFieldSubMessageType PerMapRank - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "per_map_rank"); } - - - public uint LeaderboardNameStatus - { get => Accessor.GetUInt32("leaderboard_name_status"); set => Accessor.SetUInt32("leaderboard_name_status", value); } - - - public uint HighestRank - { get => Accessor.GetUInt32("highest_rank"); set => Accessor.SetUInt32("highest_rank", value); } - - - public uint RankExpiry - { get => Accessor.GetUInt32("rank_expiry"); set => Accessor.SetUInt32("rank_expiry", value); } - -} + public PlayerRankingInfoImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint AccountId + { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } + public uint RankId + { get => Accessor.GetUInt32("rank_id"); set => Accessor.SetUInt32("rank_id", value); } + public uint Wins + { get => Accessor.GetUInt32("wins"); set => Accessor.SetUInt32("wins", value); } + public float RankChange + { get => Accessor.GetFloat("rank_change"); set => Accessor.SetFloat("rank_change", value); } + public uint RankTypeId + { get => Accessor.GetUInt32("rank_type_id"); set => Accessor.SetUInt32("rank_type_id", value); } + public uint TvControl + { get => Accessor.GetUInt32("tv_control"); set => Accessor.SetUInt32("tv_control", value); } + public ulong RankWindowStats + { get => Accessor.GetUInt64("rank_window_stats"); set => Accessor.SetUInt64("rank_window_stats", value); } + public string LeaderboardName + { get => Accessor.GetString("leaderboard_name"); set => Accessor.SetString("leaderboard_name", value); } + public uint RankIfWin + { get => Accessor.GetUInt32("rank_if_win"); set => Accessor.SetUInt32("rank_if_win", value); } + public uint RankIfLose + { get => Accessor.GetUInt32("rank_if_lose"); set => Accessor.SetUInt32("rank_if_lose", value); } + public uint RankIfTie + { get => Accessor.GetUInt32("rank_if_tie"); set => Accessor.SetUInt32("rank_if_tie", value); } + public IProtobufRepeatedFieldSubMessageType PerMapRank + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "per_map_rank"); } + public uint LeaderboardNameStatus + { get => Accessor.GetUInt32("leaderboard_name_status"); set => Accessor.SetUInt32("leaderboard_name_status", value); } + public uint HighestRank + { get => Accessor.GetUInt32("highest_rank"); set => Accessor.SetUInt32("highest_rank", value); } + public uint RankExpiry + { get => Accessor.GetUInt32("rank_expiry"); set => Accessor.SetUInt32("rank_expiry", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/PlayerRankingInfo_PerMapRankImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/PlayerRankingInfo_PerMapRankImpl.cs index 6a40a7bb5..1fb4672bd 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/PlayerRankingInfo_PerMapRankImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/PlayerRankingInfo_PerMapRankImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class PlayerRankingInfo_PerMapRankImpl : TypedProtobuf, PlayerRankingInfo_PerMapRank { - public PlayerRankingInfo_PerMapRankImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint MapId - { get => Accessor.GetUInt32("map_id"); set => Accessor.SetUInt32("map_id", value); } - - - public uint RankId - { get => Accessor.GetUInt32("rank_id"); set => Accessor.SetUInt32("rank_id", value); } - - - public uint Wins - { get => Accessor.GetUInt32("wins"); set => Accessor.SetUInt32("wins", value); } - -} + public PlayerRankingInfo_PerMapRankImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint MapId + { get => Accessor.GetUInt32("map_id"); set => Accessor.SetUInt32("map_id", value); } + public uint RankId + { get => Accessor.GetUInt32("rank_id"); set => Accessor.SetUInt32("rank_id", value); } + public uint Wins + { get => Accessor.GetUInt32("wins"); set => Accessor.SetUInt32("wins", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/ProtoFlattenedSerializerField_tImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/ProtoFlattenedSerializerField_tImpl.cs index dc813f4c2..8a8873c3a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/ProtoFlattenedSerializerField_tImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/ProtoFlattenedSerializerField_tImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,56 +8,32 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class ProtoFlattenedSerializerField_tImpl : TypedProtobuf, ProtoFlattenedSerializerField_t { - public ProtoFlattenedSerializerField_tImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int VarTypeSym - { get => Accessor.GetInt32("var_type_sym"); set => Accessor.SetInt32("var_type_sym", value); } - - - public int VarNameSym - { get => Accessor.GetInt32("var_name_sym"); set => Accessor.SetInt32("var_name_sym", value); } - - - public int BitCount - { get => Accessor.GetInt32("bit_count"); set => Accessor.SetInt32("bit_count", value); } - - - public float LowValue - { get => Accessor.GetFloat("low_value"); set => Accessor.SetFloat("low_value", value); } - - - public float HighValue - { get => Accessor.GetFloat("high_value"); set => Accessor.SetFloat("high_value", value); } - - - public int EncodeFlags - { get => Accessor.GetInt32("encode_flags"); set => Accessor.SetInt32("encode_flags", value); } - - - public int FieldSerializerNameSym - { get => Accessor.GetInt32("field_serializer_name_sym"); set => Accessor.SetInt32("field_serializer_name_sym", value); } - - - public int FieldSerializerVersion - { get => Accessor.GetInt32("field_serializer_version"); set => Accessor.SetInt32("field_serializer_version", value); } - - - public int SendNodeSym - { get => Accessor.GetInt32("send_node_sym"); set => Accessor.SetInt32("send_node_sym", value); } - - - public int VarEncoderSym - { get => Accessor.GetInt32("var_encoder_sym"); set => Accessor.SetInt32("var_encoder_sym", value); } - - - public IProtobufRepeatedFieldSubMessageType PolymorphicTypes - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "polymorphic_types"); } - - - public int VarSerializerSym - { get => Accessor.GetInt32("var_serializer_sym"); set => Accessor.SetInt32("var_serializer_sym", value); } - -} + public ProtoFlattenedSerializerField_tImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int VarTypeSym + { get => Accessor.GetInt32("var_type_sym"); set => Accessor.SetInt32("var_type_sym", value); } + public int VarNameSym + { get => Accessor.GetInt32("var_name_sym"); set => Accessor.SetInt32("var_name_sym", value); } + public int BitCount + { get => Accessor.GetInt32("bit_count"); set => Accessor.SetInt32("bit_count", value); } + public float LowValue + { get => Accessor.GetFloat("low_value"); set => Accessor.SetFloat("low_value", value); } + public float HighValue + { get => Accessor.GetFloat("high_value"); set => Accessor.SetFloat("high_value", value); } + public int EncodeFlags + { get => Accessor.GetInt32("encode_flags"); set => Accessor.SetInt32("encode_flags", value); } + public int FieldSerializerNameSym + { get => Accessor.GetInt32("field_serializer_name_sym"); set => Accessor.SetInt32("field_serializer_name_sym", value); } + public int FieldSerializerVersion + { get => Accessor.GetInt32("field_serializer_version"); set => Accessor.SetInt32("field_serializer_version", value); } + public int SendNodeSym + { get => Accessor.GetInt32("send_node_sym"); set => Accessor.SetInt32("send_node_sym", value); } + public int VarEncoderSym + { get => Accessor.GetInt32("var_encoder_sym"); set => Accessor.SetInt32("var_encoder_sym", value); } + public IProtobufRepeatedFieldSubMessageType PolymorphicTypes + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "polymorphic_types"); } + public int VarSerializerSym + { get => Accessor.GetInt32("var_serializer_sym"); set => Accessor.SetInt32("var_serializer_sym", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/ProtoFlattenedSerializerField_t_polymorphic_field_tImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/ProtoFlattenedSerializerField_t_polymorphic_field_tImpl.cs index 8ca7c4e55..524c7cc00 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/ProtoFlattenedSerializerField_t_polymorphic_field_tImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/ProtoFlattenedSerializerField_t_polymorphic_field_tImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class ProtoFlattenedSerializerField_t_polymorphic_field_tImpl : TypedProtobuf, ProtoFlattenedSerializerField_t_polymorphic_field_t { - public ProtoFlattenedSerializerField_t_polymorphic_field_tImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int PolymorphicFieldSerializerNameSym - { get => Accessor.GetInt32("polymorphic_field_serializer_name_sym"); set => Accessor.SetInt32("polymorphic_field_serializer_name_sym", value); } - - - public int PolymorphicFieldSerializerVersion - { get => Accessor.GetInt32("polymorphic_field_serializer_version"); set => Accessor.SetInt32("polymorphic_field_serializer_version", value); } - -} + public ProtoFlattenedSerializerField_t_polymorphic_field_tImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int PolymorphicFieldSerializerNameSym + { get => Accessor.GetInt32("polymorphic_field_serializer_name_sym"); set => Accessor.SetInt32("polymorphic_field_serializer_name_sym", value); } + public int PolymorphicFieldSerializerVersion + { get => Accessor.GetInt32("polymorphic_field_serializer_version"); set => Accessor.SetInt32("polymorphic_field_serializer_version", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/ProtoFlattenedSerializer_tImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/ProtoFlattenedSerializer_tImpl.cs index b33428c04..ed2831a04 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/ProtoFlattenedSerializer_tImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/ProtoFlattenedSerializer_tImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,20 +8,14 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class ProtoFlattenedSerializer_tImpl : TypedProtobuf, ProtoFlattenedSerializer_t { - public ProtoFlattenedSerializer_tImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int SerializerNameSym - { get => Accessor.GetInt32("serializer_name_sym"); set => Accessor.SetInt32("serializer_name_sym", value); } - - - public int SerializerVersion - { get => Accessor.GetInt32("serializer_version"); set => Accessor.SetInt32("serializer_version", value); } - - - public IProtobufRepeatedFieldValueType FieldsIndex - { get => new ProtobufRepeatedFieldValueType(Accessor, "fields_index"); } - -} + public ProtoFlattenedSerializer_tImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int SerializerNameSym + { get => Accessor.GetInt32("serializer_name_sym"); set => Accessor.SetInt32("serializer_name_sym", value); } + public int SerializerVersion + { get => Accessor.GetInt32("serializer_version"); set => Accessor.SetInt32("serializer_version", value); } + public IProtobufRepeatedFieldValueType FieldsIndex + { get => new ProtobufRepeatedFieldValueType(Accessor, "fields_index"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/ScoreLeaderboardDataImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/ScoreLeaderboardDataImpl.cs index f3995749a..4f9dcbf8b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/ScoreLeaderboardDataImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/ScoreLeaderboardDataImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class ScoreLeaderboardDataImpl : TypedProtobuf, ScoreLeaderboardData { - public ScoreLeaderboardDataImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong QuestId - { get => Accessor.GetUInt64("quest_id"); set => Accessor.SetUInt64("quest_id", value); } - - - public uint Score - { get => Accessor.GetUInt32("score"); set => Accessor.SetUInt32("score", value); } - - - public IProtobufRepeatedFieldSubMessageType Accountentries - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "accountentries"); } - - - public IProtobufRepeatedFieldSubMessageType Matchentries - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "matchentries"); } - - - public string LeaderboardName - { get => Accessor.GetString("leaderboard_name"); set => Accessor.SetString("leaderboard_name", value); } - -} + public ScoreLeaderboardDataImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong QuestId + { get => Accessor.GetUInt64("quest_id"); set => Accessor.SetUInt64("quest_id", value); } + public uint Score + { get => Accessor.GetUInt32("score"); set => Accessor.SetUInt32("score", value); } + public IProtobufRepeatedFieldSubMessageType Accountentries + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "accountentries"); } + public IProtobufRepeatedFieldSubMessageType Matchentries + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "matchentries"); } + public string LeaderboardName + { get => Accessor.GetString("leaderboard_name"); set => Accessor.SetString("leaderboard_name", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/ScoreLeaderboardData_AccountEntriesImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/ScoreLeaderboardData_AccountEntriesImpl.cs index c9e5c9860..e99ee6b2d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/ScoreLeaderboardData_AccountEntriesImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/ScoreLeaderboardData_AccountEntriesImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class ScoreLeaderboardData_AccountEntriesImpl : TypedProtobuf, ScoreLeaderboardData_AccountEntries { - public ScoreLeaderboardData_AccountEntriesImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Accountid - { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } - - - public IProtobufRepeatedFieldSubMessageType Entries - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "entries"); } - -} + public ScoreLeaderboardData_AccountEntriesImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Accountid + { get => Accessor.GetUInt32("accountid"); set => Accessor.SetUInt32("accountid", value); } + public IProtobufRepeatedFieldSubMessageType Entries + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "entries"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/ScoreLeaderboardData_EntryImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/ScoreLeaderboardData_EntryImpl.cs index d8c1e5b38..2605e775d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/ScoreLeaderboardData_EntryImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/ScoreLeaderboardData_EntryImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class ScoreLeaderboardData_EntryImpl : TypedProtobuf, ScoreLeaderboardData_Entry { - public ScoreLeaderboardData_EntryImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint Tag - { get => Accessor.GetUInt32("tag"); set => Accessor.SetUInt32("tag", value); } - - - public uint Val - { get => Accessor.GetUInt32("val"); set => Accessor.SetUInt32("val", value); } - -} + public ScoreLeaderboardData_EntryImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint Tag + { get => Accessor.GetUInt32("tag"); set => Accessor.SetUInt32("tag", value); } + public uint Val + { get => Accessor.GetUInt32("val"); set => Accessor.SetUInt32("val", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/ServerHltvInfoImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/ServerHltvInfoImpl.cs index a62a2f9ed..72d78509c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/ServerHltvInfoImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/ServerHltvInfoImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,88 +8,48 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class ServerHltvInfoImpl : TypedProtobuf, ServerHltvInfo { - public ServerHltvInfoImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint TvUdpPort - { get => Accessor.GetUInt32("tv_udp_port"); set => Accessor.SetUInt32("tv_udp_port", value); } - - - public ulong TvWatchKey - { get => Accessor.GetUInt64("tv_watch_key"); set => Accessor.SetUInt64("tv_watch_key", value); } - - - public uint TvSlots - { get => Accessor.GetUInt32("tv_slots"); set => Accessor.SetUInt32("tv_slots", value); } - - - public uint TvClients - { get => Accessor.GetUInt32("tv_clients"); set => Accessor.SetUInt32("tv_clients", value); } - - - public uint TvProxies - { get => Accessor.GetUInt32("tv_proxies"); set => Accessor.SetUInt32("tv_proxies", value); } - - - public uint TvTime - { get => Accessor.GetUInt32("tv_time"); set => Accessor.SetUInt32("tv_time", value); } - - - public uint GameType - { get => Accessor.GetUInt32("game_type"); set => Accessor.SetUInt32("game_type", value); } - - - public string GameMapgroup - { get => Accessor.GetString("game_mapgroup"); set => Accessor.SetString("game_mapgroup", value); } - - - public string GameMap - { get => Accessor.GetString("game_map"); set => Accessor.SetString("game_map", value); } - - - public ulong TvMasterSteamid - { get => Accessor.GetUInt64("tv_master_steamid"); set => Accessor.SetUInt64("tv_master_steamid", value); } - - - public uint TvLocalSlots - { get => Accessor.GetUInt32("tv_local_slots"); set => Accessor.SetUInt32("tv_local_slots", value); } - - - public uint TvLocalClients - { get => Accessor.GetUInt32("tv_local_clients"); set => Accessor.SetUInt32("tv_local_clients", value); } - - - public uint TvLocalProxies - { get => Accessor.GetUInt32("tv_local_proxies"); set => Accessor.SetUInt32("tv_local_proxies", value); } - - - public uint TvRelaySlots - { get => Accessor.GetUInt32("tv_relay_slots"); set => Accessor.SetUInt32("tv_relay_slots", value); } - - - public uint TvRelayClients - { get => Accessor.GetUInt32("tv_relay_clients"); set => Accessor.SetUInt32("tv_relay_clients", value); } - - - public uint TvRelayProxies - { get => Accessor.GetUInt32("tv_relay_proxies"); set => Accessor.SetUInt32("tv_relay_proxies", value); } - - - public uint TvRelayAddress - { get => Accessor.GetUInt32("tv_relay_address"); set => Accessor.SetUInt32("tv_relay_address", value); } - - - public uint TvRelayPort - { get => Accessor.GetUInt32("tv_relay_port"); set => Accessor.SetUInt32("tv_relay_port", value); } - - - public ulong TvRelaySteamid - { get => Accessor.GetUInt64("tv_relay_steamid"); set => Accessor.SetUInt64("tv_relay_steamid", value); } - - - public uint Flags - { get => Accessor.GetUInt32("flags"); set => Accessor.SetUInt32("flags", value); } - -} + public ServerHltvInfoImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint TvUdpPort + { get => Accessor.GetUInt32("tv_udp_port"); set => Accessor.SetUInt32("tv_udp_port", value); } + public ulong TvWatchKey + { get => Accessor.GetUInt64("tv_watch_key"); set => Accessor.SetUInt64("tv_watch_key", value); } + public uint TvSlots + { get => Accessor.GetUInt32("tv_slots"); set => Accessor.SetUInt32("tv_slots", value); } + public uint TvClients + { get => Accessor.GetUInt32("tv_clients"); set => Accessor.SetUInt32("tv_clients", value); } + public uint TvProxies + { get => Accessor.GetUInt32("tv_proxies"); set => Accessor.SetUInt32("tv_proxies", value); } + public uint TvTime + { get => Accessor.GetUInt32("tv_time"); set => Accessor.SetUInt32("tv_time", value); } + public uint GameType + { get => Accessor.GetUInt32("game_type"); set => Accessor.SetUInt32("game_type", value); } + public string GameMapgroup + { get => Accessor.GetString("game_mapgroup"); set => Accessor.SetString("game_mapgroup", value); } + public string GameMap + { get => Accessor.GetString("game_map"); set => Accessor.SetString("game_map", value); } + public ulong TvMasterSteamid + { get => Accessor.GetUInt64("tv_master_steamid"); set => Accessor.SetUInt64("tv_master_steamid", value); } + public uint TvLocalSlots + { get => Accessor.GetUInt32("tv_local_slots"); set => Accessor.SetUInt32("tv_local_slots", value); } + public uint TvLocalClients + { get => Accessor.GetUInt32("tv_local_clients"); set => Accessor.SetUInt32("tv_local_clients", value); } + public uint TvLocalProxies + { get => Accessor.GetUInt32("tv_local_proxies"); set => Accessor.SetUInt32("tv_local_proxies", value); } + public uint TvRelaySlots + { get => Accessor.GetUInt32("tv_relay_slots"); set => Accessor.SetUInt32("tv_relay_slots", value); } + public uint TvRelayClients + { get => Accessor.GetUInt32("tv_relay_clients"); set => Accessor.SetUInt32("tv_relay_clients", value); } + public uint TvRelayProxies + { get => Accessor.GetUInt32("tv_relay_proxies"); set => Accessor.SetUInt32("tv_relay_proxies", value); } + public uint TvRelayAddress + { get => Accessor.GetUInt32("tv_relay_address"); set => Accessor.SetUInt32("tv_relay_address", value); } + public uint TvRelayPort + { get => Accessor.GetUInt32("tv_relay_port"); set => Accessor.SetUInt32("tv_relay_port", value); } + public ulong TvRelaySteamid + { get => Accessor.GetUInt64("tv_relay_steamid"); set => Accessor.SetUInt64("tv_relay_steamid", value); } + public uint Flags + { get => Accessor.GetUInt32("flags"); set => Accessor.SetUInt32("flags", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/TournamentEventImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/TournamentEventImpl.cs index b93115dd2..5905672fc 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/TournamentEventImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/TournamentEventImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,44 +8,26 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class TournamentEventImpl : TypedProtobuf, TournamentEvent { - public TournamentEventImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int EventId - { get => Accessor.GetInt32("event_id"); set => Accessor.SetInt32("event_id", value); } - - - public string EventTag - { get => Accessor.GetString("event_tag"); set => Accessor.SetString("event_tag", value); } - - - public string EventName - { get => Accessor.GetString("event_name"); set => Accessor.SetString("event_name", value); } - - - public uint EventTimeStart - { get => Accessor.GetUInt32("event_time_start"); set => Accessor.SetUInt32("event_time_start", value); } - - - public uint EventTimeEnd - { get => Accessor.GetUInt32("event_time_end"); set => Accessor.SetUInt32("event_time_end", value); } - - - public int EventPublic - { get => Accessor.GetInt32("event_public"); set => Accessor.SetInt32("event_public", value); } - - - public int EventStageId - { get => Accessor.GetInt32("event_stage_id"); set => Accessor.SetInt32("event_stage_id", value); } - - - public string EventStageName - { get => Accessor.GetString("event_stage_name"); set => Accessor.SetString("event_stage_name", value); } - - - public uint ActiveSectionId - { get => Accessor.GetUInt32("active_section_id"); set => Accessor.SetUInt32("active_section_id", value); } - -} + public TournamentEventImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int EventId + { get => Accessor.GetInt32("event_id"); set => Accessor.SetInt32("event_id", value); } + public string EventTag + { get => Accessor.GetString("event_tag"); set => Accessor.SetString("event_tag", value); } + public string EventName + { get => Accessor.GetString("event_name"); set => Accessor.SetString("event_name", value); } + public uint EventTimeStart + { get => Accessor.GetUInt32("event_time_start"); set => Accessor.SetUInt32("event_time_start", value); } + public uint EventTimeEnd + { get => Accessor.GetUInt32("event_time_end"); set => Accessor.SetUInt32("event_time_end", value); } + public int EventPublic + { get => Accessor.GetInt32("event_public"); set => Accessor.SetInt32("event_public", value); } + public int EventStageId + { get => Accessor.GetInt32("event_stage_id"); set => Accessor.SetInt32("event_stage_id", value); } + public string EventStageName + { get => Accessor.GetString("event_stage_name"); set => Accessor.SetString("event_stage_name", value); } + public uint ActiveSectionId + { get => Accessor.GetUInt32("active_section_id"); set => Accessor.SetUInt32("active_section_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/TournamentMatchSetupImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/TournamentMatchSetupImpl.cs index 3cbbfa235..02c431bba 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/TournamentMatchSetupImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/TournamentMatchSetupImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,24 +8,16 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class TournamentMatchSetupImpl : TypedProtobuf, TournamentMatchSetup { - public TournamentMatchSetupImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int EventId - { get => Accessor.GetInt32("event_id"); set => Accessor.SetInt32("event_id", value); } - - - public int TeamIdCt - { get => Accessor.GetInt32("team_id_ct"); set => Accessor.SetInt32("team_id_ct", value); } - - - public int TeamIdT - { get => Accessor.GetInt32("team_id_t"); set => Accessor.SetInt32("team_id_t", value); } - - - public int EventStageId - { get => Accessor.GetInt32("event_stage_id"); set => Accessor.SetInt32("event_stage_id", value); } - -} + public TournamentMatchSetupImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int EventId + { get => Accessor.GetInt32("event_id"); set => Accessor.SetInt32("event_id", value); } + public int TeamIdCt + { get => Accessor.GetInt32("team_id_ct"); set => Accessor.SetInt32("team_id_ct", value); } + public int TeamIdT + { get => Accessor.GetInt32("team_id_t"); set => Accessor.SetInt32("team_id_t", value); } + public int EventStageId + { get => Accessor.GetInt32("event_stage_id"); set => Accessor.SetInt32("event_stage_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/TournamentPlayerImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/TournamentPlayerImpl.cs index e0af39c7f..fa33f074d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/TournamentPlayerImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/TournamentPlayerImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,36 +8,22 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class TournamentPlayerImpl : TypedProtobuf, TournamentPlayer { - public TournamentPlayerImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint AccountId - { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } - - - public string PlayerNick - { get => Accessor.GetString("player_nick"); set => Accessor.SetString("player_nick", value); } - - - public string PlayerName - { get => Accessor.GetString("player_name"); set => Accessor.SetString("player_name", value); } - - - public uint PlayerDob - { get => Accessor.GetUInt32("player_dob"); set => Accessor.SetUInt32("player_dob", value); } - - - public string PlayerFlag - { get => Accessor.GetString("player_flag"); set => Accessor.SetString("player_flag", value); } - - - public string PlayerLocation - { get => Accessor.GetString("player_location"); set => Accessor.SetString("player_location", value); } - - - public string PlayerDesc - { get => Accessor.GetString("player_desc"); set => Accessor.SetString("player_desc", value); } - -} + public TournamentPlayerImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint AccountId + { get => Accessor.GetUInt32("account_id"); set => Accessor.SetUInt32("account_id", value); } + public string PlayerNick + { get => Accessor.GetString("player_nick"); set => Accessor.SetString("player_nick", value); } + public string PlayerName + { get => Accessor.GetString("player_name"); set => Accessor.SetString("player_name", value); } + public uint PlayerDob + { get => Accessor.GetUInt32("player_dob"); set => Accessor.SetUInt32("player_dob", value); } + public string PlayerFlag + { get => Accessor.GetString("player_flag"); set => Accessor.SetString("player_flag", value); } + public string PlayerLocation + { get => Accessor.GetString("player_location"); set => Accessor.SetString("player_location", value); } + public string PlayerDesc + { get => Accessor.GetString("player_desc"); set => Accessor.SetString("player_desc", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/TournamentTeamImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/TournamentTeamImpl.cs index b0d31324b..caf6541f1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/TournamentTeamImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/TournamentTeamImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,28 +8,18 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class TournamentTeamImpl : TypedProtobuf, TournamentTeam { - public TournamentTeamImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public int TeamId - { get => Accessor.GetInt32("team_id"); set => Accessor.SetInt32("team_id", value); } - - - public string TeamTag - { get => Accessor.GetString("team_tag"); set => Accessor.SetString("team_tag", value); } - - - public string TeamFlag - { get => Accessor.GetString("team_flag"); set => Accessor.SetString("team_flag", value); } - - - public string TeamName - { get => Accessor.GetString("team_name"); set => Accessor.SetString("team_name", value); } - - - public IProtobufRepeatedFieldSubMessageType Players - { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "players"); } - -} + public TournamentTeamImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public int TeamId + { get => Accessor.GetInt32("team_id"); set => Accessor.SetInt32("team_id", value); } + public string TeamTag + { get => Accessor.GetString("team_tag"); set => Accessor.SetString("team_tag", value); } + public string TeamFlag + { get => Accessor.GetString("team_flag"); set => Accessor.SetString("team_flag", value); } + public string TeamName + { get => Accessor.GetString("team_name"); set => Accessor.SetString("team_name", value); } + public IProtobufRepeatedFieldSubMessageType Players + { get => new ProtobufRepeatedFieldSubMessageType(Accessor, "players"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/VacNetShotImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/VacNetShotImpl.cs index cd3ba58b9..2b63db9ec 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/VacNetShotImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/VacNetShotImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,36 +8,22 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class VacNetShotImpl : TypedProtobuf, VacNetShot { - public VacNetShotImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public ulong SteamidPlayer - { get => Accessor.GetUInt64("steamid_player"); set => Accessor.SetUInt64("steamid_player", value); } - - - public int RoundNumber - { get => Accessor.GetInt32("round_number"); set => Accessor.SetInt32("round_number", value); } - - - public int HitType - { get => Accessor.GetInt32("hit_type"); set => Accessor.SetInt32("hit_type", value); } - - - public int WeaponType - { get => Accessor.GetInt32("weapon_type"); set => Accessor.SetInt32("weapon_type", value); } - - - public float DistanceToHurtTarget - { get => Accessor.GetFloat("distance_to_hurt_target"); set => Accessor.SetFloat("distance_to_hurt_target", value); } - - - public IProtobufRepeatedFieldValueType DeltaYawWindow - { get => new ProtobufRepeatedFieldValueType(Accessor, "delta_yaw_window"); } - - - public IProtobufRepeatedFieldValueType DeltaPitchWindow - { get => new ProtobufRepeatedFieldValueType(Accessor, "delta_pitch_window"); } - -} + public VacNetShotImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public ulong SteamidPlayer + { get => Accessor.GetUInt64("steamid_player"); set => Accessor.SetUInt64("steamid_player", value); } + public int RoundNumber + { get => Accessor.GetInt32("round_number"); set => Accessor.SetInt32("round_number", value); } + public int HitType + { get => Accessor.GetInt32("hit_type"); set => Accessor.SetInt32("hit_type", value); } + public int WeaponType + { get => Accessor.GetInt32("weapon_type"); set => Accessor.SetInt32("weapon_type", value); } + public float DistanceToHurtTarget + { get => Accessor.GetFloat("distance_to_hurt_target"); set => Accessor.SetFloat("distance_to_hurt_target", value); } + public IProtobufRepeatedFieldValueType DeltaYawWindow + { get => new ProtobufRepeatedFieldValueType(Accessor, "delta_yaw_window"); } + public IProtobufRepeatedFieldValueType DeltaPitchWindow + { get => new ProtobufRepeatedFieldValueType(Accessor, "delta_pitch_window"); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/WatchableMatchInfoImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/WatchableMatchInfoImpl.cs index 69eddd3f6..142285be7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/WatchableMatchInfoImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/WatchableMatchInfoImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,60 +8,34 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class WatchableMatchInfoImpl : TypedProtobuf, WatchableMatchInfo { - public WatchableMatchInfoImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint ServerIp - { get => Accessor.GetUInt32("server_ip"); set => Accessor.SetUInt32("server_ip", value); } - - - public uint TvPort - { get => Accessor.GetUInt32("tv_port"); set => Accessor.SetUInt32("tv_port", value); } - - - public uint TvSpectators - { get => Accessor.GetUInt32("tv_spectators"); set => Accessor.SetUInt32("tv_spectators", value); } - - - public uint TvTime - { get => Accessor.GetUInt32("tv_time"); set => Accessor.SetUInt32("tv_time", value); } - - - public byte[] TvWatchPassword - { get => Accessor.GetBytes("tv_watch_password"); set => Accessor.SetBytes("tv_watch_password", value); } - - - public ulong ClDecryptdataKey - { get => Accessor.GetUInt64("cl_decryptdata_key"); set => Accessor.SetUInt64("cl_decryptdata_key", value); } - - - public ulong ClDecryptdataKeyPub - { get => Accessor.GetUInt64("cl_decryptdata_key_pub"); set => Accessor.SetUInt64("cl_decryptdata_key_pub", value); } - - - public uint GameType - { get => Accessor.GetUInt32("game_type"); set => Accessor.SetUInt32("game_type", value); } - - - public string GameMapgroup - { get => Accessor.GetString("game_mapgroup"); set => Accessor.SetString("game_mapgroup", value); } - - - public string GameMap - { get => Accessor.GetString("game_map"); set => Accessor.SetString("game_map", value); } - - - public ulong ServerId - { get => Accessor.GetUInt64("server_id"); set => Accessor.SetUInt64("server_id", value); } - - - public ulong MatchId - { get => Accessor.GetUInt64("match_id"); set => Accessor.SetUInt64("match_id", value); } - - - public ulong ReservationId - { get => Accessor.GetUInt64("reservation_id"); set => Accessor.SetUInt64("reservation_id", value); } - -} + public WatchableMatchInfoImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint ServerIp + { get => Accessor.GetUInt32("server_ip"); set => Accessor.SetUInt32("server_ip", value); } + public uint TvPort + { get => Accessor.GetUInt32("tv_port"); set => Accessor.SetUInt32("tv_port", value); } + public uint TvSpectators + { get => Accessor.GetUInt32("tv_spectators"); set => Accessor.SetUInt32("tv_spectators", value); } + public uint TvTime + { get => Accessor.GetUInt32("tv_time"); set => Accessor.SetUInt32("tv_time", value); } + public byte[] TvWatchPassword + { get => Accessor.GetBytes("tv_watch_password"); set => Accessor.SetBytes("tv_watch_password", value); } + public ulong ClDecryptdataKey + { get => Accessor.GetUInt64("cl_decryptdata_key"); set => Accessor.SetUInt64("cl_decryptdata_key", value); } + public ulong ClDecryptdataKeyPub + { get => Accessor.GetUInt64("cl_decryptdata_key_pub"); set => Accessor.SetUInt64("cl_decryptdata_key_pub", value); } + public uint GameType + { get => Accessor.GetUInt32("game_type"); set => Accessor.SetUInt32("game_type", value); } + public string GameMapgroup + { get => Accessor.GetString("game_mapgroup"); set => Accessor.SetString("game_mapgroup", value); } + public string GameMap + { get => Accessor.GetString("game_map"); set => Accessor.SetString("game_map", value); } + public ulong ServerId + { get => Accessor.GetUInt64("server_id"); set => Accessor.SetUInt64("server_id", value); } + public ulong MatchId + { get => Accessor.GetUInt64("match_id"); set => Accessor.SetUInt64("match_id", value); } + public ulong ReservationId + { get => Accessor.GetUInt64("reservation_id"); set => Accessor.SetUInt64("reservation_id", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/XpProgressDataImpl.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/XpProgressDataImpl.cs index 4f1dc8173..f3815aad3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Classes/XpProgressDataImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Classes/XpProgressDataImpl.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.Natives; using SwiftlyS2.Core.NetMessages; using SwiftlyS2.Shared.Natives; @@ -9,16 +8,12 @@ namespace SwiftlyS2.Core.ProtobufDefinitions; internal class XpProgressDataImpl : TypedProtobuf, XpProgressData { - public XpProgressDataImpl(nint handle, bool isManuallyAllocated): base(handle) - { - } - - - public uint XpPoints - { get => Accessor.GetUInt32("xp_points"); set => Accessor.SetUInt32("xp_points", value); } - - - public int XpCategory - { get => Accessor.GetInt32("xp_category"); set => Accessor.SetInt32("xp_category", value); } - -} + public XpProgressDataImpl(nint handle, bool isManuallyAllocated) : base(handle) + { + } + + public uint XpPoints + { get => Accessor.GetUInt32("xp_points"); set => Accessor.SetUInt32("xp_points", value); } + public int XpCategory + { get => Accessor.GetInt32("xp_category"); set => Accessor.SetInt32("xp_category", value); } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/Bidirectional_Messages.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/Bidirectional_Messages.cs index b639fee82..f96bccad2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/Bidirectional_Messages.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/Bidirectional_Messages.cs @@ -1,10 +1,9 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum Bidirectional_Messages { - bi_RebroadcastGameEvent = 16, - bi_RebroadcastSource = 17, - bi_GameEvent = 18, - bi_PredictionEvent = 19, -} + bi_RebroadcastGameEvent = 16, + bi_RebroadcastSource = 17, + bi_GameEvent = 18, + bi_PredictionEvent = 19, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/Bidirectional_Messages_LowFrequency.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/Bidirectional_Messages_LowFrequency.cs index 3a892198f..743aa9404 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/Bidirectional_Messages_LowFrequency.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/Bidirectional_Messages_LowFrequency.cs @@ -1,8 +1,7 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum Bidirectional_Messages_LowFrequency { - bi_RelayInfo = 700, - bi_RelayPacket = 701, -} + bi_RelayInfo = 700, + bi_RelayPacket = 701, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/CBidirMsg_PredictionEvent_ESyncType.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/CBidirMsg_PredictionEvent_ESyncType.cs index 70db759d9..69a21dbcf 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/CBidirMsg_PredictionEvent_ESyncType.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/CBidirMsg_PredictionEvent_ESyncType.cs @@ -1,8 +1,7 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum CBidirMsg_PredictionEvent_ESyncType { - ST_Tick = 0, - ST_UserCmdNum = 1, -} + ST_Tick = 0, + ST_UserCmdNum = 1, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/CLC_Messages.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/CLC_Messages.cs index 6c0459144..06fa2b2e1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/CLC_Messages.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/CLC_Messages.cs @@ -1,20 +1,19 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum CLC_Messages { - clc_ClientInfo = 20, - clc_Move = 21, - clc_VoiceData = 22, - clc_BaselineAck = 23, - clc_RespondCvarValue = 25, - clc_LoadingProgress = 27, - clc_SplitPlayerConnect = 28, - clc_SplitPlayerDisconnect = 30, - clc_ServerStatus = 31, - clc_RequestPause = 33, - clc_CmdKeyValues = 34, - clc_RconServerDetails = 35, - clc_HltvReplay = 36, - clc_Diagnostic = 37, -} + clc_ClientInfo = 20, + clc_Move = 21, + clc_VoiceData = 22, + clc_BaselineAck = 23, + clc_RespondCvarValue = 25, + clc_LoadingProgress = 27, + clc_SplitPlayerConnect = 28, + clc_SplitPlayerDisconnect = 30, + clc_ServerStatus = 31, + clc_RequestPause = 33, + clc_CmdKeyValues = 34, + clc_RconServerDetails = 35, + clc_HltvReplay = 36, + clc_Diagnostic = 37, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/CMsgGameServerInfo_ServerType.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/CMsgGameServerInfo_ServerType.cs index 44f6a53aa..138e8ebda 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/CMsgGameServerInfo_ServerType.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/CMsgGameServerInfo_ServerType.cs @@ -1,9 +1,8 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum CMsgGameServerInfo_ServerType { - UNSPECIFIED = 0, - GAME = 1, - PROXY = 2, -} + UNSPECIFIED = 0, + GAME = 1, + PROXY = 2, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/CP2P_Voice_Handler_Flags.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/CP2P_Voice_Handler_Flags.cs index 150912ae3..7845e25f3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/CP2P_Voice_Handler_Flags.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/CP2P_Voice_Handler_Flags.cs @@ -1,7 +1,6 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum CP2P_Voice_Handler_Flags { - Played_Audio = 1, -} + Played_Audio = 1, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/DIALOG_TYPE.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/DIALOG_TYPE.cs index 0d6fe878f..49b8db82b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/DIALOG_TYPE.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/DIALOG_TYPE.cs @@ -1,11 +1,10 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum DIALOG_TYPE { - DIALOG_MSG = 0, - DIALOG_MENU = 1, - DIALOG_TEXT = 2, - DIALOG_ENTRY = 3, - DIALOG_ASKCONNECT = 4, -} + DIALOG_MSG = 0, + DIALOG_MENU = 1, + DIALOG_TEXT = 2, + DIALOG_ENTRY = 3, + DIALOG_ASKCONNECT = 4, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EBaseClientMessages.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EBaseClientMessages.cs index 57ca53c13..596afa70d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EBaseClientMessages.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EBaseClientMessages.cs @@ -1,14 +1,13 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum EBaseClientMessages { - CM_CustomGameEvent = 280, - CM_CustomGameEventBounce = 281, - CM_ClientUIEvent = 282, - CM_DevPaletteVisibilityChanged = 283, - CM_WorldUIControllerHasPanelChanged = 284, - CM_RotateAnchor = 285, - CM_ListenForResponseFound = 286, - CM_MAX_BASE = 300, -} + CM_CustomGameEvent = 280, + CM_CustomGameEventBounce = 281, + CM_ClientUIEvent = 282, + CM_DevPaletteVisibilityChanged = 283, + CM_WorldUIControllerHasPanelChanged = 284, + CM_RotateAnchor = 285, + CM_ListenForResponseFound = 286, + CM_MAX_BASE = 300, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EBaseEntityMessages.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EBaseEntityMessages.cs index b2a0c3da2..93135bf2b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EBaseEntityMessages.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EBaseEntityMessages.cs @@ -1,12 +1,11 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum EBaseEntityMessages { - EM_PlayJingle = 136, - EM_ScreenOverlay = 137, - EM_RemoveAllDecals = 138, - EM_PropagateForce = 139, - EM_DoSpark = 140, - EM_FixAngle = 141, -} + EM_PlayJingle = 136, + EM_ScreenOverlay = 137, + EM_RemoveAllDecals = 138, + EM_PropagateForce = 139, + EM_DoSpark = 140, + EM_FixAngle = 141, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EBaseGameEvents.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EBaseGameEvents.cs index 8146de4b5..bcb532df0 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EBaseGameEvents.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EBaseGameEvents.cs @@ -1,19 +1,18 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum EBaseGameEvents { - GE_VDebugGameSessionIDEvent = 200, - GE_PlaceDecalEvent = 201, - GE_ClearWorldDecalsEvent = 202, - GE_ClearEntityDecalsEvent = 203, - GE_ClearDecalsForEntityEvent = 204, - GE_Source1LegacyGameEventList = 205, - GE_Source1LegacyListenEvents = 206, - GE_Source1LegacyGameEvent = 207, - GE_SosStartSoundEvent = 208, - GE_SosStopSoundEvent = 209, - GE_SosSetSoundEventParams = 210, - GE_SosSetLibraryStackFields = 211, - GE_SosStopSoundEventHash = 212, -} + GE_VDebugGameSessionIDEvent = 200, + GE_PlaceDecalEvent = 201, + GE_ClearWorldDecalsEvent = 202, + GE_ClearEntityDecalsEvent = 203, + GE_ClearDecalsForEntityEvent = 204, + GE_Source1LegacyGameEventList = 205, + GE_Source1LegacyListenEvents = 206, + GE_Source1LegacyGameEvent = 207, + GE_SosStartSoundEvent = 208, + GE_SosStopSoundEvent = 209, + GE_SosSetSoundEventParams = 210, + GE_SosSetLibraryStackFields = 211, + GE_SosStopSoundEventHash = 212, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EBasePredictionEvents.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EBasePredictionEvents.cs index 1ad3d8686..a11ac7bea 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EBasePredictionEvents.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EBasePredictionEvents.cs @@ -1,9 +1,8 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum EBasePredictionEvents { - BPE_StringCommand = 128, - BPE_Teleport = 130, - BPE_Diagnostic = 16384, -} + BPE_StringCommand = 128, + BPE_Teleport = 130, + BPE_Diagnostic = 16384, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EBaseUserMessages.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EBaseUserMessages.cs index b27278e05..29293bb9d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EBaseUserMessages.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EBaseUserMessages.cs @@ -1,57 +1,56 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum EBaseUserMessages { - UM_AchievementEvent = 101, - UM_CloseCaption = 102, - UM_CloseCaptionDirect = 103, - UM_CurrentTimescale = 104, - UM_DesiredTimescale = 105, - UM_Fade = 106, - UM_GameTitle = 107, - UM_HudMsg = 110, - UM_HudText = 111, - UM_ColoredText = 113, - UM_RequestState = 114, - UM_ResetHUD = 115, - UM_Rumble = 116, - UM_SayText = 117, - UM_SayText2 = 118, - UM_SayTextChannel = 119, - UM_Shake = 120, - UM_ShakeDir = 121, - UM_WaterShake = 122, - UM_TextMsg = 124, - UM_ScreenTilt = 125, - UM_VoiceMask = 128, - UM_SendAudio = 130, - UM_ItemPickup = 131, - UM_AmmoDenied = 132, - UM_ShowMenu = 134, - UM_CreditsMsg = 135, - UM_CloseCaptionPlaceholder = 142, - UM_CameraTransition = 143, - UM_AudioParameter = 144, - UM_ParticleManager = 145, - UM_HudError = 146, - UM_CustomGameEvent = 148, - UM_AnimGraphUpdate = 149, - UM_HapticsManagerPulse = 150, - UM_HapticsManagerEffect = 151, - UM_UpdateCssClasses = 153, - UM_ServerFrameTime = 154, - UM_LagCompensationError = 155, - UM_RequestDllStatus = 156, - UM_RequestUtilAction = 157, - UM_UtilActionResponse = 158, - UM_DllStatusResponse = 159, - UM_RequestInventory = 160, - UM_InventoryResponse = 161, - UM_RequestDiagnostic = 162, - UM_DiagnosticResponse = 163, - UM_ExtraUserData = 164, - UM_NotifyResponseFound = 165, - UM_PlayResponseConditional = 166, - UM_MAX_BASE = 200, -} + UM_AchievementEvent = 101, + UM_CloseCaption = 102, + UM_CloseCaptionDirect = 103, + UM_CurrentTimescale = 104, + UM_DesiredTimescale = 105, + UM_Fade = 106, + UM_GameTitle = 107, + UM_HudMsg = 110, + UM_HudText = 111, + UM_ColoredText = 113, + UM_RequestState = 114, + UM_ResetHUD = 115, + UM_Rumble = 116, + UM_SayText = 117, + UM_SayText2 = 118, + UM_SayTextChannel = 119, + UM_Shake = 120, + UM_ShakeDir = 121, + UM_WaterShake = 122, + UM_TextMsg = 124, + UM_ScreenTilt = 125, + UM_VoiceMask = 128, + UM_SendAudio = 130, + UM_ItemPickup = 131, + UM_AmmoDenied = 132, + UM_ShowMenu = 134, + UM_CreditsMsg = 135, + UM_CloseCaptionPlaceholder = 142, + UM_CameraTransition = 143, + UM_AudioParameter = 144, + UM_ParticleManager = 145, + UM_HudError = 146, + UM_CustomGameEvent = 148, + UM_AnimGraphUpdate = 149, + UM_HapticsManagerPulse = 150, + UM_HapticsManagerEffect = 151, + UM_UpdateCssClasses = 153, + UM_ServerFrameTime = 154, + UM_LagCompensationError = 155, + UM_RequestDllStatus = 156, + UM_RequestUtilAction = 157, + UM_UtilActionResponse = 158, + UM_DllStatusResponse = 159, + UM_RequestInventory = 160, + UM_InventoryResponse = 161, + UM_RequestDiagnostic = 162, + UM_DiagnosticResponse = 163, + UM_ExtraUserData = 164, + UM_NotifyResponseFound = 165, + UM_PlayResponseConditional = 166, + UM_MAX_BASE = 200, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECSPredictionEvents.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECSPredictionEvents.cs index 72b5ceff7..3e0b2a23f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECSPredictionEvents.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECSPredictionEvents.cs @@ -1,8 +1,7 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum ECSPredictionEvents { - CSPE_DamageTag = 1, - CSPE_AddAimPunch = 3, -} + CSPE_DamageTag = 1, + CSPE_AddAimPunch = 3, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECSUsrMsg_DisconnectToLobby_Action.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECSUsrMsg_DisconnectToLobby_Action.cs index afab65841..8832c703d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECSUsrMsg_DisconnectToLobby_Action.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECSUsrMsg_DisconnectToLobby_Action.cs @@ -1,8 +1,7 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum ECSUsrMsg_DisconnectToLobby_Action { - k_ECSUsrMsg_DisconnectToLobby_Action_Default = 0, - k_ECSUsrMsg_DisconnectToLobby_Action_GoQueue = 1, -} + k_ECSUsrMsg_DisconnectToLobby_Action_Default = 0, + k_ECSUsrMsg_DisconnectToLobby_Action_GoQueue = 1, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EClientPersonaStateFlag.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EClientPersonaStateFlag.cs index f778a89ef..ee1d1766b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EClientPersonaStateFlag.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EClientPersonaStateFlag.cs @@ -1,20 +1,19 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum EClientPersonaStateFlag { - k_EClientPersonaStateFlagStatus = 1, - k_EClientPersonaStateFlagPlayerName = 2, - k_EClientPersonaStateFlagQueryPort = 4, - k_EClientPersonaStateFlagSourceID = 8, - k_EClientPersonaStateFlagPresence = 16, - k_EClientPersonaStateFlagLastSeen = 64, - k_EClientPersonaStateFlagUserClanRank = 128, - k_EClientPersonaStateGameExtraInfo = 256, - k_EClientPersonaStateGameDataBlob = 512, - k_EClientPersonaStateFlagClanData = 1024, - k_EClientPersonaStateFlagFacebook = 2048, - k_EClientPersonaStateFlagRichPresence = 4096, - k_EClientPersonaStateFlagBroadcast = 8192, - k_EClientPersonaStateFlagWatching = 16384, -} + k_EClientPersonaStateFlagStatus = 1, + k_EClientPersonaStateFlagPlayerName = 2, + k_EClientPersonaStateFlagQueryPort = 4, + k_EClientPersonaStateFlagSourceID = 8, + k_EClientPersonaStateFlagPresence = 16, + k_EClientPersonaStateFlagLastSeen = 64, + k_EClientPersonaStateFlagUserClanRank = 128, + k_EClientPersonaStateGameExtraInfo = 256, + k_EClientPersonaStateGameDataBlob = 512, + k_EClientPersonaStateFlagClanData = 1024, + k_EClientPersonaStateFlagFacebook = 2048, + k_EClientPersonaStateFlagRichPresence = 4096, + k_EClientPersonaStateFlagBroadcast = 8192, + k_EClientPersonaStateFlagWatching = 16384, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EClientReportingVersion.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EClientReportingVersion.cs index 9e7dc445e..0184f5fd6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EClientReportingVersion.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EClientReportingVersion.cs @@ -1,9 +1,8 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum EClientReportingVersion { - k_EClientReportingVersion_OldVersion = 0, - k_EClientReportingVersion_BetaVersion = 1, - k_EClientReportingVersion_SupportsTrustedMode = 2, -} + k_EClientReportingVersion_OldVersion = 0, + k_EClientReportingVersion_BetaVersion = 1, + k_EClientReportingVersion_SupportsTrustedMode = 2, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EClientUIEvent.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EClientUIEvent.cs index 0e6d5a49b..fe6a751ea 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EClientUIEvent.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EClientUIEvent.cs @@ -1,9 +1,8 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum EClientUIEvent { - EClientUIEvent_Invalid = 0, - EClientUIEvent_DialogFinished = 1, - EClientUIEvent_FireOutput = 2, -} + EClientUIEvent_Invalid = 0, + EClientUIEvent_DialogFinished = 1, + EClientUIEvent_FireOutput = 2, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECodecUsagePlatform.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECodecUsagePlatform.cs index c76ce4dfe..08ff7ba3f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECodecUsagePlatform.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECodecUsagePlatform.cs @@ -1,11 +1,10 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum ECodecUsagePlatform { - k_ECodecUsagePlatformUnknown = 0, - k_ECodecUsagePlatformWindows = 1, - k_ECodecUsagePlatformMacOS = 2, - k_ECodecUsagePlatformLinux = 3, - k_ECodecUsagePlatformSteamDeck = 4, -} + k_ECodecUsagePlatformUnknown = 0, + k_ECodecUsagePlatformWindows = 1, + k_ECodecUsagePlatformMacOS = 2, + k_ECodecUsagePlatformLinux = 3, + k_ECodecUsagePlatformSteamDeck = 4, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECodecUsageReason.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECodecUsageReason.cs index aab7a16d2..1746b4a18 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECodecUsageReason.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECodecUsageReason.cs @@ -1,10 +1,9 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum ECodecUsageReason { - k_ECodecUsageReasonUnknown = 0, - k_ECodecUsageReasonRemotePlay = 1, - k_ECodecUsageReasonBroadcasting = 2, - k_ECodecUsageReasonGameVideo = 3, -} + k_ECodecUsageReasonUnknown = 0, + k_ECodecUsageReasonRemotePlay = 1, + k_ECodecUsageReasonBroadcasting = 2, + k_ECodecUsageReasonGameVideo = 3, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECommunityItemAttribute.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECommunityItemAttribute.cs index 4d1c3b45f..4c5b7e218 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECommunityItemAttribute.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECommunityItemAttribute.cs @@ -1,16 +1,15 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum ECommunityItemAttribute { - k_ECommunityItemAttribute_Invalid = 0, - k_ECommunityItemAttribute_CardBorder = 1, - k_ECommunityItemAttribute_Level = 2, - k_ECommunityItemAttribute_IssueNumber = 3, - k_ECommunityItemAttribute_TradableTime = 4, - k_ECommunityItemAttribute_StorePackageID = 5, - k_ECommunityItemAttribute_CommunityItemAppID = 6, - k_ECommunityItemAttribute_CommunityItemType = 7, - k_ECommunityItemAttribute_ProfileModiferEnabled = 8, - k_ECommunityItemAttribute_ExpiryTime = 9, -} + k_ECommunityItemAttribute_Invalid = 0, + k_ECommunityItemAttribute_CardBorder = 1, + k_ECommunityItemAttribute_Level = 2, + k_ECommunityItemAttribute_IssueNumber = 3, + k_ECommunityItemAttribute_TradableTime = 4, + k_ECommunityItemAttribute_StorePackageID = 5, + k_ECommunityItemAttribute_CommunityItemAppID = 6, + k_ECommunityItemAttribute_CommunityItemType = 7, + k_ECommunityItemAttribute_ProfileModiferEnabled = 8, + k_ECommunityItemAttribute_ExpiryTime = 9, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECommunityItemClass.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECommunityItemClass.cs index da009a519..f084b904a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECommunityItemClass.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECommunityItemClass.cs @@ -1,17 +1,16 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum ECommunityItemClass { - k_ECommunityItemClass_Invalid = 0, - k_ECommunityItemClass_Badge = 1, - k_ECommunityItemClass_GameCard = 2, - k_ECommunityItemClass_ProfileBackground = 3, - k_ECommunityItemClass_Emoticon = 4, - k_ECommunityItemClass_BoosterPack = 5, - k_ECommunityItemClass_Consumable = 6, - k_ECommunityItemClass_GameGoo = 7, - k_ECommunityItemClass_ProfileModifier = 8, - k_ECommunityItemClass_Scene = 9, - k_ECommunityItemClass_SalienItem = 10, -} + k_ECommunityItemClass_Invalid = 0, + k_ECommunityItemClass_Badge = 1, + k_ECommunityItemClass_GameCard = 2, + k_ECommunityItemClass_ProfileBackground = 3, + k_ECommunityItemClass_Emoticon = 4, + k_ECommunityItemClass_BoosterPack = 5, + k_ECommunityItemClass_Consumable = 6, + k_ECommunityItemClass_GameGoo = 7, + k_ECommunityItemClass_ProfileModifier = 8, + k_ECommunityItemClass_Scene = 9, + k_ECommunityItemClass_SalienItem = 10, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECsgoGCMsg.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECsgoGCMsg.cs index 003f942d8..ff4b84955 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECsgoGCMsg.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECsgoGCMsg.cs @@ -1,114 +1,113 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum ECsgoGCMsg { - k_EMsgGCCStrike15_v2_Base = 9100, - k_EMsgGCCStrike15_v2_MatchmakingStart = 9101, - k_EMsgGCCStrike15_v2_MatchmakingStop = 9102, - k_EMsgGCCStrike15_v2_MatchmakingClient2ServerPing = 9103, - k_EMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate = 9104, - k_EMsgGCCStrike15_v2_MatchmakingServerReservationResponse = 9106, - k_EMsgGCCStrike15_v2_MatchmakingGC2ClientReserve = 9107, - k_EMsgGCCStrike15_v2_MatchmakingClient2GCHello = 9109, - k_EMsgGCCStrike15_v2_MatchmakingGC2ClientHello = 9110, - k_EMsgGCCStrike15_v2_MatchmakingGC2ClientAbandon = 9112, - k_EMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdate = 9117, - k_EMsgGCCStrike15_v2_ServerNotificationForUserPenalty = 9118, - k_EMsgGCCStrike15_v2_ClientReportPlayer = 9119, - k_EMsgGCCStrike15_v2_ClientReportServer = 9120, - k_EMsgGCCStrike15_v2_ClientCommendPlayer = 9121, - k_EMsgGCCStrike15_v2_ClientReportResponse = 9122, - k_EMsgGCCStrike15_v2_ClientCommendPlayerQuery = 9123, - k_EMsgGCCStrike15_v2_ClientCommendPlayerQueryResponse = 9124, - k_EMsgGCCStrike15_v2_WatchInfoUsers = 9126, - k_EMsgGCCStrike15_v2_ClientRequestPlayersProfile = 9127, - k_EMsgGCCStrike15_v2_PlayersProfile = 9128, - k_EMsgGCCStrike15_v2_PlayerOverwatchCaseUpdate = 9131, - k_EMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment = 9132, - k_EMsgGCCStrike15_v2_PlayerOverwatchCaseStatus = 9133, - k_EMsgGCCStrike15_v2_GC2ClientTextMsg = 9134, - k_EMsgGCCStrike15_v2_Client2GCTextMsg = 9135, - k_EMsgGCCStrike15_v2_MatchEndRunRewardDrops = 9136, - k_EMsgGCCStrike15_v2_MatchEndRewardDropsNotification = 9137, - k_EMsgGCCStrike15_v2_ClientRequestWatchInfoFriends2 = 9138, - k_EMsgGCCStrike15_v2_MatchList = 9139, - k_EMsgGCCStrike15_v2_MatchListRequestCurrentLiveGames = 9140, - k_EMsgGCCStrike15_v2_MatchListRequestRecentUserGames = 9141, - k_EMsgGCCStrike15_v2_GC2ServerReservationUpdate = 9142, - k_EMsgGCCStrike15_v2_ClientVarValueNotificationInfo = 9144, - k_EMsgGCCStrike15_v2_MatchListRequestTournamentGames = 9146, - k_EMsgGCCStrike15_v2_MatchListRequestFullGameInfo = 9147, - k_EMsgGCCStrike15_v2_GiftsLeaderboardRequest = 9148, - k_EMsgGCCStrike15_v2_GiftsLeaderboardResponse = 9149, - k_EMsgGCCStrike15_v2_ServerVarValueNotificationInfo = 9150, - k_EMsgGCCStrike15_v2_ClientSubmitSurveyVote = 9152, - k_EMsgGCCStrike15_v2_Server2GCClientValidate = 9153, - k_EMsgGCCStrike15_v2_MatchListRequestLiveGameForUser = 9154, - k_EMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequest = 9156, - k_EMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponse = 9157, - k_EMsgGCCStrike15_v2_AccountPrivacySettings = 9158, - k_EMsgGCCStrike15_v2_SetMyActivityInfo = 9159, - k_EMsgGCCStrike15_v2_MatchListRequestTournamentPredictions = 9160, - k_EMsgGCCStrike15_v2_MatchListUploadTournamentPredictions = 9161, - k_EMsgGCCStrike15_v2_DraftSummary = 9162, - k_EMsgGCCStrike15_v2_ClientRequestJoinFriendData = 9163, - k_EMsgGCCStrike15_v2_ClientRequestJoinServerData = 9164, - k_EMsgGCCStrike15_v2_GC2ClientTournamentInfo = 9167, - k_EMsgGC_GlobalGame_Subscribe = 9168, - k_EMsgGC_GlobalGame_Unsubscribe = 9169, - k_EMsgGC_GlobalGame_Play = 9170, - k_EMsgGCCStrike15_v2_AcknowledgePenalty = 9171, - k_EMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin = 9172, - k_EMsgGCCStrike15_v2_GC2ClientGlobalStats = 9173, - k_EMsgGCCStrike15_v2_Client2GCStreamUnlock = 9174, - k_EMsgGCCStrike15_v2_FantasyRequestClientData = 9175, - k_EMsgGCCStrike15_v2_FantasyUpdateClientData = 9176, - k_EMsgGCCStrike15_v2_GCToClientSteamdatagramTicket = 9177, - k_EMsgGCCStrike15_v2_ClientToGCRequestTicket = 9178, - k_EMsgGCCStrike15_v2_ClientToGCRequestElevate = 9179, - k_EMsgGCCStrike15_v2_GlobalChat = 9180, - k_EMsgGCCStrike15_v2_GlobalChat_Subscribe = 9181, - k_EMsgGCCStrike15_v2_GlobalChat_Unsubscribe = 9182, - k_EMsgGCCStrike15_v2_ClientAuthKeyCode = 9183, - k_EMsgGCCStrike15_v2_GotvSyncPacket = 9184, - k_EMsgGCCStrike15_v2_ClientPlayerDecalSign = 9185, - k_EMsgGCCStrike15_v2_ClientLogonFatalError = 9187, - k_EMsgGCCStrike15_v2_ClientPollState = 9188, - k_EMsgGCCStrike15_v2_Party_Register = 9189, - k_EMsgGCCStrike15_v2_Party_Unregister = 9190, - k_EMsgGCCStrike15_v2_Party_Search = 9191, - k_EMsgGCCStrike15_v2_Party_Invite = 9192, - k_EMsgGCCStrike15_v2_Account_RequestCoPlays = 9193, - k_EMsgGCCStrike15_v2_ClientGCRankUpdate = 9194, - k_EMsgGCCStrike15_v2_ClientRequestOffers = 9195, - k_EMsgGCCStrike15_v2_ClientAccountBalance = 9196, - k_EMsgGCCStrike15_v2_ClientPartyJoinRelay = 9197, - k_EMsgGCCStrike15_v2_ClientPartyWarning = 9198, - k_EMsgGCCStrike15_v2_SetEventFavorite = 9200, - k_EMsgGCCStrike15_v2_GetEventFavorites_Request = 9201, - k_EMsgGCCStrike15_v2_ClientPerfReport = 9202, - k_EMsgGCCStrike15_v2_GetEventFavorites_Response = 9203, - k_EMsgGCCStrike15_v2_ClientRequestSouvenir = 9204, - k_EMsgGCCStrike15_v2_ClientReportValidation = 9205, - k_EMsgGCCStrike15_v2_GC2ClientRefuseSecureMode = 9206, - k_EMsgGCCStrike15_v2_GC2ClientRequestValidation = 9207, - k_EMsgGCCStrike15_v2_ClientRedeemMissionReward = 9209, - k_EMsgGCCStrike15_ClientDeepStats = 9210, - k_EMsgGCCStrike15_StartAgreementSessionInGame = 9211, - k_EMsgGCCStrike15_v2_GC2ClientInitSystem = 9212, - k_EMsgGCCStrike15_v2_GC2ClientInitSystem_Response = 9213, - k_EMsgGCCStrike15_v2_PrivateQueues = 9214, - k_EMsgGCCStrike15_v2_MatchListTournamentOperatorMgmt = 9215, - k_EMsgGCCStrike15_v2_BetaEnrollment = 9217, - k_EMsgGCCStrike15_v2_SetPlayerLeaderboardSafeName = 9218, - k_EMsgGCCStrike15_v2_ClientRedeemFreeReward = 9219, - k_EMsgGCCStrike15_v2_ClientNetworkConfig = 9220, - k_EMsgGCCStrike15_v2_GC2ClientNotifyXPShop = 9221, - k_EMsgGCCStrike15_v2_Client2GcAckXPShopTracks = 9222, - k_EMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStats = 9223, - k_EMsgGCCStrike15_v2_PremierSeasonSummary = 9224, - k_EMsgGCCStrike15_v2_RequestRecurringMissionSchedule = 9225, - k_EMsgGCCStrike15_v2_RecurringMissionSchema = 9226, - k_EMsgGCCStrike15_v2_VolatileItemClaimReward = 9227, -} + k_EMsgGCCStrike15_v2_Base = 9100, + k_EMsgGCCStrike15_v2_MatchmakingStart = 9101, + k_EMsgGCCStrike15_v2_MatchmakingStop = 9102, + k_EMsgGCCStrike15_v2_MatchmakingClient2ServerPing = 9103, + k_EMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate = 9104, + k_EMsgGCCStrike15_v2_MatchmakingServerReservationResponse = 9106, + k_EMsgGCCStrike15_v2_MatchmakingGC2ClientReserve = 9107, + k_EMsgGCCStrike15_v2_MatchmakingClient2GCHello = 9109, + k_EMsgGCCStrike15_v2_MatchmakingGC2ClientHello = 9110, + k_EMsgGCCStrike15_v2_MatchmakingGC2ClientAbandon = 9112, + k_EMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdate = 9117, + k_EMsgGCCStrike15_v2_ServerNotificationForUserPenalty = 9118, + k_EMsgGCCStrike15_v2_ClientReportPlayer = 9119, + k_EMsgGCCStrike15_v2_ClientReportServer = 9120, + k_EMsgGCCStrike15_v2_ClientCommendPlayer = 9121, + k_EMsgGCCStrike15_v2_ClientReportResponse = 9122, + k_EMsgGCCStrike15_v2_ClientCommendPlayerQuery = 9123, + k_EMsgGCCStrike15_v2_ClientCommendPlayerQueryResponse = 9124, + k_EMsgGCCStrike15_v2_WatchInfoUsers = 9126, + k_EMsgGCCStrike15_v2_ClientRequestPlayersProfile = 9127, + k_EMsgGCCStrike15_v2_PlayersProfile = 9128, + k_EMsgGCCStrike15_v2_PlayerOverwatchCaseUpdate = 9131, + k_EMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment = 9132, + k_EMsgGCCStrike15_v2_PlayerOverwatchCaseStatus = 9133, + k_EMsgGCCStrike15_v2_GC2ClientTextMsg = 9134, + k_EMsgGCCStrike15_v2_Client2GCTextMsg = 9135, + k_EMsgGCCStrike15_v2_MatchEndRunRewardDrops = 9136, + k_EMsgGCCStrike15_v2_MatchEndRewardDropsNotification = 9137, + k_EMsgGCCStrike15_v2_ClientRequestWatchInfoFriends2 = 9138, + k_EMsgGCCStrike15_v2_MatchList = 9139, + k_EMsgGCCStrike15_v2_MatchListRequestCurrentLiveGames = 9140, + k_EMsgGCCStrike15_v2_MatchListRequestRecentUserGames = 9141, + k_EMsgGCCStrike15_v2_GC2ServerReservationUpdate = 9142, + k_EMsgGCCStrike15_v2_ClientVarValueNotificationInfo = 9144, + k_EMsgGCCStrike15_v2_MatchListRequestTournamentGames = 9146, + k_EMsgGCCStrike15_v2_MatchListRequestFullGameInfo = 9147, + k_EMsgGCCStrike15_v2_GiftsLeaderboardRequest = 9148, + k_EMsgGCCStrike15_v2_GiftsLeaderboardResponse = 9149, + k_EMsgGCCStrike15_v2_ServerVarValueNotificationInfo = 9150, + k_EMsgGCCStrike15_v2_ClientSubmitSurveyVote = 9152, + k_EMsgGCCStrike15_v2_Server2GCClientValidate = 9153, + k_EMsgGCCStrike15_v2_MatchListRequestLiveGameForUser = 9154, + k_EMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequest = 9156, + k_EMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponse = 9157, + k_EMsgGCCStrike15_v2_AccountPrivacySettings = 9158, + k_EMsgGCCStrike15_v2_SetMyActivityInfo = 9159, + k_EMsgGCCStrike15_v2_MatchListRequestTournamentPredictions = 9160, + k_EMsgGCCStrike15_v2_MatchListUploadTournamentPredictions = 9161, + k_EMsgGCCStrike15_v2_DraftSummary = 9162, + k_EMsgGCCStrike15_v2_ClientRequestJoinFriendData = 9163, + k_EMsgGCCStrike15_v2_ClientRequestJoinServerData = 9164, + k_EMsgGCCStrike15_v2_GC2ClientTournamentInfo = 9167, + k_EMsgGC_GlobalGame_Subscribe = 9168, + k_EMsgGC_GlobalGame_Unsubscribe = 9169, + k_EMsgGC_GlobalGame_Play = 9170, + k_EMsgGCCStrike15_v2_AcknowledgePenalty = 9171, + k_EMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin = 9172, + k_EMsgGCCStrike15_v2_GC2ClientGlobalStats = 9173, + k_EMsgGCCStrike15_v2_Client2GCStreamUnlock = 9174, + k_EMsgGCCStrike15_v2_FantasyRequestClientData = 9175, + k_EMsgGCCStrike15_v2_FantasyUpdateClientData = 9176, + k_EMsgGCCStrike15_v2_GCToClientSteamdatagramTicket = 9177, + k_EMsgGCCStrike15_v2_ClientToGCRequestTicket = 9178, + k_EMsgGCCStrike15_v2_ClientToGCRequestElevate = 9179, + k_EMsgGCCStrike15_v2_GlobalChat = 9180, + k_EMsgGCCStrike15_v2_GlobalChat_Subscribe = 9181, + k_EMsgGCCStrike15_v2_GlobalChat_Unsubscribe = 9182, + k_EMsgGCCStrike15_v2_ClientAuthKeyCode = 9183, + k_EMsgGCCStrike15_v2_GotvSyncPacket = 9184, + k_EMsgGCCStrike15_v2_ClientPlayerDecalSign = 9185, + k_EMsgGCCStrike15_v2_ClientLogonFatalError = 9187, + k_EMsgGCCStrike15_v2_ClientPollState = 9188, + k_EMsgGCCStrike15_v2_Party_Register = 9189, + k_EMsgGCCStrike15_v2_Party_Unregister = 9190, + k_EMsgGCCStrike15_v2_Party_Search = 9191, + k_EMsgGCCStrike15_v2_Party_Invite = 9192, + k_EMsgGCCStrike15_v2_Account_RequestCoPlays = 9193, + k_EMsgGCCStrike15_v2_ClientGCRankUpdate = 9194, + k_EMsgGCCStrike15_v2_ClientRequestOffers = 9195, + k_EMsgGCCStrike15_v2_ClientAccountBalance = 9196, + k_EMsgGCCStrike15_v2_ClientPartyJoinRelay = 9197, + k_EMsgGCCStrike15_v2_ClientPartyWarning = 9198, + k_EMsgGCCStrike15_v2_SetEventFavorite = 9200, + k_EMsgGCCStrike15_v2_GetEventFavorites_Request = 9201, + k_EMsgGCCStrike15_v2_ClientPerfReport = 9202, + k_EMsgGCCStrike15_v2_GetEventFavorites_Response = 9203, + k_EMsgGCCStrike15_v2_ClientRequestSouvenir = 9204, + k_EMsgGCCStrike15_v2_ClientReportValidation = 9205, + k_EMsgGCCStrike15_v2_GC2ClientRefuseSecureMode = 9206, + k_EMsgGCCStrike15_v2_GC2ClientRequestValidation = 9207, + k_EMsgGCCStrike15_v2_ClientRedeemMissionReward = 9209, + k_EMsgGCCStrike15_ClientDeepStats = 9210, + k_EMsgGCCStrike15_StartAgreementSessionInGame = 9211, + k_EMsgGCCStrike15_v2_GC2ClientInitSystem = 9212, + k_EMsgGCCStrike15_v2_GC2ClientInitSystem_Response = 9213, + k_EMsgGCCStrike15_v2_PrivateQueues = 9214, + k_EMsgGCCStrike15_v2_MatchListTournamentOperatorMgmt = 9215, + k_EMsgGCCStrike15_v2_BetaEnrollment = 9217, + k_EMsgGCCStrike15_v2_SetPlayerLeaderboardSafeName = 9218, + k_EMsgGCCStrike15_v2_ClientRedeemFreeReward = 9219, + k_EMsgGCCStrike15_v2_ClientNetworkConfig = 9220, + k_EMsgGCCStrike15_v2_GC2ClientNotifyXPShop = 9221, + k_EMsgGCCStrike15_v2_Client2GcAckXPShopTracks = 9222, + k_EMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStats = 9223, + k_EMsgGCCStrike15_v2_PremierSeasonSummary = 9224, + k_EMsgGCCStrike15_v2_RequestRecurringMissionSchedule = 9225, + k_EMsgGCCStrike15_v2_RecurringMissionSchema = 9226, + k_EMsgGCCStrike15_v2_VolatileItemClaimReward = 9227, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECsgoGameEvents.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECsgoGameEvents.cs index 4c59195fb..6b141b457 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECsgoGameEvents.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECsgoGameEvents.cs @@ -1,10 +1,9 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum ECsgoGameEvents { - GE_PlayerAnimEventId = 450, - GE_RadioIconEventId = 451, - GE_FireBulletsId = 452, - GE_PlayerBulletHitId = 453, -} + GE_PlayerAnimEventId = 450, + GE_RadioIconEventId = 451, + GE_FireBulletsId = 452, + GE_PlayerBulletHitId = 453, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECsgoSteamUserStat.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECsgoSteamUserStat.cs index 2f84878b3..d88a7128e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECsgoSteamUserStat.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECsgoSteamUserStat.cs @@ -1,9 +1,8 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum ECsgoSteamUserStat { - k_ECsgoSteamUserStat_XpEarnedGames = 1, - k_ECsgoSteamUserStat_MatchWinsCompetitive = 2, - k_ECsgoSteamUserStat_SurvivedDangerZone = 3, -} + k_ECsgoSteamUserStat_XpEarnedGames = 1, + k_ECsgoSteamUserStat_MatchWinsCompetitive = 2, + k_ECsgoSteamUserStat_SurvivedDangerZone = 3, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECstrike15UserMessages.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECstrike15UserMessages.cs index 38f3224e2..12fd4b724 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECstrike15UserMessages.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ECstrike15UserMessages.cs @@ -1,83 +1,82 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum ECstrike15UserMessages { - CS_UM_VGUIMenu = 301, - CS_UM_Geiger = 302, - CS_UM_Train = 303, - CS_UM_HudText = 304, - CS_UM_SayText = 305, - CS_UM_SayText2 = 306, - CS_UM_TextMsg = 307, - CS_UM_HudMsg = 308, - CS_UM_ResetHud = 309, - CS_UM_GameTitle = 310, - CS_UM_Shake = 312, - CS_UM_Fade = 313, - CS_UM_Rumble = 314, - CS_UM_CloseCaption = 315, - CS_UM_CloseCaptionDirect = 316, - CS_UM_SendAudio = 317, - CS_UM_RawAudio = 318, - CS_UM_VoiceMask = 319, - CS_UM_RequestState = 320, - CS_UM_Damage = 321, - CS_UM_RadioText = 322, - CS_UM_HintText = 323, - CS_UM_KeyHintText = 324, - CS_UM_ProcessSpottedEntityUpdate = 325, - CS_UM_ReloadEffect = 326, - CS_UM_AdjustMoney = 327, - CS_UM_UpdateTeamMoney = 328, - CS_UM_StopSpectatorMode = 329, - CS_UM_KillCam = 330, - CS_UM_DesiredTimescale = 331, - CS_UM_CurrentTimescale = 332, - CS_UM_AchievementEvent = 333, - CS_UM_MatchEndConditions = 334, - CS_UM_DisconnectToLobby = 335, - CS_UM_PlayerStatsUpdate = 336, - CS_UM_ClientInfo = 339, - CS_UM_XRankGet = 340, - CS_UM_XRankUpd = 341, - CS_UM_CallVoteFailed = 345, - CS_UM_VoteStart = 346, - CS_UM_VotePass = 347, - CS_UM_VoteFailed = 348, - CS_UM_VoteSetup = 349, - CS_UM_ServerRankRevealAll = 350, - CS_UM_SendLastKillerDamageToClient = 351, - CS_UM_ServerRankUpdate = 352, - CS_UM_ItemPickup = 353, - CS_UM_ShowMenu = 354, - CS_UM_BarTime = 355, - CS_UM_AmmoDenied = 356, - CS_UM_MarkAchievement = 357, - CS_UM_MatchStatsUpdate = 358, - CS_UM_ItemDrop = 359, - CS_UM_SendPlayerItemDrops = 361, - CS_UM_RoundBackupFilenames = 362, - CS_UM_SendPlayerItemFound = 363, - CS_UM_ReportHit = 364, - CS_UM_XpUpdate = 365, - CS_UM_QuestProgress = 366, - CS_UM_ScoreLeaderboardData = 367, - CS_UM_PlayerDecalDigitalSignature = 368, - CS_UM_WeaponSound = 369, - CS_UM_UpdateScreenHealthBar = 370, - CS_UM_EntityOutlineHighlight = 371, - CS_UM_SSUI = 372, - CS_UM_SurvivalStats = 373, - CS_UM_DisconnectToLobby2 = 374, - CS_UM_EndOfMatchAllPlayersData = 375, - CS_UM_PostRoundDamageReport = 376, - CS_UM_RoundEndReportData = 379, - CS_UM_CurrentRoundOdds = 380, - CS_UM_DeepStats = 381, - CS_UM_ShootInfo = 383, - CS_UM_CounterStrafe = 385, - CS_UM_DamagePrediction = 386, - CS_UM_RecurringMissionSchema = 387, - CS_UM_SendPlayerLoadout = 388, -} + CS_UM_VGUIMenu = 301, + CS_UM_Geiger = 302, + CS_UM_Train = 303, + CS_UM_HudText = 304, + CS_UM_SayText = 305, + CS_UM_SayText2 = 306, + CS_UM_TextMsg = 307, + CS_UM_HudMsg = 308, + CS_UM_ResetHud = 309, + CS_UM_GameTitle = 310, + CS_UM_Shake = 312, + CS_UM_Fade = 313, + CS_UM_Rumble = 314, + CS_UM_CloseCaption = 315, + CS_UM_CloseCaptionDirect = 316, + CS_UM_SendAudio = 317, + CS_UM_RawAudio = 318, + CS_UM_VoiceMask = 319, + CS_UM_RequestState = 320, + CS_UM_Damage = 321, + CS_UM_RadioText = 322, + CS_UM_HintText = 323, + CS_UM_KeyHintText = 324, + CS_UM_ProcessSpottedEntityUpdate = 325, + CS_UM_ReloadEffect = 326, + CS_UM_AdjustMoney = 327, + CS_UM_UpdateTeamMoney = 328, + CS_UM_StopSpectatorMode = 329, + CS_UM_KillCam = 330, + CS_UM_DesiredTimescale = 331, + CS_UM_CurrentTimescale = 332, + CS_UM_AchievementEvent = 333, + CS_UM_MatchEndConditions = 334, + CS_UM_DisconnectToLobby = 335, + CS_UM_PlayerStatsUpdate = 336, + CS_UM_ClientInfo = 339, + CS_UM_XRankGet = 340, + CS_UM_XRankUpd = 341, + CS_UM_CallVoteFailed = 345, + CS_UM_VoteStart = 346, + CS_UM_VotePass = 347, + CS_UM_VoteFailed = 348, + CS_UM_VoteSetup = 349, + CS_UM_ServerRankRevealAll = 350, + CS_UM_SendLastKillerDamageToClient = 351, + CS_UM_ServerRankUpdate = 352, + CS_UM_ItemPickup = 353, + CS_UM_ShowMenu = 354, + CS_UM_BarTime = 355, + CS_UM_AmmoDenied = 356, + CS_UM_MarkAchievement = 357, + CS_UM_MatchStatsUpdate = 358, + CS_UM_ItemDrop = 359, + CS_UM_SendPlayerItemDrops = 361, + CS_UM_RoundBackupFilenames = 362, + CS_UM_SendPlayerItemFound = 363, + CS_UM_ReportHit = 364, + CS_UM_XpUpdate = 365, + CS_UM_QuestProgress = 366, + CS_UM_ScoreLeaderboardData = 367, + CS_UM_PlayerDecalDigitalSignature = 368, + CS_UM_WeaponSound = 369, + CS_UM_UpdateScreenHealthBar = 370, + CS_UM_EntityOutlineHighlight = 371, + CS_UM_SSUI = 372, + CS_UM_SurvivalStats = 373, + CS_UM_DisconnectToLobby2 = 374, + CS_UM_EndOfMatchAllPlayersData = 375, + CS_UM_PostRoundDamageReport = 376, + CS_UM_RoundEndReportData = 379, + CS_UM_CurrentRoundOdds = 380, + CS_UM_DeepStats = 381, + CS_UM_ShootInfo = 383, + CS_UM_CounterStrafe = 385, + CS_UM_DamagePrediction = 386, + CS_UM_RecurringMissionSchema = 387, + CS_UM_SendPlayerLoadout = 388, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EDemoCommands.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EDemoCommands.cs index d18af444e..7de04c708 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EDemoCommands.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EDemoCommands.cs @@ -1,28 +1,27 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum EDemoCommands { - DEM_Error = -1, - DEM_Stop = 0, - DEM_FileHeader = 1, - DEM_FileInfo = 2, - DEM_SyncTick = 3, - DEM_SendTables = 4, - DEM_ClassInfo = 5, - DEM_StringTables = 6, - DEM_Packet = 7, - DEM_SignonPacket = 8, - DEM_ConsoleCmd = 9, - DEM_CustomData = 10, - DEM_CustomDataCallbacks = 11, - DEM_UserCmd = 12, - DEM_FullPacket = 13, - DEM_SaveGame = 14, - DEM_SpawnGroups = 15, - DEM_AnimationData = 16, - DEM_AnimationHeader = 17, - DEM_Recovery = 18, - DEM_Max = 19, - DEM_IsCompressed = 64, -} + DEM_Error = -1, + DEM_Stop = 0, + DEM_FileHeader = 1, + DEM_FileInfo = 2, + DEM_SyncTick = 3, + DEM_SendTables = 4, + DEM_ClassInfo = 5, + DEM_StringTables = 6, + DEM_Packet = 7, + DEM_SignonPacket = 8, + DEM_ConsoleCmd = 9, + DEM_CustomData = 10, + DEM_CustomDataCallbacks = 11, + DEM_UserCmd = 12, + DEM_FullPacket = 13, + DEM_SaveGame = 14, + DEM_SpawnGroups = 15, + DEM_AnimationData = 16, + DEM_AnimationHeader = 17, + DEM_Recovery = 18, + DEM_Max = 19, + DEM_IsCompressed = 64, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCBaseClientMsg.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCBaseClientMsg.cs index ddd760986..3cf628d26 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCBaseClientMsg.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCBaseClientMsg.cs @@ -1,17 +1,16 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum EGCBaseClientMsg { - k_EMsgGCClientWelcome = 4004, - k_EMsgGCServerWelcome = 4005, - k_EMsgGCClientHello = 4006, - k_EMsgGCServerHello = 4007, - k_EMsgGCClientConnectionStatus = 4009, - k_EMsgGCServerConnectionStatus = 4010, - k_EMsgGCClientHelloPartner = 4011, - k_EMsgGCClientHelloPW = 4012, - k_EMsgGCClientHelloR2 = 4013, - k_EMsgGCClientHelloR3 = 4014, - k_EMsgGCClientHelloR4 = 4015, -} + k_EMsgGCClientWelcome = 4004, + k_EMsgGCServerWelcome = 4005, + k_EMsgGCClientHello = 4006, + k_EMsgGCServerHello = 4007, + k_EMsgGCClientConnectionStatus = 4009, + k_EMsgGCServerConnectionStatus = 4010, + k_EMsgGCClientHelloPartner = 4011, + k_EMsgGCClientHelloPW = 4012, + k_EMsgGCClientHelloR2 = 4013, + k_EMsgGCClientHelloR3 = 4014, + k_EMsgGCClientHelloR4 = 4015, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCBaseMsg.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCBaseMsg.cs index ab431164a..096d562d1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCBaseMsg.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCBaseMsg.cs @@ -1,21 +1,20 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum EGCBaseMsg { - k_EMsgGCSystemMessage = 4001, - k_EMsgGCReplicateConVars = 4002, - k_EMsgGCConVarUpdated = 4003, - k_EMsgGCInQueue = 4008, - k_EMsgGCInviteToParty = 4501, - k_EMsgGCInvitationCreated = 4502, - k_EMsgGCPartyInviteResponse = 4503, - k_EMsgGCKickFromParty = 4504, - k_EMsgGCLeaveParty = 4505, - k_EMsgGCServerAvailable = 4506, - k_EMsgGCClientConnectToServer = 4507, - k_EMsgGCGameServerInfo = 4508, - k_EMsgGCError = 4509, - k_EMsgGCReplay_UploadedToYouTube = 4510, - k_EMsgGCLANServerAvailable = 4511, -} + k_EMsgGCSystemMessage = 4001, + k_EMsgGCReplicateConVars = 4002, + k_EMsgGCConVarUpdated = 4003, + k_EMsgGCInQueue = 4008, + k_EMsgGCInviteToParty = 4501, + k_EMsgGCInvitationCreated = 4502, + k_EMsgGCPartyInviteResponse = 4503, + k_EMsgGCKickFromParty = 4504, + k_EMsgGCLeaveParty = 4505, + k_EMsgGCServerAvailable = 4506, + k_EMsgGCClientConnectToServer = 4507, + k_EMsgGCGameServerInfo = 4508, + k_EMsgGCError = 4509, + k_EMsgGCReplay_UploadedToYouTube = 4510, + k_EMsgGCLANServerAvailable = 4511, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCBaseProtoObjectTypes.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCBaseProtoObjectTypes.cs index 5b1d0bb5a..637ae80c7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCBaseProtoObjectTypes.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCBaseProtoObjectTypes.cs @@ -1,8 +1,7 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum EGCBaseProtoObjectTypes { - k_EProtoObjectPartyInvite = 1001, - k_EProtoObjectLobbyInvite = 1002, -} + k_EProtoObjectPartyInvite = 1001, + k_EProtoObjectLobbyInvite = 1002, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCItemCustomizationNotification.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCItemCustomizationNotification.cs index 4a571698f..09509ea16 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCItemCustomizationNotification.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCItemCustomizationNotification.cs @@ -1,34 +1,33 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum EGCItemCustomizationNotification { - k_EGCItemCustomizationNotification_NameItem = 1006, - k_EGCItemCustomizationNotification_UnlockCrate = 1007, - k_EGCItemCustomizationNotification_XRayItemReveal = 1008, - k_EGCItemCustomizationNotification_XRayItemClaim = 1009, - k_EGCItemCustomizationNotification_CasketTooFull = 1011, - k_EGCItemCustomizationNotification_CasketContents = 1012, - k_EGCItemCustomizationNotification_CasketAdded = 1013, - k_EGCItemCustomizationNotification_CasketRemoved = 1014, - k_EGCItemCustomizationNotification_CasketInvFull = 1015, - k_EGCItemCustomizationNotification_NameBaseItem = 1019, - k_EGCItemCustomizationNotification_RemoveItemName = 1030, - k_EGCItemCustomizationNotification_RemoveSticker = 1053, - k_EGCItemCustomizationNotification_ExtractSticker = 1054, - k_EGCItemCustomizationNotification_EncapsulateSticker = 1055, - k_EGCItemCustomizationNotification_ApplySticker = 1086, - k_EGCItemCustomizationNotification_StatTrakSwap = 1088, - k_EGCItemCustomizationNotification_RemovePatch = 1089, - k_EGCItemCustomizationNotification_ApplyPatch = 1090, - k_EGCItemCustomizationNotification_ApplyKeychain = 1091, - k_EGCItemCustomizationNotification_RemoveKeychain = 1092, - k_EGCItemCustomizationNotification_ActivateFanToken = 9178, - k_EGCItemCustomizationNotification_ActivateOperationCoin = 9179, - k_EGCItemCustomizationNotification_GraffitiUnseal = 9185, - k_EGCItemCustomizationNotification_GenerateSouvenir = 9204, - k_EGCItemCustomizationNotification_ClientRedeemMissionReward = 9209, - k_EGCItemCustomizationNotification_ClientRedeemFreeReward = 9219, - k_EGCItemCustomizationNotification_XpShopUseTicket = 9221, - k_EGCItemCustomizationNotification_XpShopAckTracks = 9222, -} + k_EGCItemCustomizationNotification_NameItem = 1006, + k_EGCItemCustomizationNotification_UnlockCrate = 1007, + k_EGCItemCustomizationNotification_XRayItemReveal = 1008, + k_EGCItemCustomizationNotification_XRayItemClaim = 1009, + k_EGCItemCustomizationNotification_CasketTooFull = 1011, + k_EGCItemCustomizationNotification_CasketContents = 1012, + k_EGCItemCustomizationNotification_CasketAdded = 1013, + k_EGCItemCustomizationNotification_CasketRemoved = 1014, + k_EGCItemCustomizationNotification_CasketInvFull = 1015, + k_EGCItemCustomizationNotification_NameBaseItem = 1019, + k_EGCItemCustomizationNotification_RemoveItemName = 1030, + k_EGCItemCustomizationNotification_RemoveSticker = 1053, + k_EGCItemCustomizationNotification_ExtractSticker = 1054, + k_EGCItemCustomizationNotification_EncapsulateSticker = 1055, + k_EGCItemCustomizationNotification_ApplySticker = 1086, + k_EGCItemCustomizationNotification_StatTrakSwap = 1088, + k_EGCItemCustomizationNotification_RemovePatch = 1089, + k_EGCItemCustomizationNotification_ApplyPatch = 1090, + k_EGCItemCustomizationNotification_ApplyKeychain = 1091, + k_EGCItemCustomizationNotification_RemoveKeychain = 1092, + k_EGCItemCustomizationNotification_ActivateFanToken = 9178, + k_EGCItemCustomizationNotification_ActivateOperationCoin = 9179, + k_EGCItemCustomizationNotification_GraffitiUnseal = 9185, + k_EGCItemCustomizationNotification_GenerateSouvenir = 9204, + k_EGCItemCustomizationNotification_ClientRedeemMissionReward = 9209, + k_EGCItemCustomizationNotification_ClientRedeemFreeReward = 9219, + k_EGCItemCustomizationNotification_XpShopUseTicket = 9221, + k_EGCItemCustomizationNotification_XpShopAckTracks = 9222, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCItemMsg.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCItemMsg.cs index 9b2c2b480..04a22cf15 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCItemMsg.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCItemMsg.cs @@ -1,153 +1,152 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum EGCItemMsg { - k_EMsgGCBase = 1000, - k_EMsgGCSetItemPosition = 1001, - k_EMsgGCCraft = 1002, - k_EMsgGCCraftResponse = 1003, - k_EMsgGCDelete = 1004, - k_EMsgGCVerifyCacheSubscription = 1005, - k_EMsgGCNameItem = 1006, - k_EMsgGCUnlockCrate_DEPRECATED = 1007, - k_EMsgGCUnlockCrateResponse = 1008, - k_EMsgGCPaintItem = 1009, - k_EMsgGCPaintItemResponse = 1010, - k_EMsgGCGoldenWrenchBroadcast = 1011, - k_EMsgGCMOTDRequest = 1012, - k_EMsgGCMOTDRequestResponse = 1013, - k_EMsgGCAddItemToSocket_DEPRECATED = 1014, - k_EMsgGCAddItemToSocketResponse_DEPRECATED = 1015, - k_EMsgGCAddSocketToBaseItem_DEPRECATED = 1016, - k_EMsgGCAddSocketToItem_DEPRECATED = 1017, - k_EMsgGCAddSocketToItemResponse_DEPRECATED = 1018, - k_EMsgGCNameBaseItem = 1019, - k_EMsgGCNameBaseItemResponse = 1020, - k_EMsgGCRemoveSocketItem_DEPRECATED = 1021, - k_EMsgGCRemoveSocketItemResponse_DEPRECATED = 1022, - k_EMsgGCCustomizeItemTexture = 1023, - k_EMsgGCCustomizeItemTextureResponse = 1024, - k_EMsgGCUseItemRequest = 1025, - k_EMsgGCUseItemResponse = 1026, - k_EMsgGCGiftedItems_DEPRECATED = 1027, - k_EMsgGCRemoveItemName = 1030, - k_EMsgGCRemoveItemPaint = 1031, - k_EMsgGCGiftWrapItem = 1032, - k_EMsgGCGiftWrapItemResponse = 1033, - k_EMsgGCDeliverGift = 1034, - k_EMsgGCDeliverGiftResponseGiver = 1035, - k_EMsgGCDeliverGiftResponseReceiver = 1036, - k_EMsgGCUnwrapGiftRequest = 1037, - k_EMsgGCUnwrapGiftResponse = 1038, - k_EMsgGCSetItemStyle = 1039, - k_EMsgGCUsedClaimCodeItem = 1040, - k_EMsgGCSortItems = 1041, - k_EMsgGC_RevolvingLootList_DEPRECATED = 1042, - k_EMsgGCLookupAccount = 1043, - k_EMsgGCLookupAccountResponse = 1044, - k_EMsgGCLookupAccountName = 1045, - k_EMsgGCLookupAccountNameResponse = 1046, - k_EMsgGCUpdateItemSchema = 1049, - k_EMsgGCRemoveCustomTexture = 1051, - k_EMsgGCRemoveCustomTextureResponse = 1052, - k_EMsgGCRemoveMakersMark = 1053, - k_EMsgGCRemoveMakersMarkResponse = 1054, - k_EMsgGCRemoveUniqueCraftIndex = 1055, - k_EMsgGCRemoveUniqueCraftIndexResponse = 1056, - k_EMsgGCSaxxyBroadcast = 1057, - k_EMsgGCBackpackSortFinished = 1058, - k_EMsgGCCollectItem = 1061, - k_EMsgGCItemAcknowledged__DEPRECATED = 1062, - k_EMsgGC_ReportAbuse = 1065, - k_EMsgGC_ReportAbuseResponse = 1066, - k_EMsgGCNameItemNotification = 1068, - k_EMsgGCApplyConsumableEffects = 1069, - k_EMsgGCConsumableExhausted = 1070, - k_EMsgGCShowItemsPickedUp = 1071, - k_EMsgGCClientDisplayNotification = 1072, - k_EMsgGCApplyStrangePart = 1073, - k_EMsgGC_IncrementKillCountAttribute = 1074, - k_EMsgGC_IncrementKillCountResponse = 1075, - k_EMsgGCApplyPennantUpgrade = 1076, - k_EMsgGCSetItemPositions = 1077, - k_EMsgGCApplyEggEssence = 1078, - k_EMsgGCNameEggEssenceResponse = 1079, - k_EMsgGCPaintKitItem = 1080, - k_EMsgGCPaintKitBaseItem = 1081, - k_EMsgGCPaintKitItemResponse = 1082, - k_EMsgGCGiftedItems = 1083, - k_EMsgGCUnlockItemStyle = 1084, - k_EMsgGCUnlockItemStyleResponse = 1085, - k_EMsgGCApplySticker = 1086, - k_EMsgGCItemAcknowledged = 1087, - k_EMsgGCStatTrakSwap = 1088, - k_EMsgGCUserTrackTimePlayedConsecutively = 1089, - k_EMsgGCItemCustomizationNotification = 1090, - k_EMsgGCModifyItemAttribute = 1091, - k_EMsgGCCasketItemAdd = 1092, - k_EMsgGCCasketItemExtract = 1093, - k_EMsgGCCasketItemLoadContents = 1094, - k_EMsgGCTradingBase = 1500, - k_EMsgGCTrading_InitiateTradeRequest = 1501, - k_EMsgGCTrading_InitiateTradeResponse = 1502, - k_EMsgGCTrading_StartSession = 1503, - k_EMsgGCTrading_SetItem = 1504, - k_EMsgGCTrading_RemoveItem = 1505, - k_EMsgGCTrading_UpdateTradeInfo = 1506, - k_EMsgGCTrading_SetReadiness = 1507, - k_EMsgGCTrading_ReadinessResponse = 1508, - k_EMsgGCTrading_SessionClosed = 1509, - k_EMsgGCTrading_CancelSession = 1510, - k_EMsgGCTrading_TradeChatMsg = 1511, - k_EMsgGCTrading_ConfirmOffer = 1512, - k_EMsgGCTrading_TradeTypingChatMsg = 1513, - k_EMsgGCServerBrowser_FavoriteServer = 1601, - k_EMsgGCServerBrowser_BlacklistServer = 1602, - k_EMsgGCServerRentalsBase = 1700, - k_EMsgGCItemPreviewCheckStatus = 1701, - k_EMsgGCItemPreviewStatusResponse = 1702, - k_EMsgGCItemPreviewRequest = 1703, - k_EMsgGCItemPreviewRequestResponse = 1704, - k_EMsgGCItemPreviewExpire = 1705, - k_EMsgGCItemPreviewExpireNotification = 1706, - k_EMsgGCItemPreviewItemBoughtNotification = 1707, - k_EMsgGCDev_NewItemRequest = 2001, - k_EMsgGCDev_NewItemRequestResponse = 2002, - k_EMsgGCDev_PaintKitDropItem = 2003, - k_EMsgGCDev_SchemaReservationRequest = 2004, - k_EMsgGCStoreGetUserData = 2500, - k_EMsgGCStoreGetUserDataResponse = 2501, - k_EMsgGCStorePurchaseInit_DEPRECATED = 2502, - k_EMsgGCStorePurchaseInitResponse_DEPRECATED = 2503, - k_EMsgGCStorePurchaseFinalize = 2504, - k_EMsgGCStorePurchaseFinalizeResponse = 2505, - k_EMsgGCStorePurchaseCancel = 2506, - k_EMsgGCStorePurchaseCancelResponse = 2507, - k_EMsgGCStorePurchaseQueryTxn = 2508, - k_EMsgGCStorePurchaseQueryTxnResponse = 2509, - k_EMsgGCStorePurchaseInit = 2510, - k_EMsgGCStorePurchaseInitResponse = 2511, - k_EMsgGCBannedWordListRequest = 2512, - k_EMsgGCBannedWordListResponse = 2513, - k_EMsgGCToGCBannedWordListBroadcast = 2514, - k_EMsgGCToGCBannedWordListUpdated = 2515, - k_EMsgGCToGCDirtySDOCache = 2516, - k_EMsgGCToGCDirtyMultipleSDOCache = 2517, - k_EMsgGCToGCUpdateSQLKeyValue = 2518, - k_EMsgGCToGCIsTrustedServer = 2519, - k_EMsgGCToGCIsTrustedServerResponse = 2520, - k_EMsgGCToGCBroadcastConsoleCommand = 2521, - k_EMsgGCServerVersionUpdated = 2522, - k_EMsgGCToGCWebAPIAccountChanged = 2524, - k_EMsgGCRequestAnnouncements = 2525, - k_EMsgGCRequestAnnouncementsResponse = 2526, - k_EMsgGCRequestPassportItemGrant = 2527, - k_EMsgGCClientVersionUpdated = 2528, - k_EMsgGCRecurringSubscriptionStatus = 2530, - k_EMsgGCAdjustEquipSlotsManual = 2531, - k_EMsgGCAdjustEquipSlotsShuffle = 2532, - k_EMsgGCOpenCrate = 2534, - k_EMsgGCAcknowledgeRentalExpiration = 2535, - k_EMsgGCVolatileItemLoadContents = 2536, -} + k_EMsgGCBase = 1000, + k_EMsgGCSetItemPosition = 1001, + k_EMsgGCCraft = 1002, + k_EMsgGCCraftResponse = 1003, + k_EMsgGCDelete = 1004, + k_EMsgGCVerifyCacheSubscription = 1005, + k_EMsgGCNameItem = 1006, + k_EMsgGCUnlockCrate_DEPRECATED = 1007, + k_EMsgGCUnlockCrateResponse = 1008, + k_EMsgGCPaintItem = 1009, + k_EMsgGCPaintItemResponse = 1010, + k_EMsgGCGoldenWrenchBroadcast = 1011, + k_EMsgGCMOTDRequest = 1012, + k_EMsgGCMOTDRequestResponse = 1013, + k_EMsgGCAddItemToSocket_DEPRECATED = 1014, + k_EMsgGCAddItemToSocketResponse_DEPRECATED = 1015, + k_EMsgGCAddSocketToBaseItem_DEPRECATED = 1016, + k_EMsgGCAddSocketToItem_DEPRECATED = 1017, + k_EMsgGCAddSocketToItemResponse_DEPRECATED = 1018, + k_EMsgGCNameBaseItem = 1019, + k_EMsgGCNameBaseItemResponse = 1020, + k_EMsgGCRemoveSocketItem_DEPRECATED = 1021, + k_EMsgGCRemoveSocketItemResponse_DEPRECATED = 1022, + k_EMsgGCCustomizeItemTexture = 1023, + k_EMsgGCCustomizeItemTextureResponse = 1024, + k_EMsgGCUseItemRequest = 1025, + k_EMsgGCUseItemResponse = 1026, + k_EMsgGCGiftedItems_DEPRECATED = 1027, + k_EMsgGCRemoveItemName = 1030, + k_EMsgGCRemoveItemPaint = 1031, + k_EMsgGCGiftWrapItem = 1032, + k_EMsgGCGiftWrapItemResponse = 1033, + k_EMsgGCDeliverGift = 1034, + k_EMsgGCDeliverGiftResponseGiver = 1035, + k_EMsgGCDeliverGiftResponseReceiver = 1036, + k_EMsgGCUnwrapGiftRequest = 1037, + k_EMsgGCUnwrapGiftResponse = 1038, + k_EMsgGCSetItemStyle = 1039, + k_EMsgGCUsedClaimCodeItem = 1040, + k_EMsgGCSortItems = 1041, + k_EMsgGC_RevolvingLootList_DEPRECATED = 1042, + k_EMsgGCLookupAccount = 1043, + k_EMsgGCLookupAccountResponse = 1044, + k_EMsgGCLookupAccountName = 1045, + k_EMsgGCLookupAccountNameResponse = 1046, + k_EMsgGCUpdateItemSchema = 1049, + k_EMsgGCRemoveCustomTexture = 1051, + k_EMsgGCRemoveCustomTextureResponse = 1052, + k_EMsgGCRemoveMakersMark = 1053, + k_EMsgGCRemoveMakersMarkResponse = 1054, + k_EMsgGCRemoveUniqueCraftIndex = 1055, + k_EMsgGCRemoveUniqueCraftIndexResponse = 1056, + k_EMsgGCSaxxyBroadcast = 1057, + k_EMsgGCBackpackSortFinished = 1058, + k_EMsgGCCollectItem = 1061, + k_EMsgGCItemAcknowledged__DEPRECATED = 1062, + k_EMsgGC_ReportAbuse = 1065, + k_EMsgGC_ReportAbuseResponse = 1066, + k_EMsgGCNameItemNotification = 1068, + k_EMsgGCApplyConsumableEffects = 1069, + k_EMsgGCConsumableExhausted = 1070, + k_EMsgGCShowItemsPickedUp = 1071, + k_EMsgGCClientDisplayNotification = 1072, + k_EMsgGCApplyStrangePart = 1073, + k_EMsgGC_IncrementKillCountAttribute = 1074, + k_EMsgGC_IncrementKillCountResponse = 1075, + k_EMsgGCApplyPennantUpgrade = 1076, + k_EMsgGCSetItemPositions = 1077, + k_EMsgGCApplyEggEssence = 1078, + k_EMsgGCNameEggEssenceResponse = 1079, + k_EMsgGCPaintKitItem = 1080, + k_EMsgGCPaintKitBaseItem = 1081, + k_EMsgGCPaintKitItemResponse = 1082, + k_EMsgGCGiftedItems = 1083, + k_EMsgGCUnlockItemStyle = 1084, + k_EMsgGCUnlockItemStyleResponse = 1085, + k_EMsgGCApplySticker = 1086, + k_EMsgGCItemAcknowledged = 1087, + k_EMsgGCStatTrakSwap = 1088, + k_EMsgGCUserTrackTimePlayedConsecutively = 1089, + k_EMsgGCItemCustomizationNotification = 1090, + k_EMsgGCModifyItemAttribute = 1091, + k_EMsgGCCasketItemAdd = 1092, + k_EMsgGCCasketItemExtract = 1093, + k_EMsgGCCasketItemLoadContents = 1094, + k_EMsgGCTradingBase = 1500, + k_EMsgGCTrading_InitiateTradeRequest = 1501, + k_EMsgGCTrading_InitiateTradeResponse = 1502, + k_EMsgGCTrading_StartSession = 1503, + k_EMsgGCTrading_SetItem = 1504, + k_EMsgGCTrading_RemoveItem = 1505, + k_EMsgGCTrading_UpdateTradeInfo = 1506, + k_EMsgGCTrading_SetReadiness = 1507, + k_EMsgGCTrading_ReadinessResponse = 1508, + k_EMsgGCTrading_SessionClosed = 1509, + k_EMsgGCTrading_CancelSession = 1510, + k_EMsgGCTrading_TradeChatMsg = 1511, + k_EMsgGCTrading_ConfirmOffer = 1512, + k_EMsgGCTrading_TradeTypingChatMsg = 1513, + k_EMsgGCServerBrowser_FavoriteServer = 1601, + k_EMsgGCServerBrowser_BlacklistServer = 1602, + k_EMsgGCServerRentalsBase = 1700, + k_EMsgGCItemPreviewCheckStatus = 1701, + k_EMsgGCItemPreviewStatusResponse = 1702, + k_EMsgGCItemPreviewRequest = 1703, + k_EMsgGCItemPreviewRequestResponse = 1704, + k_EMsgGCItemPreviewExpire = 1705, + k_EMsgGCItemPreviewExpireNotification = 1706, + k_EMsgGCItemPreviewItemBoughtNotification = 1707, + k_EMsgGCDev_NewItemRequest = 2001, + k_EMsgGCDev_NewItemRequestResponse = 2002, + k_EMsgGCDev_PaintKitDropItem = 2003, + k_EMsgGCDev_SchemaReservationRequest = 2004, + k_EMsgGCStoreGetUserData = 2500, + k_EMsgGCStoreGetUserDataResponse = 2501, + k_EMsgGCStorePurchaseInit_DEPRECATED = 2502, + k_EMsgGCStorePurchaseInitResponse_DEPRECATED = 2503, + k_EMsgGCStorePurchaseFinalize = 2504, + k_EMsgGCStorePurchaseFinalizeResponse = 2505, + k_EMsgGCStorePurchaseCancel = 2506, + k_EMsgGCStorePurchaseCancelResponse = 2507, + k_EMsgGCStorePurchaseQueryTxn = 2508, + k_EMsgGCStorePurchaseQueryTxnResponse = 2509, + k_EMsgGCStorePurchaseInit = 2510, + k_EMsgGCStorePurchaseInitResponse = 2511, + k_EMsgGCBannedWordListRequest = 2512, + k_EMsgGCBannedWordListResponse = 2513, + k_EMsgGCToGCBannedWordListBroadcast = 2514, + k_EMsgGCToGCBannedWordListUpdated = 2515, + k_EMsgGCToGCDirtySDOCache = 2516, + k_EMsgGCToGCDirtyMultipleSDOCache = 2517, + k_EMsgGCToGCUpdateSQLKeyValue = 2518, + k_EMsgGCToGCIsTrustedServer = 2519, + k_EMsgGCToGCIsTrustedServerResponse = 2520, + k_EMsgGCToGCBroadcastConsoleCommand = 2521, + k_EMsgGCServerVersionUpdated = 2522, + k_EMsgGCToGCWebAPIAccountChanged = 2524, + k_EMsgGCRequestAnnouncements = 2525, + k_EMsgGCRequestAnnouncementsResponse = 2526, + k_EMsgGCRequestPassportItemGrant = 2527, + k_EMsgGCClientVersionUpdated = 2528, + k_EMsgGCRecurringSubscriptionStatus = 2530, + k_EMsgGCAdjustEquipSlotsManual = 2531, + k_EMsgGCAdjustEquipSlotsShuffle = 2532, + k_EMsgGCOpenCrate = 2534, + k_EMsgGCAcknowledgeRentalExpiration = 2535, + k_EMsgGCVolatileItemLoadContents = 2536, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCMsgResponse.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCMsgResponse.cs index d1254c0f2..dbe2de648 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCMsgResponse.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCMsgResponse.cs @@ -1,17 +1,16 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum EGCMsgResponse { - k_EGCMsgResponseOK = 0, - k_EGCMsgResponseDenied = 1, - k_EGCMsgResponseServerError = 2, - k_EGCMsgResponseTimeout = 3, - k_EGCMsgResponseInvalid = 4, - k_EGCMsgResponseNoMatch = 5, - k_EGCMsgResponseUnknownError = 6, - k_EGCMsgResponseNotLoggedOn = 7, - k_EGCMsgFailedToCreate = 8, - k_EGCMsgLimitExceeded = 9, - k_EGCMsgCommitUnfinalized = 10, -} + k_EGCMsgResponseOK = 0, + k_EGCMsgResponseDenied = 1, + k_EGCMsgResponseServerError = 2, + k_EGCMsgResponseTimeout = 3, + k_EGCMsgResponseInvalid = 4, + k_EGCMsgResponseNoMatch = 5, + k_EGCMsgResponseUnknownError = 6, + k_EGCMsgResponseNotLoggedOn = 7, + k_EGCMsgFailedToCreate = 8, + k_EGCMsgLimitExceeded = 9, + k_EGCMsgCommitUnfinalized = 10, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCSystemMsg.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCSystemMsg.cs index 61edf68d8..3e673a433 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCSystemMsg.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCSystemMsg.cs @@ -1,98 +1,97 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum EGCSystemMsg { - k_EGCMsgInvalid = 0, - k_EGCMsgMulti = 1, - k_EGCMsgGenericReply = 10, - k_EGCMsgSystemBase = 50, - k_EGCMsgAchievementAwarded = 51, - k_EGCMsgConCommand = 52, - k_EGCMsgStartPlaying = 53, - k_EGCMsgStopPlaying = 54, - k_EGCMsgStartGameserver = 55, - k_EGCMsgStopGameserver = 56, - k_EGCMsgWGRequest = 57, - k_EGCMsgWGResponse = 58, - k_EGCMsgGetUserGameStatsSchema = 59, - k_EGCMsgGetUserGameStatsSchemaResponse = 60, - k_EGCMsgGetUserStatsDEPRECATED = 61, - k_EGCMsgGetUserStatsResponse = 62, - k_EGCMsgAppInfoUpdated = 63, - k_EGCMsgValidateSession = 64, - k_EGCMsgValidateSessionResponse = 65, - k_EGCMsgLookupAccountFromInput = 66, - k_EGCMsgSendHTTPRequest = 67, - k_EGCMsgSendHTTPRequestResponse = 68, - k_EGCMsgPreTestSetup = 69, - k_EGCMsgRecordSupportAction = 70, - k_EGCMsgGetAccountDetails_DEPRECATED = 71, - k_EGCMsgReceiveInterAppMessage = 73, - k_EGCMsgFindAccounts = 74, - k_EGCMsgPostAlert = 75, - k_EGCMsgGetLicenses = 76, - k_EGCMsgGetUserStats = 77, - k_EGCMsgGetCommands = 78, - k_EGCMsgGetCommandsResponse = 79, - k_EGCMsgAddFreeLicense = 80, - k_EGCMsgAddFreeLicenseResponse = 81, - k_EGCMsgGetIPLocation = 82, - k_EGCMsgGetIPLocationResponse = 83, - k_EGCMsgSystemStatsSchema = 84, - k_EGCMsgGetSystemStats = 85, - k_EGCMsgGetSystemStatsResponse = 86, - k_EGCMsgSendEmail = 87, - k_EGCMsgSendEmailResponse = 88, - k_EGCMsgGetEmailTemplate = 89, - k_EGCMsgGetEmailTemplateResponse = 90, - k_EGCMsgGrantGuestPass = 91, - k_EGCMsgGrantGuestPassResponse = 92, - k_EGCMsgGetAccountDetails = 93, - k_EGCMsgGetAccountDetailsResponse = 94, - k_EGCMsgGetPersonaNames = 95, - k_EGCMsgGetPersonaNamesResponse = 96, - k_EGCMsgMultiplexMsg = 97, - k_EGCMsgMultiplexMsgResponse = 98, - k_EGCMsgWebAPIRegisterInterfaces = 101, - k_EGCMsgWebAPIJobRequest = 102, - k_EGCMsgWebAPIJobRequestHttpResponse = 104, - k_EGCMsgWebAPIJobRequestForwardResponse = 105, - k_EGCMsgMemCachedGet = 200, - k_EGCMsgMemCachedGetResponse = 201, - k_EGCMsgMemCachedSet = 202, - k_EGCMsgMemCachedDelete = 203, - k_EGCMsgMemCachedStats = 204, - k_EGCMsgMemCachedStatsResponse = 205, - k_EGCMsgMasterSetDirectory = 220, - k_EGCMsgMasterSetDirectoryResponse = 221, - k_EGCMsgMasterSetWebAPIRouting = 222, - k_EGCMsgMasterSetWebAPIRoutingResponse = 223, - k_EGCMsgMasterSetClientMsgRouting = 224, - k_EGCMsgMasterSetClientMsgRoutingResponse = 225, - k_EGCMsgSetOptions = 226, - k_EGCMsgSetOptionsResponse = 227, - k_EGCMsgSystemBase2 = 500, - k_EGCMsgGetPurchaseTrustStatus = 501, - k_EGCMsgGetPurchaseTrustStatusResponse = 502, - k_EGCMsgUpdateSession = 503, - k_EGCMsgGCAccountVacStatusChange = 504, - k_EGCMsgCheckFriendship = 505, - k_EGCMsgCheckFriendshipResponse = 506, - k_EGCMsgGetPartnerAccountLink = 507, - k_EGCMsgGetPartnerAccountLinkResponse = 508, - k_EGCMsgDPPartnerMicroTxns = 512, - k_EGCMsgDPPartnerMicroTxnsResponse = 513, - k_EGCMsgVacVerificationChange = 518, - k_EGCMsgAccountPhoneNumberChange = 519, - k_EGCMsgInviteUserToLobby = 523, - k_EGCMsgGetGamePersonalDataCategoriesRequest = 524, - k_EGCMsgGetGamePersonalDataCategoriesResponse = 525, - k_EGCMsgGetGamePersonalDataEntriesRequest = 526, - k_EGCMsgGetGamePersonalDataEntriesResponse = 527, - k_EGCMsgTerminateGamePersonalDataEntriesRequest = 528, - k_EGCMsgTerminateGamePersonalDataEntriesResponse = 529, - k_EGCMsgRecurringSubscriptionStatusChange = 530, - k_EGCMsgDirectServiceMethod = 531, - k_EGCMsgDirectServiceMethodResponse = 532, -} + k_EGCMsgInvalid = 0, + k_EGCMsgMulti = 1, + k_EGCMsgGenericReply = 10, + k_EGCMsgSystemBase = 50, + k_EGCMsgAchievementAwarded = 51, + k_EGCMsgConCommand = 52, + k_EGCMsgStartPlaying = 53, + k_EGCMsgStopPlaying = 54, + k_EGCMsgStartGameserver = 55, + k_EGCMsgStopGameserver = 56, + k_EGCMsgWGRequest = 57, + k_EGCMsgWGResponse = 58, + k_EGCMsgGetUserGameStatsSchema = 59, + k_EGCMsgGetUserGameStatsSchemaResponse = 60, + k_EGCMsgGetUserStatsDEPRECATED = 61, + k_EGCMsgGetUserStatsResponse = 62, + k_EGCMsgAppInfoUpdated = 63, + k_EGCMsgValidateSession = 64, + k_EGCMsgValidateSessionResponse = 65, + k_EGCMsgLookupAccountFromInput = 66, + k_EGCMsgSendHTTPRequest = 67, + k_EGCMsgSendHTTPRequestResponse = 68, + k_EGCMsgPreTestSetup = 69, + k_EGCMsgRecordSupportAction = 70, + k_EGCMsgGetAccountDetails_DEPRECATED = 71, + k_EGCMsgReceiveInterAppMessage = 73, + k_EGCMsgFindAccounts = 74, + k_EGCMsgPostAlert = 75, + k_EGCMsgGetLicenses = 76, + k_EGCMsgGetUserStats = 77, + k_EGCMsgGetCommands = 78, + k_EGCMsgGetCommandsResponse = 79, + k_EGCMsgAddFreeLicense = 80, + k_EGCMsgAddFreeLicenseResponse = 81, + k_EGCMsgGetIPLocation = 82, + k_EGCMsgGetIPLocationResponse = 83, + k_EGCMsgSystemStatsSchema = 84, + k_EGCMsgGetSystemStats = 85, + k_EGCMsgGetSystemStatsResponse = 86, + k_EGCMsgSendEmail = 87, + k_EGCMsgSendEmailResponse = 88, + k_EGCMsgGetEmailTemplate = 89, + k_EGCMsgGetEmailTemplateResponse = 90, + k_EGCMsgGrantGuestPass = 91, + k_EGCMsgGrantGuestPassResponse = 92, + k_EGCMsgGetAccountDetails = 93, + k_EGCMsgGetAccountDetailsResponse = 94, + k_EGCMsgGetPersonaNames = 95, + k_EGCMsgGetPersonaNamesResponse = 96, + k_EGCMsgMultiplexMsg = 97, + k_EGCMsgMultiplexMsgResponse = 98, + k_EGCMsgWebAPIRegisterInterfaces = 101, + k_EGCMsgWebAPIJobRequest = 102, + k_EGCMsgWebAPIJobRequestHttpResponse = 104, + k_EGCMsgWebAPIJobRequestForwardResponse = 105, + k_EGCMsgMemCachedGet = 200, + k_EGCMsgMemCachedGetResponse = 201, + k_EGCMsgMemCachedSet = 202, + k_EGCMsgMemCachedDelete = 203, + k_EGCMsgMemCachedStats = 204, + k_EGCMsgMemCachedStatsResponse = 205, + k_EGCMsgMasterSetDirectory = 220, + k_EGCMsgMasterSetDirectoryResponse = 221, + k_EGCMsgMasterSetWebAPIRouting = 222, + k_EGCMsgMasterSetWebAPIRoutingResponse = 223, + k_EGCMsgMasterSetClientMsgRouting = 224, + k_EGCMsgMasterSetClientMsgRoutingResponse = 225, + k_EGCMsgSetOptions = 226, + k_EGCMsgSetOptionsResponse = 227, + k_EGCMsgSystemBase2 = 500, + k_EGCMsgGetPurchaseTrustStatus = 501, + k_EGCMsgGetPurchaseTrustStatusResponse = 502, + k_EGCMsgUpdateSession = 503, + k_EGCMsgGCAccountVacStatusChange = 504, + k_EGCMsgCheckFriendship = 505, + k_EGCMsgCheckFriendshipResponse = 506, + k_EGCMsgGetPartnerAccountLink = 507, + k_EGCMsgGetPartnerAccountLinkResponse = 508, + k_EGCMsgDPPartnerMicroTxns = 512, + k_EGCMsgDPPartnerMicroTxnsResponse = 513, + k_EGCMsgVacVerificationChange = 518, + k_EGCMsgAccountPhoneNumberChange = 519, + k_EGCMsgInviteUserToLobby = 523, + k_EGCMsgGetGamePersonalDataCategoriesRequest = 524, + k_EGCMsgGetGamePersonalDataCategoriesResponse = 525, + k_EGCMsgGetGamePersonalDataEntriesRequest = 526, + k_EGCMsgGetGamePersonalDataEntriesResponse = 527, + k_EGCMsgTerminateGamePersonalDataEntriesRequest = 528, + k_EGCMsgTerminateGamePersonalDataEntriesResponse = 529, + k_EGCMsgRecurringSubscriptionStatusChange = 530, + k_EGCMsgDirectServiceMethod = 531, + k_EGCMsgDirectServiceMethodResponse = 532, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCToGCMsg.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCToGCMsg.cs index 0cfed0db7..75bf2e793 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCToGCMsg.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EGCToGCMsg.cs @@ -1,14 +1,13 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum EGCToGCMsg { - k_EGCToGCMsgMasterAck = 150, - k_EGCToGCMsgMasterAckResponse = 151, - k_EGCToGCMsgRouted = 152, - k_EGCToGCMsgRoutedReply = 153, - k_EMsgUpdateSessionIP = 154, - k_EMsgRequestSessionIP = 155, - k_EMsgRequestSessionIPResponse = 156, - k_EGCToGCMsgMasterStartupComplete = 157, -} + k_EGCToGCMsgMasterAck = 150, + k_EGCToGCMsgMasterAckResponse = 151, + k_EGCToGCMsgRouted = 152, + k_EGCToGCMsgRoutedReply = 153, + k_EMsgUpdateSessionIP = 154, + k_EMsgRequestSessionIP = 155, + k_EMsgRequestSessionIPResponse = 156, + k_EGCToGCMsgMasterStartupComplete = 157, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EHapticPulseType.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EHapticPulseType.cs index b480cebab..6b3a103af 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EHapticPulseType.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EHapticPulseType.cs @@ -1,9 +1,8 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum EHapticPulseType { - VR_HAND_HAPTIC_PULSE_LIGHT = 0, - VR_HAND_HAPTIC_PULSE_MEDIUM = 1, - VR_HAND_HAPTIC_PULSE_STRONG = 2, -} + VR_HAND_HAPTIC_PULSE_LIGHT = 0, + VR_HAND_HAPTIC_PULSE_MEDIUM = 1, + VR_HAND_HAPTIC_PULSE_STRONG = 2, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EHitGroup.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EHitGroup.cs index d2dfcbc48..43a67b2ee 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EHitGroup.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EHitGroup.cs @@ -1,16 +1,15 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum EHitGroup { - EHG_Generic = 0, - EHG_Head = 1, - EHG_Chest = 2, - EHG_Stomach = 3, - EHG_LeftArm = 4, - EHG_RightArm = 5, - EHG_LeftLeg = 6, - EHG_RightLeg = 7, - EHG_Gear = 8, - EHG_Miss = 9, -} + EHG_Generic = 0, + EHG_Head = 1, + EHG_Chest = 2, + EHG_Stomach = 3, + EHG_LeftArm = 4, + EHG_RightArm = 5, + EHG_LeftLeg = 6, + EHG_RightLeg = 7, + EHG_Gear = 8, + EHG_Miss = 9, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EInitSystemResult.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EInitSystemResult.cs index 0ab8e69b6..83ffdcf8b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EInitSystemResult.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EInitSystemResult.cs @@ -1,15 +1,14 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum EInitSystemResult { - k_EInitSystemResult_Invalid = 0, - k_EInitSystemResult_Success = 1, - k_EInitSystemResult_None = 2, - k_EInitSystemResult_NotFound = 3, - k_EInitSystemResult_Existing = 4, - k_EInitSystemResult_FailedOpen = 5, - k_EInitSystemResult_Mismatch = 6, - k_EInitSystemResult_FailedInit = 7, - k_EInitSystemResult_Max = 8, -} + k_EInitSystemResult_Invalid = 0, + k_EInitSystemResult_Success = 1, + k_EInitSystemResult_None = 2, + k_EInitSystemResult_NotFound = 3, + k_EInitSystemResult_Existing = 4, + k_EInitSystemResult_FailedOpen = 5, + k_EInitSystemResult_Mismatch = 6, + k_EInitSystemResult_FailedInit = 7, + k_EInitSystemResult_Max = 8, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EMsg.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EMsg.cs index dbce349de..372b430ba 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EMsg.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EMsg.cs @@ -1,1495 +1,1493 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum EMsg { - - k_EMsgInvalid = 0, - k_EMsgMulti = 1, - k_EMsgProtobufWrapped = 2, - k_EMsgBaseGeneral = 100, - k_EMsgGenericReply = 100, - k_EMsgDestJobFailed = 113, - k_EMsgAlert = 115, - k_EMsgSCIDRequest = 120, - k_EMsgSCIDResponse = 121, - k_EMsgJobHeartbeat = 123, - k_EMsgHubConnect = 124, - k_EMsgSubscribe = 126, - k_EMRouteMessage = 127, - k_EMsgWGRequest = 130, - k_EMsgWGResponse = 131, - k_EMsgKeepAlive = 132, - k_EMsgWebAPIJobRequest = 133, - k_EMsgWebAPIJobResponse = 134, - k_EMsgClientSessionStart = 135, - k_EMsgClientSessionEnd = 136, - k_EMsgClientSessionUpdate = 137, - k_EMsgStatsDeprecated = 138, - k_EMsgPing = 139, - k_EMsgPingResponse = 140, - k_EMsgStats = 141, - k_EMsgRequestFullStatsBlock = 142, - k_EMsgLoadDBOCacheItem = 143, - k_EMsgLoadDBOCacheItemResponse = 144, - k_EMsgInvalidateDBOCacheItems = 145, - k_EMsgServiceMethod = 146, - k_EMsgServiceMethodResponse = 147, - k_EMsgClientPackageVersions = 148, - k_EMsgTimestampRequest = 149, - k_EMsgTimestampResponse = 150, - k_EMsgServiceMethodCallFromClient = 151, - k_EMsgServiceMethodSendToClient = 152, - k_EMsgBaseShell = 200, - k_EMsgAssignSysID = 200, - k_EMsgExit = 201, - k_EMsgDirRequest = 202, - k_EMsgDirResponse = 203, - k_EMsgZipRequest = 204, - k_EMsgZipResponse = 205, - k_EMsgUpdateRecordResponse = 215, - k_EMsgUpdateCreditCardRequest = 221, - k_EMsgUpdateUserBanResponse = 225, - k_EMsgPrepareToExit = 226, - k_EMsgContentDescriptionUpdate = 227, - k_EMsgTestResetServer = 228, - k_EMsgUniverseChanged = 229, - k_EMsgShellConfigInfoUpdate = 230, - k_EMsgRequestWindowsEventLogEntries = 233, - k_EMsgProvideWindowsEventLogEntries = 234, - k_EMsgShellSearchLogs = 235, - k_EMsgShellSearchLogsResponse = 236, - k_EMsgShellCheckWindowsUpdates = 237, - k_EMsgShellCheckWindowsUpdatesResponse = 238, - k_EMsgTestFlushDelayedSQL = 240, - k_EMsgTestFlushDelayedSQLResponse = 241, - k_EMsgEnsureExecuteScheduledTask_TEST = 242, - k_EMsgEnsureExecuteScheduledTaskResponse_TEST = 243, - k_EMsgUpdateScheduledTaskEnableState_TEST = 244, - k_EMsgUpdateScheduledTaskEnableStateResponse_TEST = 245, - k_EMsgContentDescriptionDeltaUpdate = 246, - k_EMsgGMShellAndServerAddressUpdates = 247, - k_EMsgBaseGM = 300, - k_EMsgHeartbeat = 300, - k_EMsgShellFailed = 301, - k_EMsgExitShells = 307, - k_EMsgExitShell = 308, - k_EMsgGracefulExitShell = 309, - k_EMsgLicenseProcessingComplete = 316, - k_EMsgSetTestFlag = 317, - k_EMsgQueuedEmailsComplete = 318, - k_EMsgGMDRMSync = 320, - k_EMsgPhysicalBoxInventory = 321, - k_EMsgUpdateConfigFile = 322, - k_EMsgTestInitDB = 323, - k_EMsgGMWriteConfigToSQL = 324, - k_EMsgGMLoadActivationCodes = 325, - k_EMsgGMQueueForFBS = 326, - k_EMsgGMSchemaConversionResults = 327, - k_EMsgGMWriteShellFailureToSQL = 329, - k_EMsgGMWriteStatsToSOS = 330, - k_EMsgGMGetServiceMethodRouting = 331, - k_EMsgGMGetServiceMethodRoutingResponse = 332, - k_EMsgGMTestNextBuildSchemaConversion = 334, - k_EMsgGMTestNextBuildSchemaConversionResponse = 335, - k_EMsgExpectShellRestart = 336, - k_EMsgHotFixProgress = 337, - k_EMsgGMStatsForwardToAdminConnections = 338, - k_EMsgGMGetModifiedConVars = 339, - k_EMsgGMGetModifiedConVarsResponse = 340, - k_EMsgBaseAIS = 400, - k_EMsgAISRequestContentDescription = 402, - k_EMsgAISUpdateAppInfo = 403, - k_EMsgAISGetPackageChangeNumber = 405, - k_EMsgAISGetPackageChangeNumberResponse = 406, - k_EMsgAIGetAppGCFlags = 423, - k_EMsgAIGetAppGCFlagsResponse = 424, - k_EMsgAIGetAppList = 425, - k_EMsgAIGetAppListResponse = 426, - k_EMsgAISGetCouponDefinition = 429, - k_EMsgAISGetCouponDefinitionResponse = 430, - k_EMsgAISUpdateSubordinateContentDescription = 431, - k_EMsgAISUpdateSubordinateContentDescriptionResponse = 432, - k_EMsgAISTestEnableGC = 433, - k_EMsgBaseAM = 500, - k_EMsgAMUpdateUserBanRequest = 504, - k_EMsgAMAddLicense = 505, - k_EMsgAMSendSystemIMToUser = 508, - k_EMsgAMExtendLicense = 509, - k_EMsgAMAddMinutesToLicense = 510, - k_EMsgAMCancelLicense = 511, - k_EMsgAMInitPurchase = 512, - k_EMsgAMPurchaseResponse = 513, - k_EMsgAMGetFinalPrice = 514, - k_EMsgAMGetFinalPriceResponse = 515, - k_EMsgAMGetLegacyGameKey = 516, - k_EMsgAMGetLegacyGameKeyResponse = 517, - k_EMsgAMFindHungTransactions = 518, - k_EMsgAMSetAccountTrustedRequest = 519, - k_EMsgAMCancelPurchase = 522, - k_EMsgAMNewChallenge = 523, - k_EMsgAMLoadOEMTickets = 524, - k_EMsgAMFixPendingPurchase = 525, - k_EMsgAMFixPendingPurchaseResponse = 526, - k_EMsgAMIsUserBanned = 527, - k_EMsgAMRegisterKey = 528, - k_EMsgAMLoadActivationCodes = 529, - k_EMsgAMLoadActivationCodesResponse = 530, - k_EMsgAMLookupKeyResponse = 531, - k_EMsgAMLookupKey = 532, - k_EMsgAMChatCleanup = 533, - k_EMsgAMClanCleanup = 534, - k_EMsgAMFixPendingRefund = 535, - k_EMsgAMReverseChargeback = 536, - k_EMsgAMReverseChargebackResponse = 537, - k_EMsgAMClanCleanupList = 538, - k_EMsgAMGetLicenses = 539, - k_EMsgAMGetLicensesResponse = 540, - k_EMsgAMSendCartRepurchase = 541, - k_EMsgAMSendCartRepurchaseResponse = 542, - k_EMsgAllowUserToPlayQuery = 550, - k_EMsgAllowUserToPlayResponse = 551, - k_EMsgAMVerfiyUser = 552, - k_EMsgAMClientNotPlaying = 553, - k_EMsgAMClientRequestFriendship = 554, - k_EMsgAMRelayPublishStatus = 555, - k_EMsgAMInitPurchaseResponse = 560, - k_EMsgAMRevokePurchaseResponse = 561, - k_EMsgAMRefreshGuestPasses = 563, - k_EMsgAMGrantGuestPasses = 566, - k_EMsgAMClanDataUpdated = 567, - k_EMsgAMReloadAccount = 568, - k_EMsgAMClientChatMsgRelay = 569, - k_EMsgAMChatMulti = 570, - k_EMsgAMClientChatInviteRelay = 571, - k_EMsgAMChatInvite = 572, - k_EMsgAMClientJoinChatRelay = 573, - k_EMsgAMClientChatMemberInfoRelay = 574, - k_EMsgAMPublishChatMemberInfo = 575, - k_EMsgAMClientAcceptFriendInvite = 576, - k_EMsgAMChatEnter = 577, - k_EMsgAMClientPublishRemovalFromSource = 578, - k_EMsgAMChatActionResult = 579, - k_EMsgAMFindAccounts = 580, - k_EMsgAMFindAccountsResponse = 581, - k_EMsgAMIsAccountNameInUse = 582, - k_EMsgAMIsAccountNameInUseResponse = 583, - k_EMsgAMSetAccountFlags = 584, - k_EMsgAMCreateClan = 586, - k_EMsgAMCreateClanResponse = 587, - k_EMsgAMGetClanDetails = 588, - k_EMsgAMGetClanDetailsResponse = 589, - k_EMsgAMSetPersonaName = 590, - k_EMsgAMSetAvatar = 591, - k_EMsgAMAuthenticateUser = 592, - k_EMsgAMAuthenticateUserResponse = 593, - k_EMsgAMP2PIntroducerMessage = 596, - k_EMsgClientChatAction = 597, - k_EMsgAMClientChatActionRelay = 598, - k_EMsgBaseVS = 600, - k_EMsgReqChallenge = 600, - k_EMsgVACResponse = 601, - k_EMsgReqChallengeTest = 602, - k_EMsgVSMarkCheat = 604, - k_EMsgVSAddCheat = 605, - k_EMsgVSPurgeCodeModDB = 606, - k_EMsgVSGetChallengeResults = 607, - k_EMsgVSChallengeResultText = 608, - k_EMsgVSReportLingerer = 609, - k_EMsgVSRequestManagedChallenge = 610, - k_EMsgVSLoadDBFinished = 611, - k_EMsgBaseDRMS = 625, - k_EMsgDRMBuildBlobRequest = 628, - k_EMsgDRMBuildBlobResponse = 629, - k_EMsgDRMResolveGuidRequest = 630, - k_EMsgDRMResolveGuidResponse = 631, - k_EMsgDRMVariabilityReport = 633, - k_EMsgDRMVariabilityReportResponse = 634, - k_EMsgDRMStabilityReport = 635, - k_EMsgDRMStabilityReportResponse = 636, - k_EMsgDRMDetailsReportRequest = 637, - k_EMsgDRMDetailsReportResponse = 638, - k_EMsgDRMProcessFile = 639, - k_EMsgDRMAdminUpdate = 640, - k_EMsgDRMAdminUpdateResponse = 641, - k_EMsgDRMSync = 642, - k_EMsgDRMSyncResponse = 643, - k_EMsgDRMProcessFileResponse = 644, - k_EMsgDRMEmptyGuidCache = 645, - k_EMsgDRMEmptyGuidCacheResponse = 646, - k_EMsgBaseCS = 650, - k_EMsgBaseClient = 700, - k_EMsgClientLogOn_Deprecated = 701, - k_EMsgClientAnonLogOn_Deprecated = 702, - k_EMsgClientHeartBeat = 703, - k_EMsgClientVACResponse = 704, - k_EMsgClientGamesPlayed_obsolete = 705, - k_EMsgClientLogOff = 706, - k_EMsgClientNoUDPConnectivity = 707, - k_EMsgClientConnectionStats = 710, - k_EMsgClientPingResponse = 712, - k_EMsgClientRemoveFriend = 714, - k_EMsgClientGamesPlayedNoDataBlob = 715, - k_EMsgClientChangeStatus = 716, - k_EMsgClientVacStatusResponse = 717, - k_EMsgClientFriendMsg = 718, - k_EMsgClientGameConnect_obsolete = 719, - k_EMsgClientGamesPlayed2_obsolete = 720, - k_EMsgClientGameEnded_obsolete = 721, - k_EMsgClientSystemIM = 726, - k_EMsgClientSystemIMAck = 727, - k_EMsgClientGetLicenses = 728, - k_EMsgClientGetLegacyGameKey = 730, - k_EMsgClientContentServerLogOn_Deprecated = 731, - k_EMsgClientAckVACBan2 = 732, - k_EMsgClientGetPurchaseReceipts = 736, - k_EMsgClientGamesPlayed3_obsolete = 738, - k_EMsgClientAckGuestPass = 740, - k_EMsgClientRedeemGuestPass = 741, - k_EMsgClientGamesPlayed = 742, - k_EMsgClientRegisterKey = 743, - k_EMsgClientInviteUserToClan = 744, - k_EMsgClientAcknowledgeClanInvite = 745, - k_EMsgClientPurchaseWithMachineID = 746, - k_EMsgClientAppUsageEvent = 747, - k_EMsgClientLogOnResponse = 751, - k_EMsgClientSetHeartbeatRate = 755, - k_EMsgClientNotLoggedOnDeprecated = 756, - k_EMsgClientLoggedOff = 757, - k_EMsgGSApprove = 758, - k_EMsgGSDeny = 759, - k_EMsgGSKick = 760, - k_EMsgClientPurchaseResponse = 763, - k_EMsgClientPing = 764, - k_EMsgClientNOP = 765, - k_EMsgClientPersonaState = 766, - k_EMsgClientFriendsList = 767, - k_EMsgClientAccountInfo = 768, - k_EMsgClientNewsUpdate = 771, - k_EMsgClientGameConnectDeny = 773, - k_EMsgGSStatusReply = 774, - k_EMsgClientGameConnectTokens = 779, - k_EMsgClientLicenseList = 780, - k_EMsgClientVACBanStatus = 782, - k_EMsgClientCMList = 783, - k_EMsgClientEncryptPct = 784, - k_EMsgClientGetLegacyGameKeyResponse = 785, - k_EMsgClientAddFriend = 791, - k_EMsgClientAddFriendResponse = 792, - k_EMsgClientAckGuestPassResponse = 796, - k_EMsgClientRedeemGuestPassResponse = 797, - k_EMsgClientUpdateGuestPassesList = 798, - k_EMsgClientChatMsg = 799, - k_EMsgClientChatInvite = 800, - k_EMsgClientJoinChat = 801, - k_EMsgClientChatMemberInfo = 802, - k_EMsgClientLogOnWithCredentials_Deprecated = 803, - k_EMsgClientPasswordChangeResponse = 805, - k_EMsgClientChatEnter = 807, - k_EMsgClientFriendRemovedFromSource = 808, - k_EMsgClientCreateChat = 809, - k_EMsgClientCreateChatResponse = 810, - k_EMsgClientP2PIntroducerMessage = 813, - k_EMsgClientChatActionResult = 814, - k_EMsgClientRequestFriendData = 815, - k_EMsgClientGetUserStats = 818, - k_EMsgClientGetUserStatsResponse = 819, - k_EMsgClientStoreUserStats = 820, - k_EMsgClientStoreUserStatsResponse = 821, - k_EMsgClientClanState = 822, - k_EMsgClientServiceModule = 830, - k_EMsgClientServiceCall = 831, - k_EMsgClientServiceCallResponse = 832, - k_EMsgClientNatTraversalStatEvent = 839, - k_EMsgClientSteamUsageEvent = 842, - k_EMsgClientCheckPassword = 845, - k_EMsgClientResetPassword = 846, - k_EMsgClientCheckPasswordResponse = 848, - k_EMsgClientResetPasswordResponse = 849, - k_EMsgClientSessionToken = 850, - k_EMsgClientDRMProblemReport = 851, - k_EMsgClientSetIgnoreFriend = 855, - k_EMsgClientSetIgnoreFriendResponse = 856, - k_EMsgClientGetAppOwnershipTicket = 857, - k_EMsgClientGetAppOwnershipTicketResponse = 858, - k_EMsgClientGetLobbyListResponse = 860, - k_EMsgClientServerList = 880, - k_EMsgClientDRMBlobRequest = 896, - k_EMsgClientDRMBlobResponse = 897, - k_EMsgBaseGameServer = 900, - k_EMsgGSDisconnectNotice = 901, - k_EMsgGSStatus = 903, - k_EMsgGSUserPlaying = 905, - k_EMsgGSStatus2 = 906, - k_EMsgGSStatusUpdate_Unused = 907, - k_EMsgGSServerType = 908, - k_EMsgGSPlayerList = 909, - k_EMsgGSGetUserAchievementStatus = 910, - k_EMsgGSGetUserAchievementStatusResponse = 911, - k_EMsgGSGetPlayStats = 918, - k_EMsgGSGetPlayStatsResponse = 919, - k_EMsgGSGetUserGroupStatus = 920, - k_EMsgAMGetUserGroupStatus = 921, - k_EMsgAMGetUserGroupStatusResponse = 922, - k_EMsgGSGetUserGroupStatusResponse = 923, - k_EMsgGSGetReputation = 936, - k_EMsgGSGetReputationResponse = 937, - k_EMsgGSAssociateWithClan = 938, - k_EMsgGSAssociateWithClanResponse = 939, - k_EMsgGSComputeNewPlayerCompatibility = 940, - k_EMsgGSComputeNewPlayerCompatibilityResponse = 941, - k_EMsgBaseAdmin = 1000, - k_EMsgAdminCmd = 1000, - k_EMsgAdminCmdResponse = 1004, - k_EMsgAdminLogListenRequest = 1005, - k_EMsgAdminLogEvent = 1006, - k_EMsgUniverseData = 1010, - k_EMsgAdminSpew = 1019, - k_EMsgAdminConsoleTitle = 1020, - k_EMsgAdminGCSpew = 1023, - k_EMsgAdminGCCommand = 1024, - k_EMsgAdminGCGetCommandList = 1025, - k_EMsgAdminGCGetCommandListResponse = 1026, - k_EMsgFBSConnectionData = 1027, - k_EMsgAdminMsgSpew = 1028, - k_EMsgBaseFBS = 1100, - k_EMsgFBSReqVersion = 1100, - k_EMsgFBSVersionInfo = 1101, - k_EMsgFBSForceRefresh = 1102, - k_EMsgFBSForceBounce = 1103, - k_EMsgFBSDeployPackage = 1104, - k_EMsgFBSDeployResponse = 1105, - k_EMsgFBSUpdateBootstrapper = 1106, - k_EMsgFBSSetState = 1107, - k_EMsgFBSApplyOSUpdates = 1108, - k_EMsgFBSRunCMDScript = 1109, - k_EMsgFBSRebootBox = 1110, - k_EMsgFBSSetBigBrotherMode = 1111, - k_EMsgFBSMinidumpServer = 1112, - k_EMsgFBSDeployHotFixPackage = 1114, - k_EMsgFBSDeployHotFixResponse = 1115, - k_EMsgFBSDownloadHotFix = 1116, - k_EMsgFBSDownloadHotFixResponse = 1117, - k_EMsgFBSUpdateTargetConfigFile = 1118, - k_EMsgFBSApplyAccountCred = 1119, - k_EMsgFBSApplyAccountCredResponse = 1120, - k_EMsgFBSSetShellCount = 1121, - k_EMsgFBSTerminateShell = 1122, - k_EMsgFBSQueryGMForRequest = 1123, - k_EMsgFBSQueryGMResponse = 1124, - k_EMsgFBSTerminateZombies = 1125, - k_EMsgFBSInfoFromBootstrapper = 1126, - k_EMsgFBSRebootBoxResponse = 1127, - k_EMsgFBSBootstrapperPackageRequest = 1128, - k_EMsgFBSBootstrapperPackageResponse = 1129, - k_EMsgFBSBootstrapperGetPackageChunk = 1130, - k_EMsgFBSBootstrapperGetPackageChunkResponse = 1131, - k_EMsgFBSBootstrapperPackageTransferProgress = 1132, - k_EMsgFBSRestartBootstrapper = 1133, - k_EMsgFBSPauseFrozenDumps = 1134, - k_EMsgBaseFileXfer = 1200, - k_EMsgFileXferRequest = 1200, - k_EMsgFileXferResponse = 1201, - k_EMsgFileXferData = 1202, - k_EMsgFileXferEnd = 1203, - k_EMsgFileXferDataAck = 1204, - k_EMsgBaseChannelAuth = 1300, - k_EMsgChannelAuthChallenge = 1300, - k_EMsgChannelAuthResponse = 1301, - k_EMsgChannelAuthResult = 1302, - k_EMsgChannelEncryptRequest = 1303, - k_EMsgChannelEncryptResponse = 1304, - k_EMsgChannelEncryptResult = 1305, - k_EMsgBaseBS = 1400, - k_EMsgBSPurchaseStart = 1401, - k_EMsgBSPurchaseResponse = 1402, - k_EMsgBSAuthenticateCCTrans = 1403, - k_EMsgBSAuthenticateCCTransResponse = 1404, - k_EMsgBSSettleComplete = 1406, - k_EMsgBSInitPayPalTxn = 1408, - k_EMsgBSInitPayPalTxnResponse = 1409, - k_EMsgBSGetPayPalUserInfo = 1410, - k_EMsgBSGetPayPalUserInfoResponse = 1411, - k_EMsgBSPaymentInstrBan = 1417, - k_EMsgBSPaymentInstrBanResponse = 1418, - k_EMsgBSInitGCBankXferTxn = 1421, - k_EMsgBSInitGCBankXferTxnResponse = 1422, - k_EMsgBSCommitGCTxn = 1425, - k_EMsgBSQueryTransactionStatus = 1426, - k_EMsgBSQueryTransactionStatusResponse = 1427, - k_EMsgBSQueryTxnExtendedInfo = 1433, - k_EMsgBSQueryTxnExtendedInfoResponse = 1434, - k_EMsgBSUpdateConversionRates = 1435, - k_EMsgBSPurchaseRunFraudChecks = 1437, - k_EMsgBSPurchaseRunFraudChecksResponse = 1438, - k_EMsgBSQueryBankInformation = 1440, - k_EMsgBSQueryBankInformationResponse = 1441, - k_EMsgBSValidateXsollaSignature = 1445, - k_EMsgBSValidateXsollaSignatureResponse = 1446, - k_EMsgBSQiwiWalletInvoice = 1448, - k_EMsgBSQiwiWalletInvoiceResponse = 1449, - k_EMsgBSUpdateInventoryFromProPack = 1450, - k_EMsgBSUpdateInventoryFromProPackResponse = 1451, - k_EMsgBSSendShippingRequest = 1452, - k_EMsgBSSendShippingRequestResponse = 1453, - k_EMsgBSGetProPackOrderStatus = 1454, - k_EMsgBSGetProPackOrderStatusResponse = 1455, - k_EMsgBSCheckJobRunning = 1456, - k_EMsgBSCheckJobRunningResponse = 1457, - k_EMsgBSResetPackagePurchaseRateLimit = 1458, - k_EMsgBSResetPackagePurchaseRateLimitResponse = 1459, - k_EMsgBSUpdatePaymentData = 1460, - k_EMsgBSUpdatePaymentDataResponse = 1461, - k_EMsgBSGetBillingAddress = 1462, - k_EMsgBSGetBillingAddressResponse = 1463, - k_EMsgBSGetCreditCardInfo = 1464, - k_EMsgBSGetCreditCardInfoResponse = 1465, - k_EMsgBSRemoveExpiredPaymentData = 1468, - k_EMsgBSRemoveExpiredPaymentDataResponse = 1469, - k_EMsgBSConvertToCurrentKeys = 1470, - k_EMsgBSConvertToCurrentKeysResponse = 1471, - k_EMsgBSInitPurchase = 1472, - k_EMsgBSInitPurchaseResponse = 1473, - k_EMsgBSCompletePurchase = 1474, - k_EMsgBSCompletePurchaseResponse = 1475, - k_EMsgBSPruneCardUsageStats = 1476, - k_EMsgBSPruneCardUsageStatsResponse = 1477, - k_EMsgBSStoreBankInformation = 1478, - k_EMsgBSStoreBankInformationResponse = 1479, - k_EMsgBSVerifyPOSAKey = 1480, - k_EMsgBSVerifyPOSAKeyResponse = 1481, - k_EMsgBSReverseRedeemPOSAKey = 1482, - k_EMsgBSReverseRedeemPOSAKeyResponse = 1483, - k_EMsgBSQueryFindCreditCard = 1484, - k_EMsgBSQueryFindCreditCardResponse = 1485, - k_EMsgBSStatusInquiryPOSAKey = 1486, - k_EMsgBSStatusInquiryPOSAKeyResponse = 1487, - k_EMsgBSBoaCompraConfirmProductDelivery = 1494, - k_EMsgBSBoaCompraConfirmProductDeliveryResponse = 1495, - k_EMsgBSGenerateBoaCompraMD5 = 1496, - k_EMsgBSGenerateBoaCompraMD5Response = 1497, - k_EMsgBSCommitWPTxn = 1498, - k_EMsgBSCommitAdyenTxn = 1499, - k_EMsgBaseATS = 1500, - k_EMsgATSStartStressTest = 1501, - k_EMsgATSStopStressTest = 1502, - k_EMsgATSRunFailServerTest = 1503, - k_EMsgATSUFSPerfTestTask = 1504, - k_EMsgATSUFSPerfTestResponse = 1505, - k_EMsgATSCycleTCM = 1506, - k_EMsgATSInitDRMSStressTest = 1507, - k_EMsgATSCallTest = 1508, - k_EMsgATSCallTestReply = 1509, - k_EMsgATSStartExternalStress = 1510, - k_EMsgATSExternalStressJobStart = 1511, - k_EMsgATSExternalStressJobQueued = 1512, - k_EMsgATSExternalStressJobRunning = 1513, - k_EMsgATSExternalStressJobStopped = 1514, - k_EMsgATSExternalStressJobStopAll = 1515, - k_EMsgATSExternalStressActionResult = 1516, - k_EMsgATSStarted = 1517, - k_EMsgATSCSPerfTestTask = 1518, - k_EMsgATSCSPerfTestResponse = 1519, - k_EMsgBaseDP = 1600, - k_EMsgDPSetPublishingState = 1601, - k_EMsgDPUniquePlayersStat = 1603, - k_EMsgDPStreamingUniquePlayersStat = 1604, - k_EMsgDPBlockingStats = 1607, - k_EMsgDPNatTraversalStats = 1608, - k_EMsgDPCloudStats = 1612, - k_EMsgDPGetPlayerCount = 1615, - k_EMsgDPGetPlayerCountResponse = 1616, - k_EMsgDPGameServersPlayersStats = 1617, - k_EMsgClientDPCheckSpecialSurvey = 1620, - k_EMsgClientDPCheckSpecialSurveyResponse = 1621, - k_EMsgClientDPSendSpecialSurveyResponse = 1622, - k_EMsgClientDPSendSpecialSurveyResponseReply = 1623, - k_EMsgDPStoreSaleStatistics = 1624, - k_EMsgDPPartnerMicroTxns = 1628, - k_EMsgDPPartnerMicroTxnsResponse = 1629, - k_EMsgDPVRUniquePlayersStat = 1631, - k_EMsgBaseCM = 1700, - k_EMsgCMSetAllowState = 1701, - k_EMsgCMSpewAllowState = 1702, - k_EMsgCMSessionRejected = 1703, - k_EMsgCMSetSecrets = 1704, - k_EMsgCMGetSecrets = 1705, - k_EMsgBaseGC = 2200, - k_EMsgGCCmdRevive = 2203, - k_EMsgGCCmdDown = 2206, - k_EMsgGCCmdDeploy = 2207, - k_EMsgGCCmdDeployResponse = 2208, - k_EMsgGCCmdSwitch = 2209, - k_EMsgAMRefreshSessions = 2210, - k_EMsgGCAchievementAwarded = 2212, - k_EMsgGCSystemMessage = 2213, - k_EMsgGCCmdStatus = 2216, - k_EMsgGCRegisterWebInterfaces_Deprecated = 2217, - k_EMsgGCGetAccountDetails_DEPRECATED = 2218, - k_EMsgGCInterAppMessage = 2219, - k_EMsgGCGetEmailTemplate = 2220, - k_EMsgGCGetEmailTemplateResponse = 2221, - k_EMsgGCHRelay = 2222, - k_EMsgGCHRelayToClient = 2223, - k_EMsgGCHUpdateSession = 2224, - k_EMsgGCHRequestUpdateSession = 2225, - k_EMsgGCHRequestStatus = 2226, - k_EMsgGCHRequestStatusResponse = 2227, - k_EMsgGCHAccountVacStatusChange = 2228, - k_EMsgGCHSpawnGC = 2229, - k_EMsgGCHSpawnGCResponse = 2230, - k_EMsgGCHKillGC = 2231, - k_EMsgGCHKillGCResponse = 2232, - k_EMsgGCHAccountTradeBanStatusChange = 2233, - k_EMsgGCHAccountLockStatusChange = 2234, - k_EMsgGCHVacVerificationChange = 2235, - k_EMsgGCHAccountPhoneNumberChange = 2236, - k_EMsgGCHAccountTwoFactorChange = 2237, - k_EMsgGCHInviteUserToLobby = 2238, - k_EMsgGCHUpdateMultipleSessions = 2239, - k_EMsgGCHMarkAppSessionsAuthoritative = 2240, - k_EMsgGCHRecurringSubscriptionStatusChange = 2241, - k_EMsgGCHAppCheersReceived = 2242, - k_EMsgGCHAppCheersGetAllowedTypes = 2243, - k_EMsgGCHAppCheersGetAllowedTypesResponse = 2244, - k_EMsgGCHRoutingRulesFromGCHtoGM = 2245, - k_EMsgGCHRoutingRulesToGCHfromGM = 2246, - k_EMsgUpdateCMMessageRateRules = 2247, - k_EMsgBaseP2P = 2500, - k_EMsgP2PIntroducerMessage = 2502, - k_EMsgBaseSM = 2900, - k_EMsgSMExpensiveReport = 2902, - k_EMsgSMHourlyReport = 2903, - k_EMsgSMPartitionRenames = 2905, - k_EMsgSMMonitorSpace = 2906, - k_EMsgSMTestNextBuildSchemaConversion = 2907, - k_EMsgSMTestNextBuildSchemaConversionResponse = 2908, - k_EMsgBaseTest = 3000, - k_EMsgFailServer = 3000, - k_EMsgJobHeartbeatTest = 3001, - k_EMsgJobHeartbeatTestResponse = 3002, - k_EMsgBaseFTSRange = 3100, - k_EMsgBaseCCSRange = 3150, - k_EMsgCCSDeleteAllCommentsByAuthor = 3161, - k_EMsgCCSDeleteAllCommentsByAuthorResponse = 3162, - k_EMsgBaseLBSRange = 3200, - k_EMsgLBSSetScore = 3201, - k_EMsgLBSSetScoreResponse = 3202, - k_EMsgLBSFindOrCreateLB = 3203, - k_EMsgLBSFindOrCreateLBResponse = 3204, - k_EMsgLBSGetLBEntries = 3205, - k_EMsgLBSGetLBEntriesResponse = 3206, - k_EMsgLBSGetLBList = 3207, - k_EMsgLBSGetLBListResponse = 3208, - k_EMsgLBSSetLBDetails = 3209, - k_EMsgLBSDeleteLB = 3210, - k_EMsgLBSDeleteLBEntry = 3211, - k_EMsgLBSResetLB = 3212, - k_EMsgLBSResetLBResponse = 3213, - k_EMsgLBSDeleteLBResponse = 3214, - k_EMsgBaseOGS = 3400, - k_EMsgOGSBeginSession = 3401, - k_EMsgOGSBeginSessionResponse = 3402, - k_EMsgOGSEndSession = 3403, - k_EMsgOGSEndSessionResponse = 3404, - k_EMsgOGSWriteAppSessionRow = 3406, - k_EMsgBaseBRP = 3600, - k_EMsgBRPPostTransactionTax = 3629, - k_EMsgBRPPostTransactionTaxResponse = 3630, - k_EMsgBaseAMRange2 = 4000, - k_EMsgAMCreateChat = 4001, - k_EMsgAMCreateChatResponse = 4002, - k_EMsgAMSetProfileURL = 4005, - k_EMsgAMGetAccountEmailAddress = 4006, - k_EMsgAMGetAccountEmailAddressResponse = 4007, - k_EMsgAMRequestClanData = 4008, - k_EMsgAMRouteToClients = 4009, - k_EMsgAMLeaveClan = 4010, - k_EMsgAMClanPermissions = 4011, - k_EMsgAMClanPermissionsResponse = 4012, - k_EMsgAMCreateClanEventDummyForRateLimiting = 4013, - k_EMsgAMUpdateClanEventDummyForRateLimiting = 4015, - k_EMsgAMSetClanPermissionSettings = 4021, - k_EMsgAMSetClanPermissionSettingsResponse = 4022, - k_EMsgAMGetClanPermissionSettings = 4023, - k_EMsgAMGetClanPermissionSettingsResponse = 4024, - k_EMsgAMPublishChatRoomInfo = 4025, - k_EMsgClientChatRoomInfo = 4026, - k_EMsgAMGetClanHistory = 4039, - k_EMsgAMGetClanHistoryResponse = 4040, - k_EMsgAMGetClanPermissionBits = 4041, - k_EMsgAMGetClanPermissionBitsResponse = 4042, - k_EMsgAMSetClanPermissionBits = 4043, - k_EMsgAMSetClanPermissionBitsResponse = 4044, - k_EMsgAMSessionInfoRequest = 4045, - k_EMsgAMSessionInfoResponse = 4046, - k_EMsgAMValidateWGToken = 4047, - k_EMsgAMGetClanRank = 4050, - k_EMsgAMGetClanRankResponse = 4051, - k_EMsgAMSetClanRank = 4052, - k_EMsgAMSetClanRankResponse = 4053, - k_EMsgAMGetClanPOTW = 4054, - k_EMsgAMGetClanPOTWResponse = 4055, - k_EMsgAMSetClanPOTW = 4056, - k_EMsgAMSetClanPOTWResponse = 4057, - k_EMsgAMDumpUser = 4059, - k_EMsgAMKickUserFromClan = 4060, - k_EMsgAMAddFounderToClan = 4061, - k_EMsgAMValidateWGTokenResponse = 4062, - k_EMsgAMSetAccountDetails = 4064, - k_EMsgAMGetChatBanList = 4065, - k_EMsgAMGetChatBanListResponse = 4066, - k_EMsgAMUnBanFromChat = 4067, - k_EMsgAMSetClanDetails = 4068, - k_EMsgUGSGetUserGameStats = 4073, - k_EMsgUGSGetUserGameStatsResponse = 4074, - k_EMsgAMCheckClanMembership = 4075, - k_EMsgAMGetClanMembers = 4076, - k_EMsgAMGetClanMembersResponse = 4077, - k_EMsgAMNotifyChatOfClanChange = 4079, - k_EMsgAMResubmitPurchase = 4080, - k_EMsgAMAddFriend = 4081, - k_EMsgAMAddFriendResponse = 4082, - k_EMsgAMRemoveFriend = 4083, - k_EMsgAMDumpClan = 4084, - k_EMsgAMChangeClanOwner = 4085, - k_EMsgAMCancelEasyCollect = 4086, - k_EMsgAMCancelEasyCollectResponse = 4087, - k_EMsgAMClansInCommon = 4090, - k_EMsgAMClansInCommonResponse = 4091, - k_EMsgAMIsValidAccountID = 4092, - k_EMsgAMWipeFriendsList = 4095, - k_EMsgAMSetIgnored = 4096, - k_EMsgAMClansInCommonCountResponse = 4097, - k_EMsgAMFriendsList = 4098, - k_EMsgAMFriendsListResponse = 4099, - k_EMsgAMFriendsInCommon = 4100, - k_EMsgAMFriendsInCommonResponse = 4101, - k_EMsgAMFriendsInCommonCountResponse = 4102, - k_EMsgAMClansInCommonCount = 4103, - k_EMsgAMChallengeVerdict = 4104, - k_EMsgAMChallengeNotification = 4105, - k_EMsgAMFindGSByIP = 4106, - k_EMsgAMFoundGSByIP = 4107, - k_EMsgAMGiftRevoked = 4108, - k_EMsgAMUserClanList = 4110, - k_EMsgAMUserClanListResponse = 4111, - k_EMsgAMGetAccountDetails2 = 4112, - k_EMsgAMGetAccountDetailsResponse2 = 4113, - k_EMsgAMSetCommunityProfileSettings = 4114, - k_EMsgAMSetCommunityProfileSettingsResponse = 4115, - k_EMsgAMGetCommunityPrivacyState = 4116, - k_EMsgAMGetCommunityPrivacyStateResponse = 4117, - k_EMsgAMCheckClanInviteRateLimiting = 4118, - k_EMsgUGSGetUserAchievementStatus = 4119, - k_EMsgAMGetIgnored = 4120, - k_EMsgAMGetIgnoredResponse = 4121, - k_EMsgAMSetIgnoredResponse = 4122, - k_EMsgAMSetFriendRelationshipNone = 4123, - k_EMsgAMGetFriendRelationship = 4124, - k_EMsgAMGetFriendRelationshipResponse = 4125, - k_EMsgAMServiceModulesCache = 4126, - k_EMsgAMServiceModulesCall = 4127, - k_EMsgAMServiceModulesCallResponse = 4128, - k_EMsgCommunityAddFriendNews = 4140, - k_EMsgAMFindClanUser = 4143, - k_EMsgAMFindClanUserResponse = 4144, - k_EMsgAMBanFromChat = 4145, - k_EMsgAMGetUserNewsSubscriptions = 4147, - k_EMsgAMGetUserNewsSubscriptionsResponse = 4148, - k_EMsgAMSetUserNewsSubscriptions = 4149, - k_EMsgAMSendQueuedEmails = 4152, - k_EMsgAMSetLicenseFlags = 4153, - k_EMsgCommunityDeleteUserNews = 4155, - k_EMsgAMGetAccountStatus = 4158, - k_EMsgAMGetAccountStatusResponse = 4159, - k_EMsgAMEditBanReason = 4160, - k_EMsgAMCheckClanMembershipResponse = 4161, - k_EMsgAMProbeClanMembershipList = 4162, - k_EMsgAMProbeClanMembershipListResponse = 4163, - k_EMsgUGSGetUserAchievementStatusResponse = 4164, - k_EMsgAMGetFriendsLobbies = 4165, - k_EMsgAMGetFriendsLobbiesResponse = 4166, - k_EMsgAMGetUserFriendNewsResponse = 4172, - k_EMsgCommunityGetUserFriendNews = 4173, - k_EMsgAMGetUserClansNewsResponse = 4174, - k_EMsgAMGetUserClansNews = 4175, - k_EMsgAMGetPreviousCBAccount = 4184, - k_EMsgAMGetPreviousCBAccountResponse = 4185, - k_EMsgAMGetUserLicenseHistory = 4190, - k_EMsgAMGetUserLicenseHistoryResponse = 4191, - k_EMsgAMSupportChangePassword = 4194, - k_EMsgAMSupportChangeEmail = 4195, - k_EMsgAMResetUserVerificationGSByIP = 4197, - k_EMsgAMUpdateGSPlayStats = 4198, - k_EMsgAMSupportEnableOrDisable = 4199, - k_EMsgAMGetPurchaseStatus = 4206, - k_EMsgAMSupportIsAccountEnabled = 4209, - k_EMsgAMSupportIsAccountEnabledResponse = 4210, - k_EMsgUGSGetUserStats = 4211, - k_EMsgAMGSSearch = 4213, - k_EMsgChatServerRouteFriendMsg = 4219, - k_EMsgAMTicketAuthRequestOrResponse = 4220, - k_EMsgAMAddFreeLicense = 4224, - k_EMsgAMValidateEmailLink = 4231, - k_EMsgAMValidateEmailLinkResponse = 4232, - k_EMsgUGSStoreUserStats = 4236, - k_EMsgAMDeleteStoredCard = 4241, - k_EMsgAMRevokeLegacyGameKeys = 4242, - k_EMsgAMGetWalletDetails = 4244, - k_EMsgAMGetWalletDetailsResponse = 4245, - k_EMsgAMDeleteStoredPaymentInfo = 4246, - k_EMsgAMGetStoredPaymentSummary = 4247, - k_EMsgAMGetStoredPaymentSummaryResponse = 4248, - k_EMsgAMGetWalletConversionRate = 4249, - k_EMsgAMGetWalletConversionRateResponse = 4250, - k_EMsgAMConvertWallet = 4251, - k_EMsgAMConvertWalletResponse = 4252, - k_EMsgAMSetPreApproval = 4255, - k_EMsgAMSetPreApprovalResponse = 4256, - k_EMsgAMCreateRefund = 4258, - k_EMsgAMCreateChargeback = 4260, - k_EMsgAMCreateDispute = 4262, - k_EMsgAMClearDispute = 4264, - k_EMsgAMCreateFinancialAdjustment = 4265, - k_EMsgAMPlayerNicknameList = 4266, - k_EMsgAMPlayerNicknameListResponse = 4267, - k_EMsgAMGetUserCurrentGameInfo = 4269, - k_EMsgAMGetUserCurrentGameInfoResponse = 4270, - k_EMsgAMGetGSPlayerList = 4271, - k_EMsgAMGetGSPlayerListResponse = 4272, - k_EMsgAMGetSteamIDForMicroTxn = 4278, - k_EMsgAMGetSteamIDForMicroTxnResponse = 4279, - k_EMsgAMSetPartnerMember = 4280, - k_EMsgAMRemovePublisherUser = 4281, - k_EMsgAMGetUserLicenseList = 4282, - k_EMsgAMGetUserLicenseListResponse = 4283, - k_EMsgAMReloadGameGroupPolicy = 4284, - k_EMsgAMAddFreeLicenseResponse = 4285, - k_EMsgAMVACStatusUpdate = 4286, - k_EMsgAMGetAccountDetails = 4287, - k_EMsgAMGetAccountDetailsResponse = 4288, - k_EMsgAMGetPlayerLinkDetails = 4289, - k_EMsgAMGetPlayerLinkDetailsResponse = 4290, - k_EMsgAMGetAccountFlagsForWGSpoofing = 4294, - k_EMsgAMGetAccountFlagsForWGSpoofingResponse = 4295, - k_EMsgAMGetClanOfficers = 4298, - k_EMsgAMGetClanOfficersResponse = 4299, - k_EMsgAMNameChange = 4300, - k_EMsgAMGetNameHistory = 4301, - k_EMsgAMGetNameHistoryResponse = 4302, - k_EMsgAMUpdateProviderStatus = 4305, - k_EMsgAMSupportRemoveAccountSecurity = 4307, - k_EMsgAMIsAccountInCaptchaGracePeriod = 4308, - k_EMsgAMIsAccountInCaptchaGracePeriodResponse = 4309, - k_EMsgAMAccountPS3Unlink = 4310, - k_EMsgAMAccountPS3UnlinkResponse = 4311, - k_EMsgUGSStoreUserStatsResponse = 4312, - k_EMsgAMGetAccountPSNInfo = 4313, - k_EMsgAMGetAccountPSNInfoResponse = 4314, - k_EMsgAMAuthenticatedPlayerList = 4315, - k_EMsgAMGetUserGifts = 4316, - k_EMsgAMGetUserGiftsResponse = 4317, - k_EMsgAMTransferLockedGifts = 4320, - k_EMsgAMTransferLockedGiftsResponse = 4321, - k_EMsgAMPlayerHostedOnGameServer = 4322, - k_EMsgAMGetAccountBanInfo = 4323, - k_EMsgAMGetAccountBanInfoResponse = 4324, - k_EMsgAMRecordBanEnforcement = 4325, - k_EMsgAMRollbackGiftTransfer = 4326, - k_EMsgAMRollbackGiftTransferResponse = 4327, - k_EMsgAMHandlePendingTransaction = 4328, - k_EMsgAMRequestClanDetails = 4329, - k_EMsgAMDeleteStoredPaypalAgreement = 4330, - k_EMsgAMGameServerUpdate = 4331, - k_EMsgAMGameServerRemove = 4332, - k_EMsgAMGetPaypalAgreements = 4333, - k_EMsgAMGetPaypalAgreementsResponse = 4334, - k_EMsgAMGameServerPlayerCompatibilityCheck = 4335, - k_EMsgAMGameServerPlayerCompatibilityCheckResponse = 4336, - k_EMsgAMRenewLicense = 4337, - k_EMsgAMGetAccountCommunityBanInfo = 4338, - k_EMsgAMGetAccountCommunityBanInfoResponse = 4339, - k_EMsgAMGameServerAccountChangePassword = 4340, - k_EMsgAMGameServerAccountDeleteAccount = 4341, - k_EMsgAMRenewAgreement = 4342, - k_EMsgAMXsollaPayment = 4344, - k_EMsgAMXsollaPaymentResponse = 4345, - k_EMsgAMAcctAllowedToPurchase = 4346, - k_EMsgAMAcctAllowedToPurchaseResponse = 4347, - k_EMsgAMSwapKioskDeposit = 4348, - k_EMsgAMSwapKioskDepositResponse = 4349, - k_EMsgAMSetUserGiftUnowned = 4350, - k_EMsgAMSetUserGiftUnownedResponse = 4351, - k_EMsgAMClaimUnownedUserGift = 4352, - k_EMsgAMClaimUnownedUserGiftResponse = 4353, - k_EMsgAMSetClanName = 4354, - k_EMsgAMSetClanNameResponse = 4355, - k_EMsgAMGrantCoupon = 4356, - k_EMsgAMGrantCouponResponse = 4357, - k_EMsgAMIsPackageRestrictedInUserCountry = 4358, - k_EMsgAMIsPackageRestrictedInUserCountryResponse = 4359, - k_EMsgAMHandlePendingTransactionResponse = 4360, - k_EMsgAMGrantGuestPasses2 = 4361, - k_EMsgAMGrantGuestPasses2Response = 4362, - k_EMsgAMGetPlayerBanDetails = 4365, - k_EMsgAMGetPlayerBanDetailsResponse = 4366, - k_EMsgAMFinalizePurchase = 4367, - k_EMsgAMFinalizePurchaseResponse = 4368, - k_EMsgAMPersonaChangeResponse = 4372, - k_EMsgAMGetClanDetailsForForumCreation = 4373, - k_EMsgAMGetClanDetailsForForumCreationResponse = 4374, - k_EMsgAMGetPendingNotificationCount = 4375, - k_EMsgAMGetPendingNotificationCountResponse = 4376, - k_EMsgAMPasswordHashUpgrade = 4377, - k_EMsgAMBoaCompraPayment = 4380, - k_EMsgAMBoaCompraPaymentResponse = 4381, - k_EMsgAMCompleteExternalPurchase = 4383, - k_EMsgAMCompleteExternalPurchaseResponse = 4384, - k_EMsgAMResolveNegativeWalletCredits = 4385, - k_EMsgAMResolveNegativeWalletCreditsResponse = 4386, - k_EMsgAMPlayerGetClanBasicDetails = 4389, - k_EMsgAMPlayerGetClanBasicDetailsResponse = 4390, - k_EMsgAMMOLPayment = 4391, - k_EMsgAMMOLPaymentResponse = 4392, - k_EMsgGetUserIPCountry = 4393, - k_EMsgGetUserIPCountryResponse = 4394, - k_EMsgNotificationOfSuspiciousActivity = 4395, - k_EMsgAMDegicaPayment = 4396, - k_EMsgAMDegicaPaymentResponse = 4397, - k_EMsgAMEClubPayment = 4398, - k_EMsgAMEClubPaymentResponse = 4399, - k_EMsgAMPayPalPaymentsHubPayment = 4400, - k_EMsgAMPayPalPaymentsHubPaymentResponse = 4401, - k_EMsgAMTwoFactorRecoverAuthenticatorRequest = 4402, - k_EMsgAMTwoFactorRecoverAuthenticatorResponse = 4403, - k_EMsgAMSmart2PayPayment = 4404, - k_EMsgAMSmart2PayPaymentResponse = 4405, - k_EMsgAMValidatePasswordResetCodeAndSendSmsRequest = 4406, - k_EMsgAMValidatePasswordResetCodeAndSendSmsResponse = 4407, - k_EMsgAMGetAccountResetDetailsRequest = 4408, - k_EMsgAMGetAccountResetDetailsResponse = 4409, - k_EMsgAMBitPayPayment = 4410, - k_EMsgAMBitPayPaymentResponse = 4411, - k_EMsgAMSendAccountInfoUpdate = 4412, - k_EMsgAMSendScheduledGift = 4413, - k_EMsgAMNodwinPayment = 4414, - k_EMsgAMNodwinPaymentResponse = 4415, - k_EMsgAMResolveWalletRevoke = 4416, - k_EMsgAMResolveWalletReverseRevoke = 4417, - k_EMsgAMFundedPayment = 4418, - k_EMsgAMFundedPaymentResponse = 4419, - k_EMsgAMRequestPersonaUpdateForChatServer = 4420, - k_EMsgAMPerfectWorldPayment = 4421, - k_EMsgAMPerfectWorldPaymentResponse = 4422, - k_EMsgAMECommPayPayment = 4423, - k_EMsgAMECommPayPaymentResponse = 4424, - k_EMsgAMSetRemoteClientID = 4425, - k_EMsgBasePSRange = 5000, - k_EMsgPSCreateShoppingCart = 5001, - k_EMsgPSCreateShoppingCartResponse = 5002, - k_EMsgPSIsValidShoppingCart = 5003, - k_EMsgPSIsValidShoppingCartResponse = 5004, - k_EMsgPSRemoveLineItemFromShoppingCart = 5007, - k_EMsgPSRemoveLineItemFromShoppingCartResponse = 5008, - k_EMsgPSGetShoppingCartContents = 5009, - k_EMsgPSGetShoppingCartContentsResponse = 5010, - k_EMsgPSAddWalletCreditToShoppingCart = 5011, - k_EMsgPSAddWalletCreditToShoppingCartResponse = 5012, - k_EMsgBaseUFSRange = 5200, - k_EMsgClientUFSUploadFileRequest = 5202, - k_EMsgClientUFSUploadFileResponse = 5203, - k_EMsgClientUFSUploadFileChunk = 5204, - k_EMsgClientUFSUploadFileFinished = 5205, - k_EMsgClientUFSGetFileListForApp = 5206, - k_EMsgClientUFSGetFileListForAppResponse = 5207, - k_EMsgClientUFSDownloadRequest = 5210, - k_EMsgClientUFSDownloadResponse = 5211, - k_EMsgClientUFSDownloadChunk = 5212, - k_EMsgClientUFSLoginRequest = 5213, - k_EMsgClientUFSLoginResponse = 5214, - k_EMsgUFSReloadPartitionInfo = 5215, - k_EMsgClientUFSTransferHeartbeat = 5216, - k_EMsgUFSSynchronizeFile = 5217, - k_EMsgUFSSynchronizeFileResponse = 5218, - k_EMsgClientUFSDeleteFileRequest = 5219, - k_EMsgClientUFSDeleteFileResponse = 5220, - k_EMsgClientUFSGetUGCDetails = 5226, - k_EMsgClientUFSGetUGCDetailsResponse = 5227, - k_EMsgUFSUpdateFileFlags = 5228, - k_EMsgUFSUpdateFileFlagsResponse = 5229, - k_EMsgClientUFSGetSingleFileInfo = 5230, - k_EMsgClientUFSGetSingleFileInfoResponse = 5231, - k_EMsgClientUFSShareFile = 5232, - k_EMsgClientUFSShareFileResponse = 5233, - k_EMsgUFSReloadAccount = 5234, - k_EMsgUFSReloadAccountResponse = 5235, - k_EMsgUFSUpdateRecordBatched = 5236, - k_EMsgUFSUpdateRecordBatchedResponse = 5237, - k_EMsgUFSMigrateFile = 5238, - k_EMsgUFSMigrateFileResponse = 5239, - k_EMsgUFSGetUGCURLs = 5240, - k_EMsgUFSGetUGCURLsResponse = 5241, - k_EMsgUFSHttpUploadFileFinishRequest = 5242, - k_EMsgUFSHttpUploadFileFinishResponse = 5243, - k_EMsgUFSDownloadStartRequest = 5244, - k_EMsgUFSDownloadStartResponse = 5245, - k_EMsgUFSDownloadChunkRequest = 5246, - k_EMsgUFSDownloadChunkResponse = 5247, - k_EMsgUFSDownloadFinishRequest = 5248, - k_EMsgUFSDownloadFinishResponse = 5249, - k_EMsgUFSFlushURLCache = 5250, - k_EMsgClientUFSUploadCommit = 5251, - k_EMsgClientUFSUploadCommitResponse = 5252, - k_EMsgUFSMigrateFileAppID = 5253, - k_EMsgUFSMigrateFileAppIDResponse = 5254, - k_EMsgBaseClient2 = 5400, - k_EMsgClientRequestForgottenPasswordEmail = 5401, - k_EMsgClientRequestForgottenPasswordEmailResponse = 5402, - k_EMsgClientCreateAccountResponse = 5403, - k_EMsgClientResetForgottenPassword = 5404, - k_EMsgClientResetForgottenPasswordResponse = 5405, - k_EMsgClientInformOfResetForgottenPassword = 5407, - k_EMsgClientInformOfResetForgottenPasswordResponse = 5408, - k_EMsgClientAnonUserLogOn_Deprecated = 5409, - k_EMsgClientGamesPlayedWithDataBlob = 5410, - k_EMsgClientUpdateUserGameInfo = 5411, - k_EMsgClientFileToDownload = 5412, - k_EMsgClientFileToDownloadResponse = 5413, - k_EMsgClientLBSSetScore = 5414, - k_EMsgClientLBSSetScoreResponse = 5415, - k_EMsgClientLBSFindOrCreateLB = 5416, - k_EMsgClientLBSFindOrCreateLBResponse = 5417, - k_EMsgClientLBSGetLBEntries = 5418, - k_EMsgClientLBSGetLBEntriesResponse = 5419, - k_EMsgClientChatDeclined = 5426, - k_EMsgClientFriendMsgIncoming = 5427, - k_EMsgClientAuthList_Deprecated = 5428, - k_EMsgClientTicketAuthComplete = 5429, - k_EMsgClientIsLimitedAccount = 5430, - k_EMsgClientRequestAuthList = 5431, - k_EMsgClientAuthList = 5432, - k_EMsgClientStat = 5433, - k_EMsgClientP2PConnectionInfo = 5434, - k_EMsgClientP2PConnectionFailInfo = 5435, - k_EMsgClientGetDepotDecryptionKey = 5438, - k_EMsgClientGetDepotDecryptionKeyResponse = 5439, - k_EMsgClientEnableTestLicense = 5443, - k_EMsgClientEnableTestLicenseResponse = 5444, - k_EMsgClientDisableTestLicense = 5445, - k_EMsgClientDisableTestLicenseResponse = 5446, - k_EMsgClientRequestValidationMail = 5448, - k_EMsgClientRequestValidationMailResponse = 5449, - k_EMsgClientCheckAppBetaPassword = 5450, - k_EMsgClientCheckAppBetaPasswordResponse = 5451, - k_EMsgClientToGC = 5452, - k_EMsgClientFromGC = 5453, - k_EMsgClientEmailAddrInfo = 5456, - k_EMsgClientPasswordChange3 = 5457, - k_EMsgClientEmailChange3 = 5458, - k_EMsgClientPersonalQAChange3 = 5459, - k_EMsgClientResetForgottenPassword3 = 5460, - k_EMsgClientRequestForgottenPasswordEmail3 = 5461, - k_EMsgClientNewLoginKey = 5463, - k_EMsgClientNewLoginKeyAccepted = 5464, - k_EMsgClientLogOnWithHash_Deprecated = 5465, - k_EMsgClientStoreUserStats2 = 5466, - k_EMsgClientStatsUpdated = 5467, - k_EMsgClientActivateOEMLicense = 5468, - k_EMsgClientRegisterOEMMachine = 5469, - k_EMsgClientRegisterOEMMachineResponse = 5470, - k_EMsgClientRequestedClientStats = 5480, - k_EMsgClientStat2Int32 = 5481, - k_EMsgClientStat2 = 5482, - k_EMsgClientVerifyPassword = 5483, - k_EMsgClientVerifyPasswordResponse = 5484, - k_EMsgClientDRMDownloadRequest = 5485, - k_EMsgClientDRMDownloadResponse = 5486, - k_EMsgClientDRMFinalResult = 5487, - k_EMsgClientGetFriendsWhoPlayGame = 5488, - k_EMsgClientGetFriendsWhoPlayGameResponse = 5489, - k_EMsgClientOGSBeginSession = 5490, - k_EMsgClientOGSBeginSessionResponse = 5491, - k_EMsgClientOGSEndSession = 5492, - k_EMsgClientOGSEndSessionResponse = 5493, - k_EMsgClientOGSWriteRow = 5494, - k_EMsgClientGetPeerContentInfo = 5495, - k_EMsgClientGetPeerContentInfoResponse = 5496, - k_EMsgClientStartPeerContentServer = 5497, - k_EMsgClientStartPeerContentServerResponse = 5498, - k_EMsgClientServerUnavailable = 5500, - k_EMsgClientServersAvailable = 5501, - k_EMsgClientRegisterAuthTicketWithCM = 5502, - k_EMsgClientGCMsgFailed = 5503, - k_EMsgClientMicroTxnAuthRequest = 5504, - k_EMsgClientMicroTxnAuthorize = 5505, - k_EMsgClientMicroTxnAuthorizeResponse = 5506, - k_EMsgClientGetMicroTxnInfo = 5508, - k_EMsgClientGetMicroTxnInfoResponse = 5509, - k_EMsgClientDeregisterWithServer = 5511, - k_EMsgClientSubscribeToPersonaFeed = 5512, - k_EMsgClientLogon = 5514, - k_EMsgClientGetClientDetails = 5515, - k_EMsgClientGetClientDetailsResponse = 5516, - k_EMsgClientReportOverlayDetourFailure = 5517, - k_EMsgClientGetClientAppList = 5518, - k_EMsgClientGetClientAppListResponse = 5519, - k_EMsgClientInstallClientApp = 5520, - k_EMsgClientInstallClientAppResponse = 5521, - k_EMsgClientUninstallClientApp = 5522, - k_EMsgClientUninstallClientAppResponse = 5523, - k_EMsgClientSetClientAppUpdateState = 5524, - k_EMsgClientSetClientAppUpdateStateResponse = 5525, - k_EMsgClientRequestEncryptedAppTicket = 5526, - k_EMsgClientRequestEncryptedAppTicketResponse = 5527, - k_EMsgClientWalletInfoUpdate = 5528, - k_EMsgClientLBSSetUGC = 5529, - k_EMsgClientLBSSetUGCResponse = 5530, - k_EMsgClientAMGetClanOfficers = 5531, - k_EMsgClientAMGetClanOfficersResponse = 5532, - k_EMsgClientFriendProfileInfo = 5535, - k_EMsgClientFriendProfileInfoResponse = 5536, - k_EMsgClientUpdateMachineAuth = 5537, - k_EMsgClientUpdateMachineAuthResponse = 5538, - k_EMsgClientReadMachineAuth = 5539, - k_EMsgClientReadMachineAuthResponse = 5540, - k_EMsgClientRequestMachineAuth = 5541, - k_EMsgClientRequestMachineAuthResponse = 5542, - k_EMsgClientScreenshotsChanged = 5543, - k_EMsgClientGetCDNAuthToken = 5546, - k_EMsgClientGetCDNAuthTokenResponse = 5547, - k_EMsgClientDownloadRateStatistics = 5548, - k_EMsgClientRequestAccountData = 5549, - k_EMsgClientRequestAccountDataResponse = 5550, - k_EMsgClientResetForgottenPassword4 = 5551, - k_EMsgClientHideFriend = 5552, - k_EMsgClientFriendsGroupsList = 5553, - k_EMsgClientGetClanActivityCounts = 5554, - k_EMsgClientGetClanActivityCountsResponse = 5555, - k_EMsgClientOGSReportString = 5556, - k_EMsgClientOGSReportBug = 5557, - k_EMsgClientSentLogs = 5558, - k_EMsgClientLogonGameServer = 5559, - k_EMsgAMClientCreateFriendsGroup = 5560, - k_EMsgAMClientCreateFriendsGroupResponse = 5561, - k_EMsgAMClientDeleteFriendsGroup = 5562, - k_EMsgAMClientDeleteFriendsGroupResponse = 5563, - k_EMsgAMClientManageFriendsGroup = 5564, - k_EMsgAMClientManageFriendsGroupResponse = 5565, - k_EMsgAMClientAddFriendToGroup = 5566, - k_EMsgAMClientAddFriendToGroupResponse = 5567, - k_EMsgAMClientRemoveFriendFromGroup = 5568, - k_EMsgAMClientRemoveFriendFromGroupResponse = 5569, - k_EMsgClientAMGetPersonaNameHistory = 5570, - k_EMsgClientAMGetPersonaNameHistoryResponse = 5571, - k_EMsgClientRequestFreeLicense = 5572, - k_EMsgClientRequestFreeLicenseResponse = 5573, - k_EMsgClientDRMDownloadRequestWithCrashData = 5574, - k_EMsgClientAuthListAck = 5575, - k_EMsgClientItemAnnouncements = 5576, - k_EMsgClientRequestItemAnnouncements = 5577, - k_EMsgClientFriendMsgEchoToSender = 5578, - k_EMsgClientCommentNotifications = 5582, - k_EMsgClientRequestCommentNotifications = 5583, - k_EMsgClientPersonaChangeResponse = 5584, - k_EMsgClientRequestWebAPIAuthenticateUserNonce = 5585, - k_EMsgClientRequestWebAPIAuthenticateUserNonceResponse = 5586, - k_EMsgClientPlayerNicknameList = 5587, - k_EMsgAMClientSetPlayerNickname = 5588, - k_EMsgAMClientSetPlayerNicknameResponse = 5589, - k_EMsgClientGetNumberOfCurrentPlayersDP = 5592, - k_EMsgClientGetNumberOfCurrentPlayersDPResponse = 5593, - k_EMsgClientServiceMethodLegacy = 5594, - k_EMsgClientServiceMethodLegacyResponse = 5595, - k_EMsgClientFriendUserStatusPublished = 5596, - k_EMsgClientCurrentUIMode = 5597, - k_EMsgClientVanityURLChangedNotification = 5598, - k_EMsgClientUserNotifications = 5599, - k_EMsgBaseDFS = 5600, - k_EMsgDFSGetFile = 5601, - k_EMsgDFSInstallLocalFile = 5602, - k_EMsgDFSConnection = 5603, - k_EMsgDFSConnectionReply = 5604, - k_EMsgClientDFSAuthenticateRequest = 5605, - k_EMsgClientDFSAuthenticateResponse = 5606, - k_EMsgClientDFSEndSession = 5607, - k_EMsgDFSPurgeFile = 5608, - k_EMsgDFSRouteFile = 5609, - k_EMsgDFSGetFileFromServer = 5610, - k_EMsgDFSAcceptedResponse = 5611, - k_EMsgDFSRequestPingback = 5612, - k_EMsgDFSRecvTransmitFile = 5613, - k_EMsgDFSSendTransmitFile = 5614, - k_EMsgDFSRequestPingback2 = 5615, - k_EMsgDFSResponsePingback2 = 5616, - k_EMsgClientDFSDownloadStatus = 5617, - k_EMsgDFSStartTransfer = 5618, - k_EMsgDFSTransferComplete = 5619, - k_EMsgDFSRouteFileResponse = 5620, - k_EMsgClientNetworkingCertRequest = 5621, - k_EMsgClientNetworkingCertRequestResponse = 5622, - k_EMsgClientChallengeRequest = 5623, - k_EMsgClientChallengeResponse = 5624, - k_EMsgBadgeCraftedNotification = 5625, - k_EMsgClientNetworkingMobileCertRequest = 5626, - k_EMsgClientNetworkingMobileCertRequestResponse = 5627, - k_EMsgBaseMDS = 5800, - k_EMsgMDSGetDepotDecryptionKey = 5812, - k_EMsgMDSGetDepotDecryptionKeyResponse = 5813, - k_EMsgMDSContentServerConfigRequest = 5827, - k_EMsgMDSContentServerConfig = 5828, - k_EMsgMDSGetDepotManifest = 5829, - k_EMsgMDSGetDepotManifestResponse = 5830, - k_EMsgMDSGetDepotManifestChunk = 5831, - k_EMsgMDSGetDepotChunk = 5832, - k_EMsgMDSGetDepotChunkResponse = 5833, - k_EMsgMDSGetDepotChunkChunk = 5834, - k_EMsgMDSToCSFlushChunk = 5844, - k_EMsgMDSMigrateChunk = 5847, - k_EMsgMDSMigrateChunkResponse = 5848, - k_EMsgMDSToCSFlushManifest = 5849, - k_EMsgCSBase = 6200, - k_EMsgCSPing = 6201, - k_EMsgCSPingResponse = 6202, - k_EMsgGMSBase = 6400, - k_EMsgGMSGameServerReplicate = 6401, - k_EMsgClientGMSServerQuery = 6403, - k_EMsgGMSClientServerQueryResponse = 6404, - k_EMsgAMGMSGameServerUpdate = 6405, - k_EMsgAMGMSGameServerRemove = 6406, - k_EMsgGameServerOutOfDate = 6407, - k_EMsgDeviceAuthorizationBase = 6500, - k_EMsgClientAuthorizeLocalDeviceRequest = 6501, - k_EMsgClientAuthorizeLocalDeviceResponse = 6502, - k_EMsgClientDeauthorizeDeviceRequest = 6503, - k_EMsgClientDeauthorizeDevice = 6504, - k_EMsgClientUseLocalDeviceAuthorizations = 6505, - k_EMsgClientGetAuthorizedDevices = 6506, - k_EMsgClientGetAuthorizedDevicesResponse = 6507, - k_EMsgAMNotifySessionDeviceAuthorized = 6508, - k_EMsgClientAuthorizeLocalDeviceNotification = 6509, - k_EMsgMMSBase = 6600, - k_EMsgClientMMSCreateLobby = 6601, - k_EMsgClientMMSCreateLobbyResponse = 6602, - k_EMsgClientMMSJoinLobby = 6603, - k_EMsgClientMMSJoinLobbyResponse = 6604, - k_EMsgClientMMSLeaveLobby = 6605, - k_EMsgClientMMSLeaveLobbyResponse = 6606, - k_EMsgClientMMSGetLobbyList = 6607, - k_EMsgClientMMSGetLobbyListResponse = 6608, - k_EMsgClientMMSSetLobbyData = 6609, - k_EMsgClientMMSSetLobbyDataResponse = 6610, - k_EMsgClientMMSGetLobbyData = 6611, - k_EMsgClientMMSLobbyData = 6612, - k_EMsgClientMMSSendLobbyChatMsg = 6613, - k_EMsgClientMMSLobbyChatMsg = 6614, - k_EMsgClientMMSSetLobbyOwner = 6615, - k_EMsgClientMMSSetLobbyOwnerResponse = 6616, - k_EMsgClientMMSSetLobbyGameServer = 6617, - k_EMsgClientMMSLobbyGameServerSet = 6618, - k_EMsgClientMMSUserJoinedLobby = 6619, - k_EMsgClientMMSUserLeftLobby = 6620, - k_EMsgClientMMSInviteToLobby = 6621, - k_EMsgClientMMSFlushFrenemyListCache = 6622, - k_EMsgClientMMSFlushFrenemyListCacheResponse = 6623, - k_EMsgClientMMSSetLobbyLinked = 6624, - k_EMsgClientMMSSetRatelimitPolicyOnClient = 6625, - k_EMsgClientMMSGetLobbyStatus = 6626, - k_EMsgClientMMSGetLobbyStatusResponse = 6627, - k_EMsgMMSGetLobbyList = 6628, - k_EMsgMMSGetLobbyListResponse = 6629, - k_EMsgNonStdMsgBase = 6800, - k_EMsgNonStdMsgMemcached = 6801, - k_EMsgNonStdMsgHTTPServer = 6802, - k_EMsgNonStdMsgHTTPClient = 6803, - k_EMsgNonStdMsgWGResponse = 6804, - k_EMsgNonStdMsgPHPSimulator = 6805, - k_EMsgNonStdMsgChase = 6806, - k_EMsgNonStdMsgDFSTransfer = 6807, - k_EMsgNonStdMsgTests = 6808, - k_EMsgNonStdMsgUMQpipeAAPL = 6809, - k_EMSgNonStdMsgSyslog = 6810, - k_EMsgNonStdMsgLogsink = 6811, - k_EMsgNonStdMsgSteam2Emulator = 6812, - k_EMsgNonStdMsgRTMPServer = 6813, - k_EMsgNonStdMsgWebSocket = 6814, - k_EMsgNonStdMsgRedis = 6815, - k_EMsgUDSBase = 7000, - k_EMsgClientUDSP2PSessionStarted = 7001, - k_EMsgClientUDSP2PSessionEnded = 7002, - k_EMsgUDSRenderUserAuth = 7003, - k_EMsgUDSRenderUserAuthResponse = 7004, - k_EMsgClientInviteToGame = 7005, - k_EMsgUDSHasSession = 7006, - k_EMsgUDSHasSessionResponse = 7007, - k_EMsgMPASBase = 7100, - k_EMsgMPASVacBanReset = 7101, - k_EMsgKGSBase = 7200, - k_EMsgUCMBase = 7300, - k_EMsgClientUCMAddScreenshot = 7301, - k_EMsgClientUCMAddScreenshotResponse = 7302, - k_EMsgUCMResetCommunityContent = 7307, - k_EMsgUCMResetCommunityContentResponse = 7308, - k_EMsgClientUCMDeleteScreenshot = 7309, - k_EMsgClientUCMDeleteScreenshotResponse = 7310, - k_EMsgClientUCMPublishFile = 7311, - k_EMsgClientUCMPublishFileResponse = 7312, - k_EMsgClientUCMDeletePublishedFile = 7315, - k_EMsgClientUCMDeletePublishedFileResponse = 7316, - k_EMsgClientUCMUpdatePublishedFile = 7325, - k_EMsgClientUCMUpdatePublishedFileResponse = 7326, - k_EMsgUCMUpdatePublishedFile = 7327, - k_EMsgUCMUpdatePublishedFileResponse = 7328, - k_EMsgUCMUpdatePublishedFileStat = 7331, - k_EMsgUCMReloadPublishedFile = 7337, - k_EMsgUCMReloadUserFileListCaches = 7338, - k_EMsgUCMPublishedFileReported = 7339, - k_EMsgUCMPublishedFilePreviewAdd = 7341, - k_EMsgUCMPublishedFilePreviewAddResponse = 7342, - k_EMsgUCMPublishedFilePreviewRemove = 7343, - k_EMsgUCMPublishedFilePreviewRemoveResponse = 7344, - k_EMsgUCMPublishedFileSubscribed = 7349, - k_EMsgUCMPublishedFileUnsubscribed = 7350, - k_EMsgUCMPublishFile = 7351, - k_EMsgUCMPublishFileResponse = 7352, - k_EMsgUCMPublishedFileChildAdd = 7353, - k_EMsgUCMPublishedFileChildAddResponse = 7354, - k_EMsgUCMPublishedFileChildRemove = 7355, - k_EMsgUCMPublishedFileChildRemoveResponse = 7356, - k_EMsgUCMPublishedFileParentChanged = 7359, - k_EMsgClientUCMSetUserPublishedFileAction = 7364, - k_EMsgClientUCMSetUserPublishedFileActionResponse = 7365, - k_EMsgClientUCMEnumeratePublishedFilesByUserAction = 7366, - k_EMsgClientUCMEnumeratePublishedFilesByUserActionResponse = 7367, - k_EMsgUCMGetUserSubscribedFiles = 7369, - k_EMsgUCMGetUserSubscribedFilesResponse = 7370, - k_EMsgUCMFixStatsPublishedFile = 7371, - k_EMsgClientUCMEnumerateUserSubscribedFilesWithUpdates = 7378, - k_EMsgClientUCMEnumerateUserSubscribedFilesWithUpdatesResponse = 7379, - k_EMsgUCMPublishedFileContentUpdated = 7380, - k_EMsgClientUCMPublishedFileUpdated = 7381, - k_EMsgFSBase = 7500, - k_EMsgClientRichPresenceUpload = 7501, - k_EMsgClientRichPresenceRequest = 7502, - k_EMsgClientRichPresenceInfo = 7503, - k_EMsgFSRichPresenceRequest = 7504, - k_EMsgFSRichPresenceResponse = 7505, - k_EMsgFSComputeFrenematrix = 7506, - k_EMsgFSComputeFrenematrixResponse = 7507, - k_EMsgFSPlayStatusNotification = 7508, - k_EMsgFSAddOrRemoveFollower = 7510, - k_EMsgFSAddOrRemoveFollowerResponse = 7511, - k_EMsgFSUpdateFollowingList = 7512, - k_EMsgFSCommentNotification = 7513, - k_EMsgFSCommentNotificationViewed = 7514, - k_EMsgClientFSGetFollowerCount = 7515, - k_EMsgClientFSGetFollowerCountResponse = 7516, - k_EMsgClientFSGetIsFollowing = 7517, - k_EMsgClientFSGetIsFollowingResponse = 7518, - k_EMsgClientFSEnumerateFollowingList = 7519, - k_EMsgClientFSEnumerateFollowingListResponse = 7520, - k_EMsgFSGetPendingNotificationCount = 7521, - k_EMsgFSGetPendingNotificationCountResponse = 7522, - k_EMsgClientChatOfflineMessageNotification = 7523, - k_EMsgClientChatRequestOfflineMessageCount = 7524, - k_EMsgClientChatGetFriendMessageHistory = 7525, - k_EMsgClientChatGetFriendMessageHistoryResponse = 7526, - k_EMsgClientChatGetFriendMessageHistoryForOfflineMessages = 7527, - k_EMsgClientFSGetFriendsSteamLevels = 7528, - k_EMsgClientFSGetFriendsSteamLevelsResponse = 7529, - k_EMsgAMRequestFriendData = 7530, - k_EMsgDRMRange2 = 7600, - k_EMsgCEGVersionSetEnableDisableRequest = 7600, - k_EMsgCEGVersionSetEnableDisableResponse = 7601, - k_EMsgCEGPropStatusDRMSRequest = 7602, - k_EMsgCEGPropStatusDRMSResponse = 7603, - k_EMsgCEGWhackFailureReportRequest = 7604, - k_EMsgCEGWhackFailureReportResponse = 7605, - k_EMsgDRMSFetchVersionSet = 7606, - k_EMsgDRMSFetchVersionSetResponse = 7607, - k_EMsgEconBase = 7700, - k_EMsgEconTrading_InitiateTradeRequest = 7701, - k_EMsgEconTrading_InitiateTradeProposed = 7702, - k_EMsgEconTrading_InitiateTradeResponse = 7703, - k_EMsgEconTrading_InitiateTradeResult = 7704, - k_EMsgEconTrading_StartSession = 7705, - k_EMsgEconTrading_CancelTradeRequest = 7706, - k_EMsgEconFlushInventoryCache = 7707, - k_EMsgEconFlushInventoryCacheResponse = 7708, - k_EMsgEconCDKeyProcessTransaction = 7711, - k_EMsgEconCDKeyProcessTransactionResponse = 7712, - k_EMsgEconGetErrorLogs = 7713, - k_EMsgEconGetErrorLogsResponse = 7714, - k_EMsgRMRange = 7800, - k_EMsgRMTestVerisignOTP = 7800, - k_EMsgRMTestVerisignOTPResponse = 7801, - k_EMsgRMDeleteMemcachedKeys = 7803, - k_EMsgRMRemoteInvoke = 7804, - k_EMsgBadLoginIPList = 7805, - k_EMsgRMMsgTraceAddTrigger = 7806, - k_EMsgRMMsgTraceRemoveTrigger = 7807, - k_EMsgRMMsgTraceEvent = 7808, - k_EMsgUGSBase = 7900, - k_EMsgUGSUpdateGlobalStats = 7900, - k_EMsgClientUGSGetGlobalStats = 7901, - k_EMsgClientUGSGetGlobalStatsResponse = 7902, - k_EMsgStoreBase = 8000, - k_EMsgUMQBase = 8100, - k_EMsgUMQLogonRequest = 8100, - k_EMsgUMQLogonResponse = 8101, - k_EMsgUMQLogoffRequest = 8102, - k_EMsgUMQLogoffResponse = 8103, - k_EMsgUMQSendChatMessage = 8104, - k_EMsgUMQIncomingChatMessage = 8105, - k_EMsgUMQPoll = 8106, - k_EMsgUMQPollResults = 8107, - k_EMsgUMQ2AM_ClientMsgBatch = 8108, - k_EMsgWorkshopBase = 8200, - k_EMsgWebAPIBase = 8300, - k_EMsgWebAPIValidateOAuth2Token = 8300, - k_EMsgWebAPIValidateOAuth2TokenResponse = 8301, - k_EMsgWebAPIRegisterGCInterfaces = 8303, - k_EMsgWebAPIInvalidateOAuthClientCache = 8304, - k_EMsgWebAPIInvalidateOAuthTokenCache = 8305, - k_EMsgWebAPISetSecrets = 8306, - k_EMsgBackpackBase = 8400, - k_EMsgBackpackAddToCurrency = 8401, - k_EMsgBackpackAddToCurrencyResponse = 8402, - k_EMsgCREBase = 8500, - k_EMsgCREItemVoteSummary = 8503, - k_EMsgCREItemVoteSummaryResponse = 8504, - k_EMsgCREUpdateUserPublishedItemVote = 8507, - k_EMsgCREUpdateUserPublishedItemVoteResponse = 8508, - k_EMsgCREGetUserPublishedItemVoteDetails = 8509, - k_EMsgCREGetUserPublishedItemVoteDetailsResponse = 8510, - k_EMsgSecretsBase = 8600, - k_EMsgSecretsRequestCredentialPair = 8600, - k_EMsgSecretsCredentialPairResponse = 8601, - k_EMsgBoxMonitorBase = 8700, - k_EMsgBoxMonitorReportRequest = 8700, - k_EMsgBoxMonitorReportResponse = 8701, - k_EMsgLogsinkBase = 8800, - k_EMsgLogsinkWriteReport = 8800, - k_EMsgPICSBase = 8900, - k_EMsgClientPICSChangesSinceRequest = 8901, - k_EMsgClientPICSChangesSinceResponse = 8902, - k_EMsgClientPICSProductInfoRequest = 8903, - k_EMsgClientPICSProductInfoResponse = 8904, - k_EMsgClientPICSAccessTokenRequest = 8905, - k_EMsgClientPICSAccessTokenResponse = 8906, - k_EMsgWorkerProcess = 9000, - k_EMsgWorkerProcessPingRequest = 9000, - k_EMsgWorkerProcessPingResponse = 9001, - k_EMsgWorkerProcessShutdown = 9002, - k_EMsgDRMWorkerProcess = 9100, - k_EMsgDRMWorkerProcessDRMAndSign = 9100, - k_EMsgDRMWorkerProcessDRMAndSignResponse = 9101, - k_EMsgDRMWorkerProcessSteamworksInfoRequest = 9102, - k_EMsgDRMWorkerProcessSteamworksInfoResponse = 9103, - k_EMsgDRMWorkerProcessInstallDRMDLLRequest = 9104, - k_EMsgDRMWorkerProcessInstallDRMDLLResponse = 9105, - k_EMsgDRMWorkerProcessSecretIdStringRequest = 9106, - k_EMsgDRMWorkerProcessSecretIdStringResponse = 9107, - k_EMsgDRMWorkerProcessInstallProcessedFilesRequest = 9110, - k_EMsgDRMWorkerProcessInstallProcessedFilesResponse = 9111, - k_EMsgDRMWorkerProcessExamineBlobRequest = 9112, - k_EMsgDRMWorkerProcessExamineBlobResponse = 9113, - k_EMsgDRMWorkerProcessDescribeSecretRequest = 9114, - k_EMsgDRMWorkerProcessDescribeSecretResponse = 9115, - k_EMsgDRMWorkerProcessBackfillOriginalRequest = 9116, - k_EMsgDRMWorkerProcessBackfillOriginalResponse = 9117, - k_EMsgDRMWorkerProcessValidateDRMDLLRequest = 9118, - k_EMsgDRMWorkerProcessValidateDRMDLLResponse = 9119, - k_EMsgDRMWorkerProcessValidateFileRequest = 9120, - k_EMsgDRMWorkerProcessValidateFileResponse = 9121, - k_EMsgDRMWorkerProcessSplitAndInstallRequest = 9122, - k_EMsgDRMWorkerProcessSplitAndInstallResponse = 9123, - k_EMsgDRMWorkerProcessGetBlobRequest = 9124, - k_EMsgDRMWorkerProcessGetBlobResponse = 9125, - k_EMsgDRMWorkerProcessEvaluateCrashRequest = 9126, - k_EMsgDRMWorkerProcessEvaluateCrashResponse = 9127, - k_EMsgDRMWorkerProcessAnalyzeFileRequest = 9128, - k_EMsgDRMWorkerProcessAnalyzeFileResponse = 9129, - k_EMsgDRMWorkerProcessUnpackBlobRequest = 9130, - k_EMsgDRMWorkerProcessUnpackBlobResponse = 9131, - k_EMsgDRMWorkerProcessInstallAllRequest = 9132, - k_EMsgDRMWorkerProcessInstallAllResponse = 9133, - k_EMsgTestWorkerProcess = 9200, - k_EMsgTestWorkerProcessLoadUnloadModuleRequest = 9200, - k_EMsgTestWorkerProcessLoadUnloadModuleResponse = 9201, - k_EMsgTestWorkerProcessServiceModuleCallRequest = 9202, - k_EMsgTestWorkerProcessServiceModuleCallResponse = 9203, - k_EMsgQuestServerBase = 9300, - k_EMsgClientGetEmoticonList = 9330, - k_EMsgClientEmoticonList = 9331, - k_EMsgSLCBase = 9400, - k_EMsgSLCUserSessionStatus = 9400, - k_EMsgSLCRequestUserSessionStatus = 9401, - k_EMsgSLCSharedLicensesLockStatus = 9402, - k_EMsgClientSharedLibraryLockStatus = 9405, - k_EMsgClientSharedLibraryStopPlaying = 9406, - k_EMsgSLCOwnerLibraryChanged = 9407, - k_EMsgSLCSharedLibraryChanged = 9408, - k_EMsgRemoteClientBase = 9500, - k_EMsgRemoteClientAuth_OBSOLETE = 9500, - k_EMsgRemoteClientAuthResponse_OBSOLETE = 9501, - k_EMsgRemoteClientAppStatus = 9502, - k_EMsgRemoteClientStartStream = 9503, - k_EMsgRemoteClientStartStreamResponse = 9504, - k_EMsgRemoteClientPing = 9505, - k_EMsgRemoteClientPingResponse = 9506, - k_EMsgClientUnlockH264 = 9507, - k_EMsgClientUnlockH264Response = 9508, - k_EMsgRemoteClientAcceptEULA = 9509, - k_EMsgRemoteClientGetControllerConfig = 9510, - k_EMsgRemoteClientGetControllerConfigResponse = 9511, - k_EMsgRemoteClientStreamingEnabled = 9512, - k_EMsgClientUnlockHEVC_OBSOLETE = 9513, - k_EMsgClientUnlockHEVCResponse_OBSOLETE = 9514, - k_EMsgRemoteClientStatusRequest = 9515, - k_EMsgRemoteClientStatusResponse = 9516, - k_EMsgClientConcurrentSessionsBase = 9600, - k_EMsgClientPlayingSessionState = 9600, - k_EMsgClientKickPlayingSession = 9601, - k_EMsgClientBroadcastBase = 9700, - k_EMsgClientBroadcastInit = 9700, - k_EMsgClientBroadcastFrames = 9701, - k_EMsgClientBroadcastDisconnect = 9702, - k_EMsgClientBroadcastUploadConfig = 9704, - k_EMsgBaseClient3 = 9800, - k_EMsgClientVoiceCallPreAuthorize = 9800, - k_EMsgClientVoiceCallPreAuthorizeResponse = 9801, - k_EMsgClientServerTimestampRequest = 9802, - k_EMsgClientServerTimestampResponse = 9803, - k_EMsgServiceMethodCallFromClientNonAuthed = 9804, - k_EMsgClientHello = 9805, - k_EMsgClientEnableOrDisableDownloads = 9806, - k_EMsgClientEnableOrDisableDownloadsResponse = 9807, - k_EMsgClientLANP2PBase = 9900, - k_EMsgClientLANP2PRequestChunk = 9900, - k_EMsgClientLANP2PRequestChunkResponse = 9901, - k_EMsgClientPeerChunkRequest = 9902, - k_EMsgClientPeerChunkResponse = 9903, - k_EMsgClientLANP2PMax = 9999, - k_EMsgBaseWatchdogServer = 10000, - k_EMsgNotifyWatchdog = 10000, - k_EMsgClientSiteLicenseBase = 10100, - k_EMsgClientSiteLicenseSiteInfoNotification = 10100, - k_EMsgClientSiteLicenseCheckout = 10101, - k_EMsgClientSiteLicenseCheckoutResponse = 10102, - k_EMsgClientSiteLicenseGetAvailableSeats = 10103, - k_EMsgClientSiteLicenseGetAvailableSeatsResponse = 10104, - k_EMsgClientSiteLicenseGetContentCacheInfo = 10105, - k_EMsgClientSiteLicenseGetContentCacheInfoResponse = 10106, - k_EMsgBaseChatServer = 12000, - k_EMsgChatServerGetPendingNotificationCount = 12000, - k_EMsgChatServerGetPendingNotificationCountResponse = 12001, - k_EMsgBaseSecretServer = 12100, - k_EMsgServerSecretChanged = 12100, - k_EMsgBaseWG = 12200, - k_EMsgWGConnectionProtocolError = 12200, - k_EMsgWGConnectionValidateUserToken = 12201, - k_EMsgWGConnectionValidateUserTokenResponse = 12202, - k_EMsgWGConnectionLegacyWGRequest = 12203, - k_EMsgWGConnectionLegacyWGResponse = 12204, -} + k_EMsgInvalid = 0, + k_EMsgMulti = 1, + k_EMsgProtobufWrapped = 2, + k_EMsgBaseGeneral = 100, + k_EMsgGenericReply = 100, + k_EMsgDestJobFailed = 113, + k_EMsgAlert = 115, + k_EMsgSCIDRequest = 120, + k_EMsgSCIDResponse = 121, + k_EMsgJobHeartbeat = 123, + k_EMsgHubConnect = 124, + k_EMsgSubscribe = 126, + k_EMRouteMessage = 127, + k_EMsgWGRequest = 130, + k_EMsgWGResponse = 131, + k_EMsgKeepAlive = 132, + k_EMsgWebAPIJobRequest = 133, + k_EMsgWebAPIJobResponse = 134, + k_EMsgClientSessionStart = 135, + k_EMsgClientSessionEnd = 136, + k_EMsgClientSessionUpdate = 137, + k_EMsgStatsDeprecated = 138, + k_EMsgPing = 139, + k_EMsgPingResponse = 140, + k_EMsgStats = 141, + k_EMsgRequestFullStatsBlock = 142, + k_EMsgLoadDBOCacheItem = 143, + k_EMsgLoadDBOCacheItemResponse = 144, + k_EMsgInvalidateDBOCacheItems = 145, + k_EMsgServiceMethod = 146, + k_EMsgServiceMethodResponse = 147, + k_EMsgClientPackageVersions = 148, + k_EMsgTimestampRequest = 149, + k_EMsgTimestampResponse = 150, + k_EMsgServiceMethodCallFromClient = 151, + k_EMsgServiceMethodSendToClient = 152, + k_EMsgBaseShell = 200, + k_EMsgAssignSysID = 200, + k_EMsgExit = 201, + k_EMsgDirRequest = 202, + k_EMsgDirResponse = 203, + k_EMsgZipRequest = 204, + k_EMsgZipResponse = 205, + k_EMsgUpdateRecordResponse = 215, + k_EMsgUpdateCreditCardRequest = 221, + k_EMsgUpdateUserBanResponse = 225, + k_EMsgPrepareToExit = 226, + k_EMsgContentDescriptionUpdate = 227, + k_EMsgTestResetServer = 228, + k_EMsgUniverseChanged = 229, + k_EMsgShellConfigInfoUpdate = 230, + k_EMsgRequestWindowsEventLogEntries = 233, + k_EMsgProvideWindowsEventLogEntries = 234, + k_EMsgShellSearchLogs = 235, + k_EMsgShellSearchLogsResponse = 236, + k_EMsgShellCheckWindowsUpdates = 237, + k_EMsgShellCheckWindowsUpdatesResponse = 238, + k_EMsgTestFlushDelayedSQL = 240, + k_EMsgTestFlushDelayedSQLResponse = 241, + k_EMsgEnsureExecuteScheduledTask_TEST = 242, + k_EMsgEnsureExecuteScheduledTaskResponse_TEST = 243, + k_EMsgUpdateScheduledTaskEnableState_TEST = 244, + k_EMsgUpdateScheduledTaskEnableStateResponse_TEST = 245, + k_EMsgContentDescriptionDeltaUpdate = 246, + k_EMsgGMShellAndServerAddressUpdates = 247, + k_EMsgBaseGM = 300, + k_EMsgHeartbeat = 300, + k_EMsgShellFailed = 301, + k_EMsgExitShells = 307, + k_EMsgExitShell = 308, + k_EMsgGracefulExitShell = 309, + k_EMsgLicenseProcessingComplete = 316, + k_EMsgSetTestFlag = 317, + k_EMsgQueuedEmailsComplete = 318, + k_EMsgGMDRMSync = 320, + k_EMsgPhysicalBoxInventory = 321, + k_EMsgUpdateConfigFile = 322, + k_EMsgTestInitDB = 323, + k_EMsgGMWriteConfigToSQL = 324, + k_EMsgGMLoadActivationCodes = 325, + k_EMsgGMQueueForFBS = 326, + k_EMsgGMSchemaConversionResults = 327, + k_EMsgGMWriteShellFailureToSQL = 329, + k_EMsgGMWriteStatsToSOS = 330, + k_EMsgGMGetServiceMethodRouting = 331, + k_EMsgGMGetServiceMethodRoutingResponse = 332, + k_EMsgGMTestNextBuildSchemaConversion = 334, + k_EMsgGMTestNextBuildSchemaConversionResponse = 335, + k_EMsgExpectShellRestart = 336, + k_EMsgHotFixProgress = 337, + k_EMsgGMStatsForwardToAdminConnections = 338, + k_EMsgGMGetModifiedConVars = 339, + k_EMsgGMGetModifiedConVarsResponse = 340, + k_EMsgBaseAIS = 400, + k_EMsgAISRequestContentDescription = 402, + k_EMsgAISUpdateAppInfo = 403, + k_EMsgAISGetPackageChangeNumber = 405, + k_EMsgAISGetPackageChangeNumberResponse = 406, + k_EMsgAIGetAppGCFlags = 423, + k_EMsgAIGetAppGCFlagsResponse = 424, + k_EMsgAIGetAppList = 425, + k_EMsgAIGetAppListResponse = 426, + k_EMsgAISGetCouponDefinition = 429, + k_EMsgAISGetCouponDefinitionResponse = 430, + k_EMsgAISUpdateSubordinateContentDescription = 431, + k_EMsgAISUpdateSubordinateContentDescriptionResponse = 432, + k_EMsgAISTestEnableGC = 433, + k_EMsgBaseAM = 500, + k_EMsgAMUpdateUserBanRequest = 504, + k_EMsgAMAddLicense = 505, + k_EMsgAMSendSystemIMToUser = 508, + k_EMsgAMExtendLicense = 509, + k_EMsgAMAddMinutesToLicense = 510, + k_EMsgAMCancelLicense = 511, + k_EMsgAMInitPurchase = 512, + k_EMsgAMPurchaseResponse = 513, + k_EMsgAMGetFinalPrice = 514, + k_EMsgAMGetFinalPriceResponse = 515, + k_EMsgAMGetLegacyGameKey = 516, + k_EMsgAMGetLegacyGameKeyResponse = 517, + k_EMsgAMFindHungTransactions = 518, + k_EMsgAMSetAccountTrustedRequest = 519, + k_EMsgAMCancelPurchase = 522, + k_EMsgAMNewChallenge = 523, + k_EMsgAMLoadOEMTickets = 524, + k_EMsgAMFixPendingPurchase = 525, + k_EMsgAMFixPendingPurchaseResponse = 526, + k_EMsgAMIsUserBanned = 527, + k_EMsgAMRegisterKey = 528, + k_EMsgAMLoadActivationCodes = 529, + k_EMsgAMLoadActivationCodesResponse = 530, + k_EMsgAMLookupKeyResponse = 531, + k_EMsgAMLookupKey = 532, + k_EMsgAMChatCleanup = 533, + k_EMsgAMClanCleanup = 534, + k_EMsgAMFixPendingRefund = 535, + k_EMsgAMReverseChargeback = 536, + k_EMsgAMReverseChargebackResponse = 537, + k_EMsgAMClanCleanupList = 538, + k_EMsgAMGetLicenses = 539, + k_EMsgAMGetLicensesResponse = 540, + k_EMsgAMSendCartRepurchase = 541, + k_EMsgAMSendCartRepurchaseResponse = 542, + k_EMsgAllowUserToPlayQuery = 550, + k_EMsgAllowUserToPlayResponse = 551, + k_EMsgAMVerfiyUser = 552, + k_EMsgAMClientNotPlaying = 553, + k_EMsgAMClientRequestFriendship = 554, + k_EMsgAMRelayPublishStatus = 555, + k_EMsgAMInitPurchaseResponse = 560, + k_EMsgAMRevokePurchaseResponse = 561, + k_EMsgAMRefreshGuestPasses = 563, + k_EMsgAMGrantGuestPasses = 566, + k_EMsgAMClanDataUpdated = 567, + k_EMsgAMReloadAccount = 568, + k_EMsgAMClientChatMsgRelay = 569, + k_EMsgAMChatMulti = 570, + k_EMsgAMClientChatInviteRelay = 571, + k_EMsgAMChatInvite = 572, + k_EMsgAMClientJoinChatRelay = 573, + k_EMsgAMClientChatMemberInfoRelay = 574, + k_EMsgAMPublishChatMemberInfo = 575, + k_EMsgAMClientAcceptFriendInvite = 576, + k_EMsgAMChatEnter = 577, + k_EMsgAMClientPublishRemovalFromSource = 578, + k_EMsgAMChatActionResult = 579, + k_EMsgAMFindAccounts = 580, + k_EMsgAMFindAccountsResponse = 581, + k_EMsgAMIsAccountNameInUse = 582, + k_EMsgAMIsAccountNameInUseResponse = 583, + k_EMsgAMSetAccountFlags = 584, + k_EMsgAMCreateClan = 586, + k_EMsgAMCreateClanResponse = 587, + k_EMsgAMGetClanDetails = 588, + k_EMsgAMGetClanDetailsResponse = 589, + k_EMsgAMSetPersonaName = 590, + k_EMsgAMSetAvatar = 591, + k_EMsgAMAuthenticateUser = 592, + k_EMsgAMAuthenticateUserResponse = 593, + k_EMsgAMP2PIntroducerMessage = 596, + k_EMsgClientChatAction = 597, + k_EMsgAMClientChatActionRelay = 598, + k_EMsgBaseVS = 600, + k_EMsgReqChallenge = 600, + k_EMsgVACResponse = 601, + k_EMsgReqChallengeTest = 602, + k_EMsgVSMarkCheat = 604, + k_EMsgVSAddCheat = 605, + k_EMsgVSPurgeCodeModDB = 606, + k_EMsgVSGetChallengeResults = 607, + k_EMsgVSChallengeResultText = 608, + k_EMsgVSReportLingerer = 609, + k_EMsgVSRequestManagedChallenge = 610, + k_EMsgVSLoadDBFinished = 611, + k_EMsgBaseDRMS = 625, + k_EMsgDRMBuildBlobRequest = 628, + k_EMsgDRMBuildBlobResponse = 629, + k_EMsgDRMResolveGuidRequest = 630, + k_EMsgDRMResolveGuidResponse = 631, + k_EMsgDRMVariabilityReport = 633, + k_EMsgDRMVariabilityReportResponse = 634, + k_EMsgDRMStabilityReport = 635, + k_EMsgDRMStabilityReportResponse = 636, + k_EMsgDRMDetailsReportRequest = 637, + k_EMsgDRMDetailsReportResponse = 638, + k_EMsgDRMProcessFile = 639, + k_EMsgDRMAdminUpdate = 640, + k_EMsgDRMAdminUpdateResponse = 641, + k_EMsgDRMSync = 642, + k_EMsgDRMSyncResponse = 643, + k_EMsgDRMProcessFileResponse = 644, + k_EMsgDRMEmptyGuidCache = 645, + k_EMsgDRMEmptyGuidCacheResponse = 646, + k_EMsgBaseCS = 650, + k_EMsgBaseClient = 700, + k_EMsgClientLogOn_Deprecated = 701, + k_EMsgClientAnonLogOn_Deprecated = 702, + k_EMsgClientHeartBeat = 703, + k_EMsgClientVACResponse = 704, + k_EMsgClientGamesPlayed_obsolete = 705, + k_EMsgClientLogOff = 706, + k_EMsgClientNoUDPConnectivity = 707, + k_EMsgClientConnectionStats = 710, + k_EMsgClientPingResponse = 712, + k_EMsgClientRemoveFriend = 714, + k_EMsgClientGamesPlayedNoDataBlob = 715, + k_EMsgClientChangeStatus = 716, + k_EMsgClientVacStatusResponse = 717, + k_EMsgClientFriendMsg = 718, + k_EMsgClientGameConnect_obsolete = 719, + k_EMsgClientGamesPlayed2_obsolete = 720, + k_EMsgClientGameEnded_obsolete = 721, + k_EMsgClientSystemIM = 726, + k_EMsgClientSystemIMAck = 727, + k_EMsgClientGetLicenses = 728, + k_EMsgClientGetLegacyGameKey = 730, + k_EMsgClientContentServerLogOn_Deprecated = 731, + k_EMsgClientAckVACBan2 = 732, + k_EMsgClientGetPurchaseReceipts = 736, + k_EMsgClientGamesPlayed3_obsolete = 738, + k_EMsgClientAckGuestPass = 740, + k_EMsgClientRedeemGuestPass = 741, + k_EMsgClientGamesPlayed = 742, + k_EMsgClientRegisterKey = 743, + k_EMsgClientInviteUserToClan = 744, + k_EMsgClientAcknowledgeClanInvite = 745, + k_EMsgClientPurchaseWithMachineID = 746, + k_EMsgClientAppUsageEvent = 747, + k_EMsgClientLogOnResponse = 751, + k_EMsgClientSetHeartbeatRate = 755, + k_EMsgClientNotLoggedOnDeprecated = 756, + k_EMsgClientLoggedOff = 757, + k_EMsgGSApprove = 758, + k_EMsgGSDeny = 759, + k_EMsgGSKick = 760, + k_EMsgClientPurchaseResponse = 763, + k_EMsgClientPing = 764, + k_EMsgClientNOP = 765, + k_EMsgClientPersonaState = 766, + k_EMsgClientFriendsList = 767, + k_EMsgClientAccountInfo = 768, + k_EMsgClientNewsUpdate = 771, + k_EMsgClientGameConnectDeny = 773, + k_EMsgGSStatusReply = 774, + k_EMsgClientGameConnectTokens = 779, + k_EMsgClientLicenseList = 780, + k_EMsgClientVACBanStatus = 782, + k_EMsgClientCMList = 783, + k_EMsgClientEncryptPct = 784, + k_EMsgClientGetLegacyGameKeyResponse = 785, + k_EMsgClientAddFriend = 791, + k_EMsgClientAddFriendResponse = 792, + k_EMsgClientAckGuestPassResponse = 796, + k_EMsgClientRedeemGuestPassResponse = 797, + k_EMsgClientUpdateGuestPassesList = 798, + k_EMsgClientChatMsg = 799, + k_EMsgClientChatInvite = 800, + k_EMsgClientJoinChat = 801, + k_EMsgClientChatMemberInfo = 802, + k_EMsgClientLogOnWithCredentials_Deprecated = 803, + k_EMsgClientPasswordChangeResponse = 805, + k_EMsgClientChatEnter = 807, + k_EMsgClientFriendRemovedFromSource = 808, + k_EMsgClientCreateChat = 809, + k_EMsgClientCreateChatResponse = 810, + k_EMsgClientP2PIntroducerMessage = 813, + k_EMsgClientChatActionResult = 814, + k_EMsgClientRequestFriendData = 815, + k_EMsgClientGetUserStats = 818, + k_EMsgClientGetUserStatsResponse = 819, + k_EMsgClientStoreUserStats = 820, + k_EMsgClientStoreUserStatsResponse = 821, + k_EMsgClientClanState = 822, + k_EMsgClientServiceModule = 830, + k_EMsgClientServiceCall = 831, + k_EMsgClientServiceCallResponse = 832, + k_EMsgClientNatTraversalStatEvent = 839, + k_EMsgClientSteamUsageEvent = 842, + k_EMsgClientCheckPassword = 845, + k_EMsgClientResetPassword = 846, + k_EMsgClientCheckPasswordResponse = 848, + k_EMsgClientResetPasswordResponse = 849, + k_EMsgClientSessionToken = 850, + k_EMsgClientDRMProblemReport = 851, + k_EMsgClientSetIgnoreFriend = 855, + k_EMsgClientSetIgnoreFriendResponse = 856, + k_EMsgClientGetAppOwnershipTicket = 857, + k_EMsgClientGetAppOwnershipTicketResponse = 858, + k_EMsgClientGetLobbyListResponse = 860, + k_EMsgClientServerList = 880, + k_EMsgClientDRMBlobRequest = 896, + k_EMsgClientDRMBlobResponse = 897, + k_EMsgBaseGameServer = 900, + k_EMsgGSDisconnectNotice = 901, + k_EMsgGSStatus = 903, + k_EMsgGSUserPlaying = 905, + k_EMsgGSStatus2 = 906, + k_EMsgGSStatusUpdate_Unused = 907, + k_EMsgGSServerType = 908, + k_EMsgGSPlayerList = 909, + k_EMsgGSGetUserAchievementStatus = 910, + k_EMsgGSGetUserAchievementStatusResponse = 911, + k_EMsgGSGetPlayStats = 918, + k_EMsgGSGetPlayStatsResponse = 919, + k_EMsgGSGetUserGroupStatus = 920, + k_EMsgAMGetUserGroupStatus = 921, + k_EMsgAMGetUserGroupStatusResponse = 922, + k_EMsgGSGetUserGroupStatusResponse = 923, + k_EMsgGSGetReputation = 936, + k_EMsgGSGetReputationResponse = 937, + k_EMsgGSAssociateWithClan = 938, + k_EMsgGSAssociateWithClanResponse = 939, + k_EMsgGSComputeNewPlayerCompatibility = 940, + k_EMsgGSComputeNewPlayerCompatibilityResponse = 941, + k_EMsgBaseAdmin = 1000, + k_EMsgAdminCmd = 1000, + k_EMsgAdminCmdResponse = 1004, + k_EMsgAdminLogListenRequest = 1005, + k_EMsgAdminLogEvent = 1006, + k_EMsgUniverseData = 1010, + k_EMsgAdminSpew = 1019, + k_EMsgAdminConsoleTitle = 1020, + k_EMsgAdminGCSpew = 1023, + k_EMsgAdminGCCommand = 1024, + k_EMsgAdminGCGetCommandList = 1025, + k_EMsgAdminGCGetCommandListResponse = 1026, + k_EMsgFBSConnectionData = 1027, + k_EMsgAdminMsgSpew = 1028, + k_EMsgBaseFBS = 1100, + k_EMsgFBSReqVersion = 1100, + k_EMsgFBSVersionInfo = 1101, + k_EMsgFBSForceRefresh = 1102, + k_EMsgFBSForceBounce = 1103, + k_EMsgFBSDeployPackage = 1104, + k_EMsgFBSDeployResponse = 1105, + k_EMsgFBSUpdateBootstrapper = 1106, + k_EMsgFBSSetState = 1107, + k_EMsgFBSApplyOSUpdates = 1108, + k_EMsgFBSRunCMDScript = 1109, + k_EMsgFBSRebootBox = 1110, + k_EMsgFBSSetBigBrotherMode = 1111, + k_EMsgFBSMinidumpServer = 1112, + k_EMsgFBSDeployHotFixPackage = 1114, + k_EMsgFBSDeployHotFixResponse = 1115, + k_EMsgFBSDownloadHotFix = 1116, + k_EMsgFBSDownloadHotFixResponse = 1117, + k_EMsgFBSUpdateTargetConfigFile = 1118, + k_EMsgFBSApplyAccountCred = 1119, + k_EMsgFBSApplyAccountCredResponse = 1120, + k_EMsgFBSSetShellCount = 1121, + k_EMsgFBSTerminateShell = 1122, + k_EMsgFBSQueryGMForRequest = 1123, + k_EMsgFBSQueryGMResponse = 1124, + k_EMsgFBSTerminateZombies = 1125, + k_EMsgFBSInfoFromBootstrapper = 1126, + k_EMsgFBSRebootBoxResponse = 1127, + k_EMsgFBSBootstrapperPackageRequest = 1128, + k_EMsgFBSBootstrapperPackageResponse = 1129, + k_EMsgFBSBootstrapperGetPackageChunk = 1130, + k_EMsgFBSBootstrapperGetPackageChunkResponse = 1131, + k_EMsgFBSBootstrapperPackageTransferProgress = 1132, + k_EMsgFBSRestartBootstrapper = 1133, + k_EMsgFBSPauseFrozenDumps = 1134, + k_EMsgBaseFileXfer = 1200, + k_EMsgFileXferRequest = 1200, + k_EMsgFileXferResponse = 1201, + k_EMsgFileXferData = 1202, + k_EMsgFileXferEnd = 1203, + k_EMsgFileXferDataAck = 1204, + k_EMsgBaseChannelAuth = 1300, + k_EMsgChannelAuthChallenge = 1300, + k_EMsgChannelAuthResponse = 1301, + k_EMsgChannelAuthResult = 1302, + k_EMsgChannelEncryptRequest = 1303, + k_EMsgChannelEncryptResponse = 1304, + k_EMsgChannelEncryptResult = 1305, + k_EMsgBaseBS = 1400, + k_EMsgBSPurchaseStart = 1401, + k_EMsgBSPurchaseResponse = 1402, + k_EMsgBSAuthenticateCCTrans = 1403, + k_EMsgBSAuthenticateCCTransResponse = 1404, + k_EMsgBSSettleComplete = 1406, + k_EMsgBSInitPayPalTxn = 1408, + k_EMsgBSInitPayPalTxnResponse = 1409, + k_EMsgBSGetPayPalUserInfo = 1410, + k_EMsgBSGetPayPalUserInfoResponse = 1411, + k_EMsgBSPaymentInstrBan = 1417, + k_EMsgBSPaymentInstrBanResponse = 1418, + k_EMsgBSInitGCBankXferTxn = 1421, + k_EMsgBSInitGCBankXferTxnResponse = 1422, + k_EMsgBSCommitGCTxn = 1425, + k_EMsgBSQueryTransactionStatus = 1426, + k_EMsgBSQueryTransactionStatusResponse = 1427, + k_EMsgBSQueryTxnExtendedInfo = 1433, + k_EMsgBSQueryTxnExtendedInfoResponse = 1434, + k_EMsgBSUpdateConversionRates = 1435, + k_EMsgBSPurchaseRunFraudChecks = 1437, + k_EMsgBSPurchaseRunFraudChecksResponse = 1438, + k_EMsgBSQueryBankInformation = 1440, + k_EMsgBSQueryBankInformationResponse = 1441, + k_EMsgBSValidateXsollaSignature = 1445, + k_EMsgBSValidateXsollaSignatureResponse = 1446, + k_EMsgBSQiwiWalletInvoice = 1448, + k_EMsgBSQiwiWalletInvoiceResponse = 1449, + k_EMsgBSUpdateInventoryFromProPack = 1450, + k_EMsgBSUpdateInventoryFromProPackResponse = 1451, + k_EMsgBSSendShippingRequest = 1452, + k_EMsgBSSendShippingRequestResponse = 1453, + k_EMsgBSGetProPackOrderStatus = 1454, + k_EMsgBSGetProPackOrderStatusResponse = 1455, + k_EMsgBSCheckJobRunning = 1456, + k_EMsgBSCheckJobRunningResponse = 1457, + k_EMsgBSResetPackagePurchaseRateLimit = 1458, + k_EMsgBSResetPackagePurchaseRateLimitResponse = 1459, + k_EMsgBSUpdatePaymentData = 1460, + k_EMsgBSUpdatePaymentDataResponse = 1461, + k_EMsgBSGetBillingAddress = 1462, + k_EMsgBSGetBillingAddressResponse = 1463, + k_EMsgBSGetCreditCardInfo = 1464, + k_EMsgBSGetCreditCardInfoResponse = 1465, + k_EMsgBSRemoveExpiredPaymentData = 1468, + k_EMsgBSRemoveExpiredPaymentDataResponse = 1469, + k_EMsgBSConvertToCurrentKeys = 1470, + k_EMsgBSConvertToCurrentKeysResponse = 1471, + k_EMsgBSInitPurchase = 1472, + k_EMsgBSInitPurchaseResponse = 1473, + k_EMsgBSCompletePurchase = 1474, + k_EMsgBSCompletePurchaseResponse = 1475, + k_EMsgBSPruneCardUsageStats = 1476, + k_EMsgBSPruneCardUsageStatsResponse = 1477, + k_EMsgBSStoreBankInformation = 1478, + k_EMsgBSStoreBankInformationResponse = 1479, + k_EMsgBSVerifyPOSAKey = 1480, + k_EMsgBSVerifyPOSAKeyResponse = 1481, + k_EMsgBSReverseRedeemPOSAKey = 1482, + k_EMsgBSReverseRedeemPOSAKeyResponse = 1483, + k_EMsgBSQueryFindCreditCard = 1484, + k_EMsgBSQueryFindCreditCardResponse = 1485, + k_EMsgBSStatusInquiryPOSAKey = 1486, + k_EMsgBSStatusInquiryPOSAKeyResponse = 1487, + k_EMsgBSBoaCompraConfirmProductDelivery = 1494, + k_EMsgBSBoaCompraConfirmProductDeliveryResponse = 1495, + k_EMsgBSGenerateBoaCompraMD5 = 1496, + k_EMsgBSGenerateBoaCompraMD5Response = 1497, + k_EMsgBSCommitWPTxn = 1498, + k_EMsgBSCommitAdyenTxn = 1499, + k_EMsgBaseATS = 1500, + k_EMsgATSStartStressTest = 1501, + k_EMsgATSStopStressTest = 1502, + k_EMsgATSRunFailServerTest = 1503, + k_EMsgATSUFSPerfTestTask = 1504, + k_EMsgATSUFSPerfTestResponse = 1505, + k_EMsgATSCycleTCM = 1506, + k_EMsgATSInitDRMSStressTest = 1507, + k_EMsgATSCallTest = 1508, + k_EMsgATSCallTestReply = 1509, + k_EMsgATSStartExternalStress = 1510, + k_EMsgATSExternalStressJobStart = 1511, + k_EMsgATSExternalStressJobQueued = 1512, + k_EMsgATSExternalStressJobRunning = 1513, + k_EMsgATSExternalStressJobStopped = 1514, + k_EMsgATSExternalStressJobStopAll = 1515, + k_EMsgATSExternalStressActionResult = 1516, + k_EMsgATSStarted = 1517, + k_EMsgATSCSPerfTestTask = 1518, + k_EMsgATSCSPerfTestResponse = 1519, + k_EMsgBaseDP = 1600, + k_EMsgDPSetPublishingState = 1601, + k_EMsgDPUniquePlayersStat = 1603, + k_EMsgDPStreamingUniquePlayersStat = 1604, + k_EMsgDPBlockingStats = 1607, + k_EMsgDPNatTraversalStats = 1608, + k_EMsgDPCloudStats = 1612, + k_EMsgDPGetPlayerCount = 1615, + k_EMsgDPGetPlayerCountResponse = 1616, + k_EMsgDPGameServersPlayersStats = 1617, + k_EMsgClientDPCheckSpecialSurvey = 1620, + k_EMsgClientDPCheckSpecialSurveyResponse = 1621, + k_EMsgClientDPSendSpecialSurveyResponse = 1622, + k_EMsgClientDPSendSpecialSurveyResponseReply = 1623, + k_EMsgDPStoreSaleStatistics = 1624, + k_EMsgDPPartnerMicroTxns = 1628, + k_EMsgDPPartnerMicroTxnsResponse = 1629, + k_EMsgDPVRUniquePlayersStat = 1631, + k_EMsgBaseCM = 1700, + k_EMsgCMSetAllowState = 1701, + k_EMsgCMSpewAllowState = 1702, + k_EMsgCMSessionRejected = 1703, + k_EMsgCMSetSecrets = 1704, + k_EMsgCMGetSecrets = 1705, + k_EMsgBaseGC = 2200, + k_EMsgGCCmdRevive = 2203, + k_EMsgGCCmdDown = 2206, + k_EMsgGCCmdDeploy = 2207, + k_EMsgGCCmdDeployResponse = 2208, + k_EMsgGCCmdSwitch = 2209, + k_EMsgAMRefreshSessions = 2210, + k_EMsgGCAchievementAwarded = 2212, + k_EMsgGCSystemMessage = 2213, + k_EMsgGCCmdStatus = 2216, + k_EMsgGCRegisterWebInterfaces_Deprecated = 2217, + k_EMsgGCGetAccountDetails_DEPRECATED = 2218, + k_EMsgGCInterAppMessage = 2219, + k_EMsgGCGetEmailTemplate = 2220, + k_EMsgGCGetEmailTemplateResponse = 2221, + k_EMsgGCHRelay = 2222, + k_EMsgGCHRelayToClient = 2223, + k_EMsgGCHUpdateSession = 2224, + k_EMsgGCHRequestUpdateSession = 2225, + k_EMsgGCHRequestStatus = 2226, + k_EMsgGCHRequestStatusResponse = 2227, + k_EMsgGCHAccountVacStatusChange = 2228, + k_EMsgGCHSpawnGC = 2229, + k_EMsgGCHSpawnGCResponse = 2230, + k_EMsgGCHKillGC = 2231, + k_EMsgGCHKillGCResponse = 2232, + k_EMsgGCHAccountTradeBanStatusChange = 2233, + k_EMsgGCHAccountLockStatusChange = 2234, + k_EMsgGCHVacVerificationChange = 2235, + k_EMsgGCHAccountPhoneNumberChange = 2236, + k_EMsgGCHAccountTwoFactorChange = 2237, + k_EMsgGCHInviteUserToLobby = 2238, + k_EMsgGCHUpdateMultipleSessions = 2239, + k_EMsgGCHMarkAppSessionsAuthoritative = 2240, + k_EMsgGCHRecurringSubscriptionStatusChange = 2241, + k_EMsgGCHAppCheersReceived = 2242, + k_EMsgGCHAppCheersGetAllowedTypes = 2243, + k_EMsgGCHAppCheersGetAllowedTypesResponse = 2244, + k_EMsgGCHRoutingRulesFromGCHtoGM = 2245, + k_EMsgGCHRoutingRulesToGCHfromGM = 2246, + k_EMsgUpdateCMMessageRateRules = 2247, + k_EMsgBaseP2P = 2500, + k_EMsgP2PIntroducerMessage = 2502, + k_EMsgBaseSM = 2900, + k_EMsgSMExpensiveReport = 2902, + k_EMsgSMHourlyReport = 2903, + k_EMsgSMPartitionRenames = 2905, + k_EMsgSMMonitorSpace = 2906, + k_EMsgSMTestNextBuildSchemaConversion = 2907, + k_EMsgSMTestNextBuildSchemaConversionResponse = 2908, + k_EMsgBaseTest = 3000, + k_EMsgFailServer = 3000, + k_EMsgJobHeartbeatTest = 3001, + k_EMsgJobHeartbeatTestResponse = 3002, + k_EMsgBaseFTSRange = 3100, + k_EMsgBaseCCSRange = 3150, + k_EMsgCCSDeleteAllCommentsByAuthor = 3161, + k_EMsgCCSDeleteAllCommentsByAuthorResponse = 3162, + k_EMsgBaseLBSRange = 3200, + k_EMsgLBSSetScore = 3201, + k_EMsgLBSSetScoreResponse = 3202, + k_EMsgLBSFindOrCreateLB = 3203, + k_EMsgLBSFindOrCreateLBResponse = 3204, + k_EMsgLBSGetLBEntries = 3205, + k_EMsgLBSGetLBEntriesResponse = 3206, + k_EMsgLBSGetLBList = 3207, + k_EMsgLBSGetLBListResponse = 3208, + k_EMsgLBSSetLBDetails = 3209, + k_EMsgLBSDeleteLB = 3210, + k_EMsgLBSDeleteLBEntry = 3211, + k_EMsgLBSResetLB = 3212, + k_EMsgLBSResetLBResponse = 3213, + k_EMsgLBSDeleteLBResponse = 3214, + k_EMsgBaseOGS = 3400, + k_EMsgOGSBeginSession = 3401, + k_EMsgOGSBeginSessionResponse = 3402, + k_EMsgOGSEndSession = 3403, + k_EMsgOGSEndSessionResponse = 3404, + k_EMsgOGSWriteAppSessionRow = 3406, + k_EMsgBaseBRP = 3600, + k_EMsgBRPPostTransactionTax = 3629, + k_EMsgBRPPostTransactionTaxResponse = 3630, + k_EMsgBaseAMRange2 = 4000, + k_EMsgAMCreateChat = 4001, + k_EMsgAMCreateChatResponse = 4002, + k_EMsgAMSetProfileURL = 4005, + k_EMsgAMGetAccountEmailAddress = 4006, + k_EMsgAMGetAccountEmailAddressResponse = 4007, + k_EMsgAMRequestClanData = 4008, + k_EMsgAMRouteToClients = 4009, + k_EMsgAMLeaveClan = 4010, + k_EMsgAMClanPermissions = 4011, + k_EMsgAMClanPermissionsResponse = 4012, + k_EMsgAMCreateClanEventDummyForRateLimiting = 4013, + k_EMsgAMUpdateClanEventDummyForRateLimiting = 4015, + k_EMsgAMSetClanPermissionSettings = 4021, + k_EMsgAMSetClanPermissionSettingsResponse = 4022, + k_EMsgAMGetClanPermissionSettings = 4023, + k_EMsgAMGetClanPermissionSettingsResponse = 4024, + k_EMsgAMPublishChatRoomInfo = 4025, + k_EMsgClientChatRoomInfo = 4026, + k_EMsgAMGetClanHistory = 4039, + k_EMsgAMGetClanHistoryResponse = 4040, + k_EMsgAMGetClanPermissionBits = 4041, + k_EMsgAMGetClanPermissionBitsResponse = 4042, + k_EMsgAMSetClanPermissionBits = 4043, + k_EMsgAMSetClanPermissionBitsResponse = 4044, + k_EMsgAMSessionInfoRequest = 4045, + k_EMsgAMSessionInfoResponse = 4046, + k_EMsgAMValidateWGToken = 4047, + k_EMsgAMGetClanRank = 4050, + k_EMsgAMGetClanRankResponse = 4051, + k_EMsgAMSetClanRank = 4052, + k_EMsgAMSetClanRankResponse = 4053, + k_EMsgAMGetClanPOTW = 4054, + k_EMsgAMGetClanPOTWResponse = 4055, + k_EMsgAMSetClanPOTW = 4056, + k_EMsgAMSetClanPOTWResponse = 4057, + k_EMsgAMDumpUser = 4059, + k_EMsgAMKickUserFromClan = 4060, + k_EMsgAMAddFounderToClan = 4061, + k_EMsgAMValidateWGTokenResponse = 4062, + k_EMsgAMSetAccountDetails = 4064, + k_EMsgAMGetChatBanList = 4065, + k_EMsgAMGetChatBanListResponse = 4066, + k_EMsgAMUnBanFromChat = 4067, + k_EMsgAMSetClanDetails = 4068, + k_EMsgUGSGetUserGameStats = 4073, + k_EMsgUGSGetUserGameStatsResponse = 4074, + k_EMsgAMCheckClanMembership = 4075, + k_EMsgAMGetClanMembers = 4076, + k_EMsgAMGetClanMembersResponse = 4077, + k_EMsgAMNotifyChatOfClanChange = 4079, + k_EMsgAMResubmitPurchase = 4080, + k_EMsgAMAddFriend = 4081, + k_EMsgAMAddFriendResponse = 4082, + k_EMsgAMRemoveFriend = 4083, + k_EMsgAMDumpClan = 4084, + k_EMsgAMChangeClanOwner = 4085, + k_EMsgAMCancelEasyCollect = 4086, + k_EMsgAMCancelEasyCollectResponse = 4087, + k_EMsgAMClansInCommon = 4090, + k_EMsgAMClansInCommonResponse = 4091, + k_EMsgAMIsValidAccountID = 4092, + k_EMsgAMWipeFriendsList = 4095, + k_EMsgAMSetIgnored = 4096, + k_EMsgAMClansInCommonCountResponse = 4097, + k_EMsgAMFriendsList = 4098, + k_EMsgAMFriendsListResponse = 4099, + k_EMsgAMFriendsInCommon = 4100, + k_EMsgAMFriendsInCommonResponse = 4101, + k_EMsgAMFriendsInCommonCountResponse = 4102, + k_EMsgAMClansInCommonCount = 4103, + k_EMsgAMChallengeVerdict = 4104, + k_EMsgAMChallengeNotification = 4105, + k_EMsgAMFindGSByIP = 4106, + k_EMsgAMFoundGSByIP = 4107, + k_EMsgAMGiftRevoked = 4108, + k_EMsgAMUserClanList = 4110, + k_EMsgAMUserClanListResponse = 4111, + k_EMsgAMGetAccountDetails2 = 4112, + k_EMsgAMGetAccountDetailsResponse2 = 4113, + k_EMsgAMSetCommunityProfileSettings = 4114, + k_EMsgAMSetCommunityProfileSettingsResponse = 4115, + k_EMsgAMGetCommunityPrivacyState = 4116, + k_EMsgAMGetCommunityPrivacyStateResponse = 4117, + k_EMsgAMCheckClanInviteRateLimiting = 4118, + k_EMsgUGSGetUserAchievementStatus = 4119, + k_EMsgAMGetIgnored = 4120, + k_EMsgAMGetIgnoredResponse = 4121, + k_EMsgAMSetIgnoredResponse = 4122, + k_EMsgAMSetFriendRelationshipNone = 4123, + k_EMsgAMGetFriendRelationship = 4124, + k_EMsgAMGetFriendRelationshipResponse = 4125, + k_EMsgAMServiceModulesCache = 4126, + k_EMsgAMServiceModulesCall = 4127, + k_EMsgAMServiceModulesCallResponse = 4128, + k_EMsgCommunityAddFriendNews = 4140, + k_EMsgAMFindClanUser = 4143, + k_EMsgAMFindClanUserResponse = 4144, + k_EMsgAMBanFromChat = 4145, + k_EMsgAMGetUserNewsSubscriptions = 4147, + k_EMsgAMGetUserNewsSubscriptionsResponse = 4148, + k_EMsgAMSetUserNewsSubscriptions = 4149, + k_EMsgAMSendQueuedEmails = 4152, + k_EMsgAMSetLicenseFlags = 4153, + k_EMsgCommunityDeleteUserNews = 4155, + k_EMsgAMGetAccountStatus = 4158, + k_EMsgAMGetAccountStatusResponse = 4159, + k_EMsgAMEditBanReason = 4160, + k_EMsgAMCheckClanMembershipResponse = 4161, + k_EMsgAMProbeClanMembershipList = 4162, + k_EMsgAMProbeClanMembershipListResponse = 4163, + k_EMsgUGSGetUserAchievementStatusResponse = 4164, + k_EMsgAMGetFriendsLobbies = 4165, + k_EMsgAMGetFriendsLobbiesResponse = 4166, + k_EMsgAMGetUserFriendNewsResponse = 4172, + k_EMsgCommunityGetUserFriendNews = 4173, + k_EMsgAMGetUserClansNewsResponse = 4174, + k_EMsgAMGetUserClansNews = 4175, + k_EMsgAMGetPreviousCBAccount = 4184, + k_EMsgAMGetPreviousCBAccountResponse = 4185, + k_EMsgAMGetUserLicenseHistory = 4190, + k_EMsgAMGetUserLicenseHistoryResponse = 4191, + k_EMsgAMSupportChangePassword = 4194, + k_EMsgAMSupportChangeEmail = 4195, + k_EMsgAMResetUserVerificationGSByIP = 4197, + k_EMsgAMUpdateGSPlayStats = 4198, + k_EMsgAMSupportEnableOrDisable = 4199, + k_EMsgAMGetPurchaseStatus = 4206, + k_EMsgAMSupportIsAccountEnabled = 4209, + k_EMsgAMSupportIsAccountEnabledResponse = 4210, + k_EMsgUGSGetUserStats = 4211, + k_EMsgAMGSSearch = 4213, + k_EMsgChatServerRouteFriendMsg = 4219, + k_EMsgAMTicketAuthRequestOrResponse = 4220, + k_EMsgAMAddFreeLicense = 4224, + k_EMsgAMValidateEmailLink = 4231, + k_EMsgAMValidateEmailLinkResponse = 4232, + k_EMsgUGSStoreUserStats = 4236, + k_EMsgAMDeleteStoredCard = 4241, + k_EMsgAMRevokeLegacyGameKeys = 4242, + k_EMsgAMGetWalletDetails = 4244, + k_EMsgAMGetWalletDetailsResponse = 4245, + k_EMsgAMDeleteStoredPaymentInfo = 4246, + k_EMsgAMGetStoredPaymentSummary = 4247, + k_EMsgAMGetStoredPaymentSummaryResponse = 4248, + k_EMsgAMGetWalletConversionRate = 4249, + k_EMsgAMGetWalletConversionRateResponse = 4250, + k_EMsgAMConvertWallet = 4251, + k_EMsgAMConvertWalletResponse = 4252, + k_EMsgAMSetPreApproval = 4255, + k_EMsgAMSetPreApprovalResponse = 4256, + k_EMsgAMCreateRefund = 4258, + k_EMsgAMCreateChargeback = 4260, + k_EMsgAMCreateDispute = 4262, + k_EMsgAMClearDispute = 4264, + k_EMsgAMCreateFinancialAdjustment = 4265, + k_EMsgAMPlayerNicknameList = 4266, + k_EMsgAMPlayerNicknameListResponse = 4267, + k_EMsgAMGetUserCurrentGameInfo = 4269, + k_EMsgAMGetUserCurrentGameInfoResponse = 4270, + k_EMsgAMGetGSPlayerList = 4271, + k_EMsgAMGetGSPlayerListResponse = 4272, + k_EMsgAMGetSteamIDForMicroTxn = 4278, + k_EMsgAMGetSteamIDForMicroTxnResponse = 4279, + k_EMsgAMSetPartnerMember = 4280, + k_EMsgAMRemovePublisherUser = 4281, + k_EMsgAMGetUserLicenseList = 4282, + k_EMsgAMGetUserLicenseListResponse = 4283, + k_EMsgAMReloadGameGroupPolicy = 4284, + k_EMsgAMAddFreeLicenseResponse = 4285, + k_EMsgAMVACStatusUpdate = 4286, + k_EMsgAMGetAccountDetails = 4287, + k_EMsgAMGetAccountDetailsResponse = 4288, + k_EMsgAMGetPlayerLinkDetails = 4289, + k_EMsgAMGetPlayerLinkDetailsResponse = 4290, + k_EMsgAMGetAccountFlagsForWGSpoofing = 4294, + k_EMsgAMGetAccountFlagsForWGSpoofingResponse = 4295, + k_EMsgAMGetClanOfficers = 4298, + k_EMsgAMGetClanOfficersResponse = 4299, + k_EMsgAMNameChange = 4300, + k_EMsgAMGetNameHistory = 4301, + k_EMsgAMGetNameHistoryResponse = 4302, + k_EMsgAMUpdateProviderStatus = 4305, + k_EMsgAMSupportRemoveAccountSecurity = 4307, + k_EMsgAMIsAccountInCaptchaGracePeriod = 4308, + k_EMsgAMIsAccountInCaptchaGracePeriodResponse = 4309, + k_EMsgAMAccountPS3Unlink = 4310, + k_EMsgAMAccountPS3UnlinkResponse = 4311, + k_EMsgUGSStoreUserStatsResponse = 4312, + k_EMsgAMGetAccountPSNInfo = 4313, + k_EMsgAMGetAccountPSNInfoResponse = 4314, + k_EMsgAMAuthenticatedPlayerList = 4315, + k_EMsgAMGetUserGifts = 4316, + k_EMsgAMGetUserGiftsResponse = 4317, + k_EMsgAMTransferLockedGifts = 4320, + k_EMsgAMTransferLockedGiftsResponse = 4321, + k_EMsgAMPlayerHostedOnGameServer = 4322, + k_EMsgAMGetAccountBanInfo = 4323, + k_EMsgAMGetAccountBanInfoResponse = 4324, + k_EMsgAMRecordBanEnforcement = 4325, + k_EMsgAMRollbackGiftTransfer = 4326, + k_EMsgAMRollbackGiftTransferResponse = 4327, + k_EMsgAMHandlePendingTransaction = 4328, + k_EMsgAMRequestClanDetails = 4329, + k_EMsgAMDeleteStoredPaypalAgreement = 4330, + k_EMsgAMGameServerUpdate = 4331, + k_EMsgAMGameServerRemove = 4332, + k_EMsgAMGetPaypalAgreements = 4333, + k_EMsgAMGetPaypalAgreementsResponse = 4334, + k_EMsgAMGameServerPlayerCompatibilityCheck = 4335, + k_EMsgAMGameServerPlayerCompatibilityCheckResponse = 4336, + k_EMsgAMRenewLicense = 4337, + k_EMsgAMGetAccountCommunityBanInfo = 4338, + k_EMsgAMGetAccountCommunityBanInfoResponse = 4339, + k_EMsgAMGameServerAccountChangePassword = 4340, + k_EMsgAMGameServerAccountDeleteAccount = 4341, + k_EMsgAMRenewAgreement = 4342, + k_EMsgAMXsollaPayment = 4344, + k_EMsgAMXsollaPaymentResponse = 4345, + k_EMsgAMAcctAllowedToPurchase = 4346, + k_EMsgAMAcctAllowedToPurchaseResponse = 4347, + k_EMsgAMSwapKioskDeposit = 4348, + k_EMsgAMSwapKioskDepositResponse = 4349, + k_EMsgAMSetUserGiftUnowned = 4350, + k_EMsgAMSetUserGiftUnownedResponse = 4351, + k_EMsgAMClaimUnownedUserGift = 4352, + k_EMsgAMClaimUnownedUserGiftResponse = 4353, + k_EMsgAMSetClanName = 4354, + k_EMsgAMSetClanNameResponse = 4355, + k_EMsgAMGrantCoupon = 4356, + k_EMsgAMGrantCouponResponse = 4357, + k_EMsgAMIsPackageRestrictedInUserCountry = 4358, + k_EMsgAMIsPackageRestrictedInUserCountryResponse = 4359, + k_EMsgAMHandlePendingTransactionResponse = 4360, + k_EMsgAMGrantGuestPasses2 = 4361, + k_EMsgAMGrantGuestPasses2Response = 4362, + k_EMsgAMGetPlayerBanDetails = 4365, + k_EMsgAMGetPlayerBanDetailsResponse = 4366, + k_EMsgAMFinalizePurchase = 4367, + k_EMsgAMFinalizePurchaseResponse = 4368, + k_EMsgAMPersonaChangeResponse = 4372, + k_EMsgAMGetClanDetailsForForumCreation = 4373, + k_EMsgAMGetClanDetailsForForumCreationResponse = 4374, + k_EMsgAMGetPendingNotificationCount = 4375, + k_EMsgAMGetPendingNotificationCountResponse = 4376, + k_EMsgAMPasswordHashUpgrade = 4377, + k_EMsgAMBoaCompraPayment = 4380, + k_EMsgAMBoaCompraPaymentResponse = 4381, + k_EMsgAMCompleteExternalPurchase = 4383, + k_EMsgAMCompleteExternalPurchaseResponse = 4384, + k_EMsgAMResolveNegativeWalletCredits = 4385, + k_EMsgAMResolveNegativeWalletCreditsResponse = 4386, + k_EMsgAMPlayerGetClanBasicDetails = 4389, + k_EMsgAMPlayerGetClanBasicDetailsResponse = 4390, + k_EMsgAMMOLPayment = 4391, + k_EMsgAMMOLPaymentResponse = 4392, + k_EMsgGetUserIPCountry = 4393, + k_EMsgGetUserIPCountryResponse = 4394, + k_EMsgNotificationOfSuspiciousActivity = 4395, + k_EMsgAMDegicaPayment = 4396, + k_EMsgAMDegicaPaymentResponse = 4397, + k_EMsgAMEClubPayment = 4398, + k_EMsgAMEClubPaymentResponse = 4399, + k_EMsgAMPayPalPaymentsHubPayment = 4400, + k_EMsgAMPayPalPaymentsHubPaymentResponse = 4401, + k_EMsgAMTwoFactorRecoverAuthenticatorRequest = 4402, + k_EMsgAMTwoFactorRecoverAuthenticatorResponse = 4403, + k_EMsgAMSmart2PayPayment = 4404, + k_EMsgAMSmart2PayPaymentResponse = 4405, + k_EMsgAMValidatePasswordResetCodeAndSendSmsRequest = 4406, + k_EMsgAMValidatePasswordResetCodeAndSendSmsResponse = 4407, + k_EMsgAMGetAccountResetDetailsRequest = 4408, + k_EMsgAMGetAccountResetDetailsResponse = 4409, + k_EMsgAMBitPayPayment = 4410, + k_EMsgAMBitPayPaymentResponse = 4411, + k_EMsgAMSendAccountInfoUpdate = 4412, + k_EMsgAMSendScheduledGift = 4413, + k_EMsgAMNodwinPayment = 4414, + k_EMsgAMNodwinPaymentResponse = 4415, + k_EMsgAMResolveWalletRevoke = 4416, + k_EMsgAMResolveWalletReverseRevoke = 4417, + k_EMsgAMFundedPayment = 4418, + k_EMsgAMFundedPaymentResponse = 4419, + k_EMsgAMRequestPersonaUpdateForChatServer = 4420, + k_EMsgAMPerfectWorldPayment = 4421, + k_EMsgAMPerfectWorldPaymentResponse = 4422, + k_EMsgAMECommPayPayment = 4423, + k_EMsgAMECommPayPaymentResponse = 4424, + k_EMsgAMSetRemoteClientID = 4425, + k_EMsgBasePSRange = 5000, + k_EMsgPSCreateShoppingCart = 5001, + k_EMsgPSCreateShoppingCartResponse = 5002, + k_EMsgPSIsValidShoppingCart = 5003, + k_EMsgPSIsValidShoppingCartResponse = 5004, + k_EMsgPSRemoveLineItemFromShoppingCart = 5007, + k_EMsgPSRemoveLineItemFromShoppingCartResponse = 5008, + k_EMsgPSGetShoppingCartContents = 5009, + k_EMsgPSGetShoppingCartContentsResponse = 5010, + k_EMsgPSAddWalletCreditToShoppingCart = 5011, + k_EMsgPSAddWalletCreditToShoppingCartResponse = 5012, + k_EMsgBaseUFSRange = 5200, + k_EMsgClientUFSUploadFileRequest = 5202, + k_EMsgClientUFSUploadFileResponse = 5203, + k_EMsgClientUFSUploadFileChunk = 5204, + k_EMsgClientUFSUploadFileFinished = 5205, + k_EMsgClientUFSGetFileListForApp = 5206, + k_EMsgClientUFSGetFileListForAppResponse = 5207, + k_EMsgClientUFSDownloadRequest = 5210, + k_EMsgClientUFSDownloadResponse = 5211, + k_EMsgClientUFSDownloadChunk = 5212, + k_EMsgClientUFSLoginRequest = 5213, + k_EMsgClientUFSLoginResponse = 5214, + k_EMsgUFSReloadPartitionInfo = 5215, + k_EMsgClientUFSTransferHeartbeat = 5216, + k_EMsgUFSSynchronizeFile = 5217, + k_EMsgUFSSynchronizeFileResponse = 5218, + k_EMsgClientUFSDeleteFileRequest = 5219, + k_EMsgClientUFSDeleteFileResponse = 5220, + k_EMsgClientUFSGetUGCDetails = 5226, + k_EMsgClientUFSGetUGCDetailsResponse = 5227, + k_EMsgUFSUpdateFileFlags = 5228, + k_EMsgUFSUpdateFileFlagsResponse = 5229, + k_EMsgClientUFSGetSingleFileInfo = 5230, + k_EMsgClientUFSGetSingleFileInfoResponse = 5231, + k_EMsgClientUFSShareFile = 5232, + k_EMsgClientUFSShareFileResponse = 5233, + k_EMsgUFSReloadAccount = 5234, + k_EMsgUFSReloadAccountResponse = 5235, + k_EMsgUFSUpdateRecordBatched = 5236, + k_EMsgUFSUpdateRecordBatchedResponse = 5237, + k_EMsgUFSMigrateFile = 5238, + k_EMsgUFSMigrateFileResponse = 5239, + k_EMsgUFSGetUGCURLs = 5240, + k_EMsgUFSGetUGCURLsResponse = 5241, + k_EMsgUFSHttpUploadFileFinishRequest = 5242, + k_EMsgUFSHttpUploadFileFinishResponse = 5243, + k_EMsgUFSDownloadStartRequest = 5244, + k_EMsgUFSDownloadStartResponse = 5245, + k_EMsgUFSDownloadChunkRequest = 5246, + k_EMsgUFSDownloadChunkResponse = 5247, + k_EMsgUFSDownloadFinishRequest = 5248, + k_EMsgUFSDownloadFinishResponse = 5249, + k_EMsgUFSFlushURLCache = 5250, + k_EMsgClientUFSUploadCommit = 5251, + k_EMsgClientUFSUploadCommitResponse = 5252, + k_EMsgUFSMigrateFileAppID = 5253, + k_EMsgUFSMigrateFileAppIDResponse = 5254, + k_EMsgBaseClient2 = 5400, + k_EMsgClientRequestForgottenPasswordEmail = 5401, + k_EMsgClientRequestForgottenPasswordEmailResponse = 5402, + k_EMsgClientCreateAccountResponse = 5403, + k_EMsgClientResetForgottenPassword = 5404, + k_EMsgClientResetForgottenPasswordResponse = 5405, + k_EMsgClientInformOfResetForgottenPassword = 5407, + k_EMsgClientInformOfResetForgottenPasswordResponse = 5408, + k_EMsgClientAnonUserLogOn_Deprecated = 5409, + k_EMsgClientGamesPlayedWithDataBlob = 5410, + k_EMsgClientUpdateUserGameInfo = 5411, + k_EMsgClientFileToDownload = 5412, + k_EMsgClientFileToDownloadResponse = 5413, + k_EMsgClientLBSSetScore = 5414, + k_EMsgClientLBSSetScoreResponse = 5415, + k_EMsgClientLBSFindOrCreateLB = 5416, + k_EMsgClientLBSFindOrCreateLBResponse = 5417, + k_EMsgClientLBSGetLBEntries = 5418, + k_EMsgClientLBSGetLBEntriesResponse = 5419, + k_EMsgClientChatDeclined = 5426, + k_EMsgClientFriendMsgIncoming = 5427, + k_EMsgClientAuthList_Deprecated = 5428, + k_EMsgClientTicketAuthComplete = 5429, + k_EMsgClientIsLimitedAccount = 5430, + k_EMsgClientRequestAuthList = 5431, + k_EMsgClientAuthList = 5432, + k_EMsgClientStat = 5433, + k_EMsgClientP2PConnectionInfo = 5434, + k_EMsgClientP2PConnectionFailInfo = 5435, + k_EMsgClientGetDepotDecryptionKey = 5438, + k_EMsgClientGetDepotDecryptionKeyResponse = 5439, + k_EMsgClientEnableTestLicense = 5443, + k_EMsgClientEnableTestLicenseResponse = 5444, + k_EMsgClientDisableTestLicense = 5445, + k_EMsgClientDisableTestLicenseResponse = 5446, + k_EMsgClientRequestValidationMail = 5448, + k_EMsgClientRequestValidationMailResponse = 5449, + k_EMsgClientCheckAppBetaPassword = 5450, + k_EMsgClientCheckAppBetaPasswordResponse = 5451, + k_EMsgClientToGC = 5452, + k_EMsgClientFromGC = 5453, + k_EMsgClientEmailAddrInfo = 5456, + k_EMsgClientPasswordChange3 = 5457, + k_EMsgClientEmailChange3 = 5458, + k_EMsgClientPersonalQAChange3 = 5459, + k_EMsgClientResetForgottenPassword3 = 5460, + k_EMsgClientRequestForgottenPasswordEmail3 = 5461, + k_EMsgClientNewLoginKey = 5463, + k_EMsgClientNewLoginKeyAccepted = 5464, + k_EMsgClientLogOnWithHash_Deprecated = 5465, + k_EMsgClientStoreUserStats2 = 5466, + k_EMsgClientStatsUpdated = 5467, + k_EMsgClientActivateOEMLicense = 5468, + k_EMsgClientRegisterOEMMachine = 5469, + k_EMsgClientRegisterOEMMachineResponse = 5470, + k_EMsgClientRequestedClientStats = 5480, + k_EMsgClientStat2Int32 = 5481, + k_EMsgClientStat2 = 5482, + k_EMsgClientVerifyPassword = 5483, + k_EMsgClientVerifyPasswordResponse = 5484, + k_EMsgClientDRMDownloadRequest = 5485, + k_EMsgClientDRMDownloadResponse = 5486, + k_EMsgClientDRMFinalResult = 5487, + k_EMsgClientGetFriendsWhoPlayGame = 5488, + k_EMsgClientGetFriendsWhoPlayGameResponse = 5489, + k_EMsgClientOGSBeginSession = 5490, + k_EMsgClientOGSBeginSessionResponse = 5491, + k_EMsgClientOGSEndSession = 5492, + k_EMsgClientOGSEndSessionResponse = 5493, + k_EMsgClientOGSWriteRow = 5494, + k_EMsgClientGetPeerContentInfo = 5495, + k_EMsgClientGetPeerContentInfoResponse = 5496, + k_EMsgClientStartPeerContentServer = 5497, + k_EMsgClientStartPeerContentServerResponse = 5498, + k_EMsgClientServerUnavailable = 5500, + k_EMsgClientServersAvailable = 5501, + k_EMsgClientRegisterAuthTicketWithCM = 5502, + k_EMsgClientGCMsgFailed = 5503, + k_EMsgClientMicroTxnAuthRequest = 5504, + k_EMsgClientMicroTxnAuthorize = 5505, + k_EMsgClientMicroTxnAuthorizeResponse = 5506, + k_EMsgClientGetMicroTxnInfo = 5508, + k_EMsgClientGetMicroTxnInfoResponse = 5509, + k_EMsgClientDeregisterWithServer = 5511, + k_EMsgClientSubscribeToPersonaFeed = 5512, + k_EMsgClientLogon = 5514, + k_EMsgClientGetClientDetails = 5515, + k_EMsgClientGetClientDetailsResponse = 5516, + k_EMsgClientReportOverlayDetourFailure = 5517, + k_EMsgClientGetClientAppList = 5518, + k_EMsgClientGetClientAppListResponse = 5519, + k_EMsgClientInstallClientApp = 5520, + k_EMsgClientInstallClientAppResponse = 5521, + k_EMsgClientUninstallClientApp = 5522, + k_EMsgClientUninstallClientAppResponse = 5523, + k_EMsgClientSetClientAppUpdateState = 5524, + k_EMsgClientSetClientAppUpdateStateResponse = 5525, + k_EMsgClientRequestEncryptedAppTicket = 5526, + k_EMsgClientRequestEncryptedAppTicketResponse = 5527, + k_EMsgClientWalletInfoUpdate = 5528, + k_EMsgClientLBSSetUGC = 5529, + k_EMsgClientLBSSetUGCResponse = 5530, + k_EMsgClientAMGetClanOfficers = 5531, + k_EMsgClientAMGetClanOfficersResponse = 5532, + k_EMsgClientFriendProfileInfo = 5535, + k_EMsgClientFriendProfileInfoResponse = 5536, + k_EMsgClientUpdateMachineAuth = 5537, + k_EMsgClientUpdateMachineAuthResponse = 5538, + k_EMsgClientReadMachineAuth = 5539, + k_EMsgClientReadMachineAuthResponse = 5540, + k_EMsgClientRequestMachineAuth = 5541, + k_EMsgClientRequestMachineAuthResponse = 5542, + k_EMsgClientScreenshotsChanged = 5543, + k_EMsgClientGetCDNAuthToken = 5546, + k_EMsgClientGetCDNAuthTokenResponse = 5547, + k_EMsgClientDownloadRateStatistics = 5548, + k_EMsgClientRequestAccountData = 5549, + k_EMsgClientRequestAccountDataResponse = 5550, + k_EMsgClientResetForgottenPassword4 = 5551, + k_EMsgClientHideFriend = 5552, + k_EMsgClientFriendsGroupsList = 5553, + k_EMsgClientGetClanActivityCounts = 5554, + k_EMsgClientGetClanActivityCountsResponse = 5555, + k_EMsgClientOGSReportString = 5556, + k_EMsgClientOGSReportBug = 5557, + k_EMsgClientSentLogs = 5558, + k_EMsgClientLogonGameServer = 5559, + k_EMsgAMClientCreateFriendsGroup = 5560, + k_EMsgAMClientCreateFriendsGroupResponse = 5561, + k_EMsgAMClientDeleteFriendsGroup = 5562, + k_EMsgAMClientDeleteFriendsGroupResponse = 5563, + k_EMsgAMClientManageFriendsGroup = 5564, + k_EMsgAMClientManageFriendsGroupResponse = 5565, + k_EMsgAMClientAddFriendToGroup = 5566, + k_EMsgAMClientAddFriendToGroupResponse = 5567, + k_EMsgAMClientRemoveFriendFromGroup = 5568, + k_EMsgAMClientRemoveFriendFromGroupResponse = 5569, + k_EMsgClientAMGetPersonaNameHistory = 5570, + k_EMsgClientAMGetPersonaNameHistoryResponse = 5571, + k_EMsgClientRequestFreeLicense = 5572, + k_EMsgClientRequestFreeLicenseResponse = 5573, + k_EMsgClientDRMDownloadRequestWithCrashData = 5574, + k_EMsgClientAuthListAck = 5575, + k_EMsgClientItemAnnouncements = 5576, + k_EMsgClientRequestItemAnnouncements = 5577, + k_EMsgClientFriendMsgEchoToSender = 5578, + k_EMsgClientCommentNotifications = 5582, + k_EMsgClientRequestCommentNotifications = 5583, + k_EMsgClientPersonaChangeResponse = 5584, + k_EMsgClientRequestWebAPIAuthenticateUserNonce = 5585, + k_EMsgClientRequestWebAPIAuthenticateUserNonceResponse = 5586, + k_EMsgClientPlayerNicknameList = 5587, + k_EMsgAMClientSetPlayerNickname = 5588, + k_EMsgAMClientSetPlayerNicknameResponse = 5589, + k_EMsgClientGetNumberOfCurrentPlayersDP = 5592, + k_EMsgClientGetNumberOfCurrentPlayersDPResponse = 5593, + k_EMsgClientServiceMethodLegacy = 5594, + k_EMsgClientServiceMethodLegacyResponse = 5595, + k_EMsgClientFriendUserStatusPublished = 5596, + k_EMsgClientCurrentUIMode = 5597, + k_EMsgClientVanityURLChangedNotification = 5598, + k_EMsgClientUserNotifications = 5599, + k_EMsgBaseDFS = 5600, + k_EMsgDFSGetFile = 5601, + k_EMsgDFSInstallLocalFile = 5602, + k_EMsgDFSConnection = 5603, + k_EMsgDFSConnectionReply = 5604, + k_EMsgClientDFSAuthenticateRequest = 5605, + k_EMsgClientDFSAuthenticateResponse = 5606, + k_EMsgClientDFSEndSession = 5607, + k_EMsgDFSPurgeFile = 5608, + k_EMsgDFSRouteFile = 5609, + k_EMsgDFSGetFileFromServer = 5610, + k_EMsgDFSAcceptedResponse = 5611, + k_EMsgDFSRequestPingback = 5612, + k_EMsgDFSRecvTransmitFile = 5613, + k_EMsgDFSSendTransmitFile = 5614, + k_EMsgDFSRequestPingback2 = 5615, + k_EMsgDFSResponsePingback2 = 5616, + k_EMsgClientDFSDownloadStatus = 5617, + k_EMsgDFSStartTransfer = 5618, + k_EMsgDFSTransferComplete = 5619, + k_EMsgDFSRouteFileResponse = 5620, + k_EMsgClientNetworkingCertRequest = 5621, + k_EMsgClientNetworkingCertRequestResponse = 5622, + k_EMsgClientChallengeRequest = 5623, + k_EMsgClientChallengeResponse = 5624, + k_EMsgBadgeCraftedNotification = 5625, + k_EMsgClientNetworkingMobileCertRequest = 5626, + k_EMsgClientNetworkingMobileCertRequestResponse = 5627, + k_EMsgBaseMDS = 5800, + k_EMsgMDSGetDepotDecryptionKey = 5812, + k_EMsgMDSGetDepotDecryptionKeyResponse = 5813, + k_EMsgMDSContentServerConfigRequest = 5827, + k_EMsgMDSContentServerConfig = 5828, + k_EMsgMDSGetDepotManifest = 5829, + k_EMsgMDSGetDepotManifestResponse = 5830, + k_EMsgMDSGetDepotManifestChunk = 5831, + k_EMsgMDSGetDepotChunk = 5832, + k_EMsgMDSGetDepotChunkResponse = 5833, + k_EMsgMDSGetDepotChunkChunk = 5834, + k_EMsgMDSToCSFlushChunk = 5844, + k_EMsgMDSMigrateChunk = 5847, + k_EMsgMDSMigrateChunkResponse = 5848, + k_EMsgMDSToCSFlushManifest = 5849, + k_EMsgCSBase = 6200, + k_EMsgCSPing = 6201, + k_EMsgCSPingResponse = 6202, + k_EMsgGMSBase = 6400, + k_EMsgGMSGameServerReplicate = 6401, + k_EMsgClientGMSServerQuery = 6403, + k_EMsgGMSClientServerQueryResponse = 6404, + k_EMsgAMGMSGameServerUpdate = 6405, + k_EMsgAMGMSGameServerRemove = 6406, + k_EMsgGameServerOutOfDate = 6407, + k_EMsgDeviceAuthorizationBase = 6500, + k_EMsgClientAuthorizeLocalDeviceRequest = 6501, + k_EMsgClientAuthorizeLocalDeviceResponse = 6502, + k_EMsgClientDeauthorizeDeviceRequest = 6503, + k_EMsgClientDeauthorizeDevice = 6504, + k_EMsgClientUseLocalDeviceAuthorizations = 6505, + k_EMsgClientGetAuthorizedDevices = 6506, + k_EMsgClientGetAuthorizedDevicesResponse = 6507, + k_EMsgAMNotifySessionDeviceAuthorized = 6508, + k_EMsgClientAuthorizeLocalDeviceNotification = 6509, + k_EMsgMMSBase = 6600, + k_EMsgClientMMSCreateLobby = 6601, + k_EMsgClientMMSCreateLobbyResponse = 6602, + k_EMsgClientMMSJoinLobby = 6603, + k_EMsgClientMMSJoinLobbyResponse = 6604, + k_EMsgClientMMSLeaveLobby = 6605, + k_EMsgClientMMSLeaveLobbyResponse = 6606, + k_EMsgClientMMSGetLobbyList = 6607, + k_EMsgClientMMSGetLobbyListResponse = 6608, + k_EMsgClientMMSSetLobbyData = 6609, + k_EMsgClientMMSSetLobbyDataResponse = 6610, + k_EMsgClientMMSGetLobbyData = 6611, + k_EMsgClientMMSLobbyData = 6612, + k_EMsgClientMMSSendLobbyChatMsg = 6613, + k_EMsgClientMMSLobbyChatMsg = 6614, + k_EMsgClientMMSSetLobbyOwner = 6615, + k_EMsgClientMMSSetLobbyOwnerResponse = 6616, + k_EMsgClientMMSSetLobbyGameServer = 6617, + k_EMsgClientMMSLobbyGameServerSet = 6618, + k_EMsgClientMMSUserJoinedLobby = 6619, + k_EMsgClientMMSUserLeftLobby = 6620, + k_EMsgClientMMSInviteToLobby = 6621, + k_EMsgClientMMSFlushFrenemyListCache = 6622, + k_EMsgClientMMSFlushFrenemyListCacheResponse = 6623, + k_EMsgClientMMSSetLobbyLinked = 6624, + k_EMsgClientMMSSetRatelimitPolicyOnClient = 6625, + k_EMsgClientMMSGetLobbyStatus = 6626, + k_EMsgClientMMSGetLobbyStatusResponse = 6627, + k_EMsgMMSGetLobbyList = 6628, + k_EMsgMMSGetLobbyListResponse = 6629, + k_EMsgNonStdMsgBase = 6800, + k_EMsgNonStdMsgMemcached = 6801, + k_EMsgNonStdMsgHTTPServer = 6802, + k_EMsgNonStdMsgHTTPClient = 6803, + k_EMsgNonStdMsgWGResponse = 6804, + k_EMsgNonStdMsgPHPSimulator = 6805, + k_EMsgNonStdMsgChase = 6806, + k_EMsgNonStdMsgDFSTransfer = 6807, + k_EMsgNonStdMsgTests = 6808, + k_EMsgNonStdMsgUMQpipeAAPL = 6809, + k_EMSgNonStdMsgSyslog = 6810, + k_EMsgNonStdMsgLogsink = 6811, + k_EMsgNonStdMsgSteam2Emulator = 6812, + k_EMsgNonStdMsgRTMPServer = 6813, + k_EMsgNonStdMsgWebSocket = 6814, + k_EMsgNonStdMsgRedis = 6815, + k_EMsgUDSBase = 7000, + k_EMsgClientUDSP2PSessionStarted = 7001, + k_EMsgClientUDSP2PSessionEnded = 7002, + k_EMsgUDSRenderUserAuth = 7003, + k_EMsgUDSRenderUserAuthResponse = 7004, + k_EMsgClientInviteToGame = 7005, + k_EMsgUDSHasSession = 7006, + k_EMsgUDSHasSessionResponse = 7007, + k_EMsgMPASBase = 7100, + k_EMsgMPASVacBanReset = 7101, + k_EMsgKGSBase = 7200, + k_EMsgUCMBase = 7300, + k_EMsgClientUCMAddScreenshot = 7301, + k_EMsgClientUCMAddScreenshotResponse = 7302, + k_EMsgUCMResetCommunityContent = 7307, + k_EMsgUCMResetCommunityContentResponse = 7308, + k_EMsgClientUCMDeleteScreenshot = 7309, + k_EMsgClientUCMDeleteScreenshotResponse = 7310, + k_EMsgClientUCMPublishFile = 7311, + k_EMsgClientUCMPublishFileResponse = 7312, + k_EMsgClientUCMDeletePublishedFile = 7315, + k_EMsgClientUCMDeletePublishedFileResponse = 7316, + k_EMsgClientUCMUpdatePublishedFile = 7325, + k_EMsgClientUCMUpdatePublishedFileResponse = 7326, + k_EMsgUCMUpdatePublishedFile = 7327, + k_EMsgUCMUpdatePublishedFileResponse = 7328, + k_EMsgUCMUpdatePublishedFileStat = 7331, + k_EMsgUCMReloadPublishedFile = 7337, + k_EMsgUCMReloadUserFileListCaches = 7338, + k_EMsgUCMPublishedFileReported = 7339, + k_EMsgUCMPublishedFilePreviewAdd = 7341, + k_EMsgUCMPublishedFilePreviewAddResponse = 7342, + k_EMsgUCMPublishedFilePreviewRemove = 7343, + k_EMsgUCMPublishedFilePreviewRemoveResponse = 7344, + k_EMsgUCMPublishedFileSubscribed = 7349, + k_EMsgUCMPublishedFileUnsubscribed = 7350, + k_EMsgUCMPublishFile = 7351, + k_EMsgUCMPublishFileResponse = 7352, + k_EMsgUCMPublishedFileChildAdd = 7353, + k_EMsgUCMPublishedFileChildAddResponse = 7354, + k_EMsgUCMPublishedFileChildRemove = 7355, + k_EMsgUCMPublishedFileChildRemoveResponse = 7356, + k_EMsgUCMPublishedFileParentChanged = 7359, + k_EMsgClientUCMSetUserPublishedFileAction = 7364, + k_EMsgClientUCMSetUserPublishedFileActionResponse = 7365, + k_EMsgClientUCMEnumeratePublishedFilesByUserAction = 7366, + k_EMsgClientUCMEnumeratePublishedFilesByUserActionResponse = 7367, + k_EMsgUCMGetUserSubscribedFiles = 7369, + k_EMsgUCMGetUserSubscribedFilesResponse = 7370, + k_EMsgUCMFixStatsPublishedFile = 7371, + k_EMsgClientUCMEnumerateUserSubscribedFilesWithUpdates = 7378, + k_EMsgClientUCMEnumerateUserSubscribedFilesWithUpdatesResponse = 7379, + k_EMsgUCMPublishedFileContentUpdated = 7380, + k_EMsgClientUCMPublishedFileUpdated = 7381, + k_EMsgFSBase = 7500, + k_EMsgClientRichPresenceUpload = 7501, + k_EMsgClientRichPresenceRequest = 7502, + k_EMsgClientRichPresenceInfo = 7503, + k_EMsgFSRichPresenceRequest = 7504, + k_EMsgFSRichPresenceResponse = 7505, + k_EMsgFSComputeFrenematrix = 7506, + k_EMsgFSComputeFrenematrixResponse = 7507, + k_EMsgFSPlayStatusNotification = 7508, + k_EMsgFSAddOrRemoveFollower = 7510, + k_EMsgFSAddOrRemoveFollowerResponse = 7511, + k_EMsgFSUpdateFollowingList = 7512, + k_EMsgFSCommentNotification = 7513, + k_EMsgFSCommentNotificationViewed = 7514, + k_EMsgClientFSGetFollowerCount = 7515, + k_EMsgClientFSGetFollowerCountResponse = 7516, + k_EMsgClientFSGetIsFollowing = 7517, + k_EMsgClientFSGetIsFollowingResponse = 7518, + k_EMsgClientFSEnumerateFollowingList = 7519, + k_EMsgClientFSEnumerateFollowingListResponse = 7520, + k_EMsgFSGetPendingNotificationCount = 7521, + k_EMsgFSGetPendingNotificationCountResponse = 7522, + k_EMsgClientChatOfflineMessageNotification = 7523, + k_EMsgClientChatRequestOfflineMessageCount = 7524, + k_EMsgClientChatGetFriendMessageHistory = 7525, + k_EMsgClientChatGetFriendMessageHistoryResponse = 7526, + k_EMsgClientChatGetFriendMessageHistoryForOfflineMessages = 7527, + k_EMsgClientFSGetFriendsSteamLevels = 7528, + k_EMsgClientFSGetFriendsSteamLevelsResponse = 7529, + k_EMsgAMRequestFriendData = 7530, + k_EMsgDRMRange2 = 7600, + k_EMsgCEGVersionSetEnableDisableRequest = 7600, + k_EMsgCEGVersionSetEnableDisableResponse = 7601, + k_EMsgCEGPropStatusDRMSRequest = 7602, + k_EMsgCEGPropStatusDRMSResponse = 7603, + k_EMsgCEGWhackFailureReportRequest = 7604, + k_EMsgCEGWhackFailureReportResponse = 7605, + k_EMsgDRMSFetchVersionSet = 7606, + k_EMsgDRMSFetchVersionSetResponse = 7607, + k_EMsgEconBase = 7700, + k_EMsgEconTrading_InitiateTradeRequest = 7701, + k_EMsgEconTrading_InitiateTradeProposed = 7702, + k_EMsgEconTrading_InitiateTradeResponse = 7703, + k_EMsgEconTrading_InitiateTradeResult = 7704, + k_EMsgEconTrading_StartSession = 7705, + k_EMsgEconTrading_CancelTradeRequest = 7706, + k_EMsgEconFlushInventoryCache = 7707, + k_EMsgEconFlushInventoryCacheResponse = 7708, + k_EMsgEconCDKeyProcessTransaction = 7711, + k_EMsgEconCDKeyProcessTransactionResponse = 7712, + k_EMsgEconGetErrorLogs = 7713, + k_EMsgEconGetErrorLogsResponse = 7714, + k_EMsgRMRange = 7800, + k_EMsgRMTestVerisignOTP = 7800, + k_EMsgRMTestVerisignOTPResponse = 7801, + k_EMsgRMDeleteMemcachedKeys = 7803, + k_EMsgRMRemoteInvoke = 7804, + k_EMsgBadLoginIPList = 7805, + k_EMsgRMMsgTraceAddTrigger = 7806, + k_EMsgRMMsgTraceRemoveTrigger = 7807, + k_EMsgRMMsgTraceEvent = 7808, + k_EMsgUGSBase = 7900, + k_EMsgUGSUpdateGlobalStats = 7900, + k_EMsgClientUGSGetGlobalStats = 7901, + k_EMsgClientUGSGetGlobalStatsResponse = 7902, + k_EMsgStoreBase = 8000, + k_EMsgUMQBase = 8100, + k_EMsgUMQLogonRequest = 8100, + k_EMsgUMQLogonResponse = 8101, + k_EMsgUMQLogoffRequest = 8102, + k_EMsgUMQLogoffResponse = 8103, + k_EMsgUMQSendChatMessage = 8104, + k_EMsgUMQIncomingChatMessage = 8105, + k_EMsgUMQPoll = 8106, + k_EMsgUMQPollResults = 8107, + k_EMsgUMQ2AM_ClientMsgBatch = 8108, + k_EMsgWorkshopBase = 8200, + k_EMsgWebAPIBase = 8300, + k_EMsgWebAPIValidateOAuth2Token = 8300, + k_EMsgWebAPIValidateOAuth2TokenResponse = 8301, + k_EMsgWebAPIRegisterGCInterfaces = 8303, + k_EMsgWebAPIInvalidateOAuthClientCache = 8304, + k_EMsgWebAPIInvalidateOAuthTokenCache = 8305, + k_EMsgWebAPISetSecrets = 8306, + k_EMsgBackpackBase = 8400, + k_EMsgBackpackAddToCurrency = 8401, + k_EMsgBackpackAddToCurrencyResponse = 8402, + k_EMsgCREBase = 8500, + k_EMsgCREItemVoteSummary = 8503, + k_EMsgCREItemVoteSummaryResponse = 8504, + k_EMsgCREUpdateUserPublishedItemVote = 8507, + k_EMsgCREUpdateUserPublishedItemVoteResponse = 8508, + k_EMsgCREGetUserPublishedItemVoteDetails = 8509, + k_EMsgCREGetUserPublishedItemVoteDetailsResponse = 8510, + k_EMsgSecretsBase = 8600, + k_EMsgSecretsRequestCredentialPair = 8600, + k_EMsgSecretsCredentialPairResponse = 8601, + k_EMsgBoxMonitorBase = 8700, + k_EMsgBoxMonitorReportRequest = 8700, + k_EMsgBoxMonitorReportResponse = 8701, + k_EMsgLogsinkBase = 8800, + k_EMsgLogsinkWriteReport = 8800, + k_EMsgPICSBase = 8900, + k_EMsgClientPICSChangesSinceRequest = 8901, + k_EMsgClientPICSChangesSinceResponse = 8902, + k_EMsgClientPICSProductInfoRequest = 8903, + k_EMsgClientPICSProductInfoResponse = 8904, + k_EMsgClientPICSAccessTokenRequest = 8905, + k_EMsgClientPICSAccessTokenResponse = 8906, + k_EMsgWorkerProcess = 9000, + k_EMsgWorkerProcessPingRequest = 9000, + k_EMsgWorkerProcessPingResponse = 9001, + k_EMsgWorkerProcessShutdown = 9002, + k_EMsgDRMWorkerProcess = 9100, + k_EMsgDRMWorkerProcessDRMAndSign = 9100, + k_EMsgDRMWorkerProcessDRMAndSignResponse = 9101, + k_EMsgDRMWorkerProcessSteamworksInfoRequest = 9102, + k_EMsgDRMWorkerProcessSteamworksInfoResponse = 9103, + k_EMsgDRMWorkerProcessInstallDRMDLLRequest = 9104, + k_EMsgDRMWorkerProcessInstallDRMDLLResponse = 9105, + k_EMsgDRMWorkerProcessSecretIdStringRequest = 9106, + k_EMsgDRMWorkerProcessSecretIdStringResponse = 9107, + k_EMsgDRMWorkerProcessInstallProcessedFilesRequest = 9110, + k_EMsgDRMWorkerProcessInstallProcessedFilesResponse = 9111, + k_EMsgDRMWorkerProcessExamineBlobRequest = 9112, + k_EMsgDRMWorkerProcessExamineBlobResponse = 9113, + k_EMsgDRMWorkerProcessDescribeSecretRequest = 9114, + k_EMsgDRMWorkerProcessDescribeSecretResponse = 9115, + k_EMsgDRMWorkerProcessBackfillOriginalRequest = 9116, + k_EMsgDRMWorkerProcessBackfillOriginalResponse = 9117, + k_EMsgDRMWorkerProcessValidateDRMDLLRequest = 9118, + k_EMsgDRMWorkerProcessValidateDRMDLLResponse = 9119, + k_EMsgDRMWorkerProcessValidateFileRequest = 9120, + k_EMsgDRMWorkerProcessValidateFileResponse = 9121, + k_EMsgDRMWorkerProcessSplitAndInstallRequest = 9122, + k_EMsgDRMWorkerProcessSplitAndInstallResponse = 9123, + k_EMsgDRMWorkerProcessGetBlobRequest = 9124, + k_EMsgDRMWorkerProcessGetBlobResponse = 9125, + k_EMsgDRMWorkerProcessEvaluateCrashRequest = 9126, + k_EMsgDRMWorkerProcessEvaluateCrashResponse = 9127, + k_EMsgDRMWorkerProcessAnalyzeFileRequest = 9128, + k_EMsgDRMWorkerProcessAnalyzeFileResponse = 9129, + k_EMsgDRMWorkerProcessUnpackBlobRequest = 9130, + k_EMsgDRMWorkerProcessUnpackBlobResponse = 9131, + k_EMsgDRMWorkerProcessInstallAllRequest = 9132, + k_EMsgDRMWorkerProcessInstallAllResponse = 9133, + k_EMsgTestWorkerProcess = 9200, + k_EMsgTestWorkerProcessLoadUnloadModuleRequest = 9200, + k_EMsgTestWorkerProcessLoadUnloadModuleResponse = 9201, + k_EMsgTestWorkerProcessServiceModuleCallRequest = 9202, + k_EMsgTestWorkerProcessServiceModuleCallResponse = 9203, + k_EMsgQuestServerBase = 9300, + k_EMsgClientGetEmoticonList = 9330, + k_EMsgClientEmoticonList = 9331, + k_EMsgSLCBase = 9400, + k_EMsgSLCUserSessionStatus = 9400, + k_EMsgSLCRequestUserSessionStatus = 9401, + k_EMsgSLCSharedLicensesLockStatus = 9402, + k_EMsgClientSharedLibraryLockStatus = 9405, + k_EMsgClientSharedLibraryStopPlaying = 9406, + k_EMsgSLCOwnerLibraryChanged = 9407, + k_EMsgSLCSharedLibraryChanged = 9408, + k_EMsgRemoteClientBase = 9500, + k_EMsgRemoteClientAuth_OBSOLETE = 9500, + k_EMsgRemoteClientAuthResponse_OBSOLETE = 9501, + k_EMsgRemoteClientAppStatus = 9502, + k_EMsgRemoteClientStartStream = 9503, + k_EMsgRemoteClientStartStreamResponse = 9504, + k_EMsgRemoteClientPing = 9505, + k_EMsgRemoteClientPingResponse = 9506, + k_EMsgClientUnlockH264 = 9507, + k_EMsgClientUnlockH264Response = 9508, + k_EMsgRemoteClientAcceptEULA = 9509, + k_EMsgRemoteClientGetControllerConfig = 9510, + k_EMsgRemoteClientGetControllerConfigResponse = 9511, + k_EMsgRemoteClientStreamingEnabled = 9512, + k_EMsgClientUnlockHEVC_OBSOLETE = 9513, + k_EMsgClientUnlockHEVCResponse_OBSOLETE = 9514, + k_EMsgRemoteClientStatusRequest = 9515, + k_EMsgRemoteClientStatusResponse = 9516, + k_EMsgClientConcurrentSessionsBase = 9600, + k_EMsgClientPlayingSessionState = 9600, + k_EMsgClientKickPlayingSession = 9601, + k_EMsgClientBroadcastBase = 9700, + k_EMsgClientBroadcastInit = 9700, + k_EMsgClientBroadcastFrames = 9701, + k_EMsgClientBroadcastDisconnect = 9702, + k_EMsgClientBroadcastUploadConfig = 9704, + k_EMsgBaseClient3 = 9800, + k_EMsgClientVoiceCallPreAuthorize = 9800, + k_EMsgClientVoiceCallPreAuthorizeResponse = 9801, + k_EMsgClientServerTimestampRequest = 9802, + k_EMsgClientServerTimestampResponse = 9803, + k_EMsgServiceMethodCallFromClientNonAuthed = 9804, + k_EMsgClientHello = 9805, + k_EMsgClientEnableOrDisableDownloads = 9806, + k_EMsgClientEnableOrDisableDownloadsResponse = 9807, + k_EMsgClientLANP2PBase = 9900, + k_EMsgClientLANP2PRequestChunk = 9900, + k_EMsgClientLANP2PRequestChunkResponse = 9901, + k_EMsgClientPeerChunkRequest = 9902, + k_EMsgClientPeerChunkResponse = 9903, + k_EMsgClientLANP2PMax = 9999, + k_EMsgBaseWatchdogServer = 10000, + k_EMsgNotifyWatchdog = 10000, + k_EMsgClientSiteLicenseBase = 10100, + k_EMsgClientSiteLicenseSiteInfoNotification = 10100, + k_EMsgClientSiteLicenseCheckout = 10101, + k_EMsgClientSiteLicenseCheckoutResponse = 10102, + k_EMsgClientSiteLicenseGetAvailableSeats = 10103, + k_EMsgClientSiteLicenseGetAvailableSeatsResponse = 10104, + k_EMsgClientSiteLicenseGetContentCacheInfo = 10105, + k_EMsgClientSiteLicenseGetContentCacheInfoResponse = 10106, + k_EMsgBaseChatServer = 12000, + k_EMsgChatServerGetPendingNotificationCount = 12000, + k_EMsgChatServerGetPendingNotificationCountResponse = 12001, + k_EMsgBaseSecretServer = 12100, + k_EMsgServerSecretChanged = 12100, + k_EMsgBaseWG = 12200, + k_EMsgWGConnectionProtocolError = 12200, + k_EMsgWGConnectionValidateUserToken = 12201, + k_EMsgWGConnectionValidateUserTokenResponse = 12202, + k_EMsgWGConnectionLegacyWGRequest = 12203, + k_EMsgWGConnectionLegacyWGResponse = 12204, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EMsgClanAccountFlags.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EMsgClanAccountFlags.cs index ff6b60596..12f33bf2b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EMsgClanAccountFlags.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EMsgClanAccountFlags.cs @@ -1,11 +1,10 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum EMsgClanAccountFlags { - k_EMsgClanAccountFlagPublic = 1, - k_EMsgClanAccountFlagLarge = 2, - k_EMsgClanAccountFlagLocked = 4, - k_EMsgClanAccountFlagDisabled = 8, - k_EMsgClanAccountFlagOGG = 16, -} + k_EMsgClanAccountFlagPublic = 1, + k_EMsgClanAccountFlagLarge = 2, + k_EMsgClanAccountFlagLocked = 4, + k_EMsgClanAccountFlagDisabled = 8, + k_EMsgClanAccountFlagOGG = 16, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ENetworkDisconnectionReason.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ENetworkDisconnectionReason.cs index ac37722ee..3f9194fff 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ENetworkDisconnectionReason.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ENetworkDisconnectionReason.cs @@ -1,127 +1,126 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum ENetworkDisconnectionReason { - NETWORK_DISCONNECT_INVALID = 0, - NETWORK_DISCONNECT_SHUTDOWN = 1, - NETWORK_DISCONNECT_DISCONNECT_BY_USER = 2, - NETWORK_DISCONNECT_DISCONNECT_BY_SERVER = 3, - NETWORK_DISCONNECT_LOST = 4, - NETWORK_DISCONNECT_OVERFLOW = 5, - NETWORK_DISCONNECT_STEAM_BANNED = 6, - NETWORK_DISCONNECT_STEAM_INUSE = 7, - NETWORK_DISCONNECT_STEAM_TICKET = 8, - NETWORK_DISCONNECT_STEAM_LOGON = 9, - NETWORK_DISCONNECT_STEAM_AUTHCANCELLED = 10, - NETWORK_DISCONNECT_STEAM_AUTHALREADYUSED = 11, - NETWORK_DISCONNECT_STEAM_AUTHINVALID = 12, - NETWORK_DISCONNECT_STEAM_VACBANSTATE = 13, - NETWORK_DISCONNECT_STEAM_LOGGED_IN_ELSEWHERE = 14, - NETWORK_DISCONNECT_STEAM_VAC_CHECK_TIMEDOUT = 15, - NETWORK_DISCONNECT_STEAM_DROPPED = 16, - NETWORK_DISCONNECT_STEAM_OWNERSHIP = 17, - NETWORK_DISCONNECT_SERVERINFO_OVERFLOW = 18, - NETWORK_DISCONNECT_TICKMSG_OVERFLOW = 19, - NETWORK_DISCONNECT_STRINGTABLEMSG_OVERFLOW = 20, - NETWORK_DISCONNECT_DELTAENTMSG_OVERFLOW = 21, - NETWORK_DISCONNECT_TEMPENTMSG_OVERFLOW = 22, - NETWORK_DISCONNECT_SOUNDSMSG_OVERFLOW = 23, - NETWORK_DISCONNECT_SNAPSHOTOVERFLOW = 24, - NETWORK_DISCONNECT_SNAPSHOTERROR = 25, - NETWORK_DISCONNECT_RELIABLEOVERFLOW = 26, - NETWORK_DISCONNECT_BADDELTATICK = 27, - NETWORK_DISCONNECT_NOMORESPLITS = 28, - NETWORK_DISCONNECT_TIMEDOUT = 29, - NETWORK_DISCONNECT_DISCONNECTED = 30, - NETWORK_DISCONNECT_LEAVINGSPLIT = 31, - NETWORK_DISCONNECT_DIFFERENTCLASSTABLES = 32, - NETWORK_DISCONNECT_BADRELAYPASSWORD = 33, - NETWORK_DISCONNECT_BADSPECTATORPASSWORD = 34, - NETWORK_DISCONNECT_HLTVRESTRICTED = 35, - NETWORK_DISCONNECT_NOSPECTATORS = 36, - NETWORK_DISCONNECT_HLTVUNAVAILABLE = 37, - NETWORK_DISCONNECT_HLTVSTOP = 38, - NETWORK_DISCONNECT_KICKED = 39, - NETWORK_DISCONNECT_BANADDED = 40, - NETWORK_DISCONNECT_KICKBANADDED = 41, - NETWORK_DISCONNECT_HLTVDIRECT = 42, - NETWORK_DISCONNECT_PURESERVER_CLIENTEXTRA = 43, - NETWORK_DISCONNECT_PURESERVER_MISMATCH = 44, - NETWORK_DISCONNECT_USERCMD = 45, - NETWORK_DISCONNECT_REJECTED_BY_GAME = 46, - NETWORK_DISCONNECT_MESSAGE_PARSE_ERROR = 47, - NETWORK_DISCONNECT_INVALID_MESSAGE_ERROR = 48, - NETWORK_DISCONNECT_BAD_SERVER_PASSWORD = 49, - NETWORK_DISCONNECT_DIRECT_CONNECT_RESERVATION = 50, - NETWORK_DISCONNECT_CONNECTION_FAILURE = 51, - NETWORK_DISCONNECT_NO_PEER_GROUP_HANDLERS = 52, - NETWORK_DISCONNECT_RECONNECTION = 53, - NETWORK_DISCONNECT_LOOPSHUTDOWN = 54, - NETWORK_DISCONNECT_LOOPDEACTIVATE = 55, - NETWORK_DISCONNECT_HOST_ENDGAME = 56, - NETWORK_DISCONNECT_LOOP_LEVELLOAD_ACTIVATE = 57, - NETWORK_DISCONNECT_CREATE_SERVER_FAILED = 58, - NETWORK_DISCONNECT_EXITING = 59, - NETWORK_DISCONNECT_REQUEST_HOSTSTATE_IDLE = 60, - NETWORK_DISCONNECT_REQUEST_HOSTSTATE_HLTVRELAY = 61, - NETWORK_DISCONNECT_CLIENT_CONSISTENCY_FAIL = 62, - NETWORK_DISCONNECT_CLIENT_UNABLE_TO_CRC_MAP = 63, - NETWORK_DISCONNECT_CLIENT_NO_MAP = 64, - NETWORK_DISCONNECT_CLIENT_DIFFERENT_MAP = 65, - NETWORK_DISCONNECT_SERVER_REQUIRES_STEAM = 66, - NETWORK_DISCONNECT_STEAM_DENY_MISC = 67, - NETWORK_DISCONNECT_STEAM_DENY_BAD_ANTI_CHEAT = 68, - NETWORK_DISCONNECT_SERVER_SHUTDOWN = 69, - NETWORK_DISCONNECT_REPLAY_INCOMPATIBLE = 71, - NETWORK_DISCONNECT_CONNECT_REQUEST_TIMEDOUT = 72, - NETWORK_DISCONNECT_SERVER_INCOMPATIBLE = 73, - NETWORK_DISCONNECT_LOCALPROBLEM_MANYRELAYS = 74, - NETWORK_DISCONNECT_LOCALPROBLEM_HOSTEDSERVERPRIMARYRELAY = 75, - NETWORK_DISCONNECT_LOCALPROBLEM_NETWORKCONFIG = 76, - NETWORK_DISCONNECT_LOCALPROBLEM_OTHER = 77, - NETWORK_DISCONNECT_REMOTE_TIMEOUT = 79, - NETWORK_DISCONNECT_REMOTE_TIMEOUT_CONNECTING = 80, - NETWORK_DISCONNECT_REMOTE_OTHER = 81, - NETWORK_DISCONNECT_REMOTE_BADCRYPT = 82, - NETWORK_DISCONNECT_REMOTE_CERTNOTTRUSTED = 83, - NETWORK_DISCONNECT_UNUSUAL = 84, - NETWORK_DISCONNECT_INTERNAL_ERROR = 85, - NETWORK_DISCONNECT_REJECT_BADCHALLENGE = 128, - NETWORK_DISCONNECT_REJECT_NOLOBBY = 129, - NETWORK_DISCONNECT_REJECT_BACKGROUND_MAP = 130, - NETWORK_DISCONNECT_REJECT_SINGLE_PLAYER = 131, - NETWORK_DISCONNECT_REJECT_HIDDEN_GAME = 132, - NETWORK_DISCONNECT_REJECT_LANRESTRICT = 133, - NETWORK_DISCONNECT_REJECT_BADPASSWORD = 134, - NETWORK_DISCONNECT_REJECT_SERVERFULL = 135, - NETWORK_DISCONNECT_REJECT_INVALIDRESERVATION = 136, - NETWORK_DISCONNECT_REJECT_FAILEDCHANNEL = 137, - NETWORK_DISCONNECT_REJECT_CONNECT_FROM_LOBBY = 138, - NETWORK_DISCONNECT_REJECT_RESERVED_FOR_LOBBY = 139, - NETWORK_DISCONNECT_REJECT_INVALIDKEYLENGTH = 140, - NETWORK_DISCONNECT_REJECT_OLDPROTOCOL = 141, - NETWORK_DISCONNECT_REJECT_NEWPROTOCOL = 142, - NETWORK_DISCONNECT_REJECT_INVALIDCONNECTION = 143, - NETWORK_DISCONNECT_REJECT_INVALIDCERTLEN = 144, - NETWORK_DISCONNECT_REJECT_INVALIDSTEAMCERTLEN = 145, - NETWORK_DISCONNECT_REJECT_STEAM = 146, - NETWORK_DISCONNECT_REJECT_SERVERAUTHDISABLED = 147, - NETWORK_DISCONNECT_REJECT_SERVERCDKEYAUTHINVALID = 148, - NETWORK_DISCONNECT_REJECT_BANNED = 149, - NETWORK_DISCONNECT_KICKED_TEAMKILLING = 150, - NETWORK_DISCONNECT_KICKED_TK_START = 151, - NETWORK_DISCONNECT_KICKED_UNTRUSTEDACCOUNT = 152, - NETWORK_DISCONNECT_KICKED_CONVICTEDACCOUNT = 153, - NETWORK_DISCONNECT_KICKED_COMPETITIVECOOLDOWN = 154, - NETWORK_DISCONNECT_KICKED_TEAMHURTING = 155, - NETWORK_DISCONNECT_KICKED_HOSTAGEKILLING = 156, - NETWORK_DISCONNECT_KICKED_VOTEDOFF = 157, - NETWORK_DISCONNECT_KICKED_IDLE = 158, - NETWORK_DISCONNECT_KICKED_SUICIDE = 159, - NETWORK_DISCONNECT_KICKED_NOSTEAMLOGIN = 160, - NETWORK_DISCONNECT_KICKED_NOSTEAMTICKET = 161, - NETWORK_DISCONNECT_KICKED_INPUTAUTOMATION = 162, - NETWORK_DISCONNECT_KICKED_VACNETABNORMALBEHAVIOR = 163, - NETWORK_DISCONNECT_KICKED_INSECURECLIENT = 164, -} + NETWORK_DISCONNECT_INVALID = 0, + NETWORK_DISCONNECT_SHUTDOWN = 1, + NETWORK_DISCONNECT_DISCONNECT_BY_USER = 2, + NETWORK_DISCONNECT_DISCONNECT_BY_SERVER = 3, + NETWORK_DISCONNECT_LOST = 4, + NETWORK_DISCONNECT_OVERFLOW = 5, + NETWORK_DISCONNECT_STEAM_BANNED = 6, + NETWORK_DISCONNECT_STEAM_INUSE = 7, + NETWORK_DISCONNECT_STEAM_TICKET = 8, + NETWORK_DISCONNECT_STEAM_LOGON = 9, + NETWORK_DISCONNECT_STEAM_AUTHCANCELLED = 10, + NETWORK_DISCONNECT_STEAM_AUTHALREADYUSED = 11, + NETWORK_DISCONNECT_STEAM_AUTHINVALID = 12, + NETWORK_DISCONNECT_STEAM_VACBANSTATE = 13, + NETWORK_DISCONNECT_STEAM_LOGGED_IN_ELSEWHERE = 14, + NETWORK_DISCONNECT_STEAM_VAC_CHECK_TIMEDOUT = 15, + NETWORK_DISCONNECT_STEAM_DROPPED = 16, + NETWORK_DISCONNECT_STEAM_OWNERSHIP = 17, + NETWORK_DISCONNECT_SERVERINFO_OVERFLOW = 18, + NETWORK_DISCONNECT_TICKMSG_OVERFLOW = 19, + NETWORK_DISCONNECT_STRINGTABLEMSG_OVERFLOW = 20, + NETWORK_DISCONNECT_DELTAENTMSG_OVERFLOW = 21, + NETWORK_DISCONNECT_TEMPENTMSG_OVERFLOW = 22, + NETWORK_DISCONNECT_SOUNDSMSG_OVERFLOW = 23, + NETWORK_DISCONNECT_SNAPSHOTOVERFLOW = 24, + NETWORK_DISCONNECT_SNAPSHOTERROR = 25, + NETWORK_DISCONNECT_RELIABLEOVERFLOW = 26, + NETWORK_DISCONNECT_BADDELTATICK = 27, + NETWORK_DISCONNECT_NOMORESPLITS = 28, + NETWORK_DISCONNECT_TIMEDOUT = 29, + NETWORK_DISCONNECT_DISCONNECTED = 30, + NETWORK_DISCONNECT_LEAVINGSPLIT = 31, + NETWORK_DISCONNECT_DIFFERENTCLASSTABLES = 32, + NETWORK_DISCONNECT_BADRELAYPASSWORD = 33, + NETWORK_DISCONNECT_BADSPECTATORPASSWORD = 34, + NETWORK_DISCONNECT_HLTVRESTRICTED = 35, + NETWORK_DISCONNECT_NOSPECTATORS = 36, + NETWORK_DISCONNECT_HLTVUNAVAILABLE = 37, + NETWORK_DISCONNECT_HLTVSTOP = 38, + NETWORK_DISCONNECT_KICKED = 39, + NETWORK_DISCONNECT_BANADDED = 40, + NETWORK_DISCONNECT_KICKBANADDED = 41, + NETWORK_DISCONNECT_HLTVDIRECT = 42, + NETWORK_DISCONNECT_PURESERVER_CLIENTEXTRA = 43, + NETWORK_DISCONNECT_PURESERVER_MISMATCH = 44, + NETWORK_DISCONNECT_USERCMD = 45, + NETWORK_DISCONNECT_REJECTED_BY_GAME = 46, + NETWORK_DISCONNECT_MESSAGE_PARSE_ERROR = 47, + NETWORK_DISCONNECT_INVALID_MESSAGE_ERROR = 48, + NETWORK_DISCONNECT_BAD_SERVER_PASSWORD = 49, + NETWORK_DISCONNECT_DIRECT_CONNECT_RESERVATION = 50, + NETWORK_DISCONNECT_CONNECTION_FAILURE = 51, + NETWORK_DISCONNECT_NO_PEER_GROUP_HANDLERS = 52, + NETWORK_DISCONNECT_RECONNECTION = 53, + NETWORK_DISCONNECT_LOOPSHUTDOWN = 54, + NETWORK_DISCONNECT_LOOPDEACTIVATE = 55, + NETWORK_DISCONNECT_HOST_ENDGAME = 56, + NETWORK_DISCONNECT_LOOP_LEVELLOAD_ACTIVATE = 57, + NETWORK_DISCONNECT_CREATE_SERVER_FAILED = 58, + NETWORK_DISCONNECT_EXITING = 59, + NETWORK_DISCONNECT_REQUEST_HOSTSTATE_IDLE = 60, + NETWORK_DISCONNECT_REQUEST_HOSTSTATE_HLTVRELAY = 61, + NETWORK_DISCONNECT_CLIENT_CONSISTENCY_FAIL = 62, + NETWORK_DISCONNECT_CLIENT_UNABLE_TO_CRC_MAP = 63, + NETWORK_DISCONNECT_CLIENT_NO_MAP = 64, + NETWORK_DISCONNECT_CLIENT_DIFFERENT_MAP = 65, + NETWORK_DISCONNECT_SERVER_REQUIRES_STEAM = 66, + NETWORK_DISCONNECT_STEAM_DENY_MISC = 67, + NETWORK_DISCONNECT_STEAM_DENY_BAD_ANTI_CHEAT = 68, + NETWORK_DISCONNECT_SERVER_SHUTDOWN = 69, + NETWORK_DISCONNECT_REPLAY_INCOMPATIBLE = 71, + NETWORK_DISCONNECT_CONNECT_REQUEST_TIMEDOUT = 72, + NETWORK_DISCONNECT_SERVER_INCOMPATIBLE = 73, + NETWORK_DISCONNECT_LOCALPROBLEM_MANYRELAYS = 74, + NETWORK_DISCONNECT_LOCALPROBLEM_HOSTEDSERVERPRIMARYRELAY = 75, + NETWORK_DISCONNECT_LOCALPROBLEM_NETWORKCONFIG = 76, + NETWORK_DISCONNECT_LOCALPROBLEM_OTHER = 77, + NETWORK_DISCONNECT_REMOTE_TIMEOUT = 79, + NETWORK_DISCONNECT_REMOTE_TIMEOUT_CONNECTING = 80, + NETWORK_DISCONNECT_REMOTE_OTHER = 81, + NETWORK_DISCONNECT_REMOTE_BADCRYPT = 82, + NETWORK_DISCONNECT_REMOTE_CERTNOTTRUSTED = 83, + NETWORK_DISCONNECT_UNUSUAL = 84, + NETWORK_DISCONNECT_INTERNAL_ERROR = 85, + NETWORK_DISCONNECT_REJECT_BADCHALLENGE = 128, + NETWORK_DISCONNECT_REJECT_NOLOBBY = 129, + NETWORK_DISCONNECT_REJECT_BACKGROUND_MAP = 130, + NETWORK_DISCONNECT_REJECT_SINGLE_PLAYER = 131, + NETWORK_DISCONNECT_REJECT_HIDDEN_GAME = 132, + NETWORK_DISCONNECT_REJECT_LANRESTRICT = 133, + NETWORK_DISCONNECT_REJECT_BADPASSWORD = 134, + NETWORK_DISCONNECT_REJECT_SERVERFULL = 135, + NETWORK_DISCONNECT_REJECT_INVALIDRESERVATION = 136, + NETWORK_DISCONNECT_REJECT_FAILEDCHANNEL = 137, + NETWORK_DISCONNECT_REJECT_CONNECT_FROM_LOBBY = 138, + NETWORK_DISCONNECT_REJECT_RESERVED_FOR_LOBBY = 139, + NETWORK_DISCONNECT_REJECT_INVALIDKEYLENGTH = 140, + NETWORK_DISCONNECT_REJECT_OLDPROTOCOL = 141, + NETWORK_DISCONNECT_REJECT_NEWPROTOCOL = 142, + NETWORK_DISCONNECT_REJECT_INVALIDCONNECTION = 143, + NETWORK_DISCONNECT_REJECT_INVALIDCERTLEN = 144, + NETWORK_DISCONNECT_REJECT_INVALIDSTEAMCERTLEN = 145, + NETWORK_DISCONNECT_REJECT_STEAM = 146, + NETWORK_DISCONNECT_REJECT_SERVERAUTHDISABLED = 147, + NETWORK_DISCONNECT_REJECT_SERVERCDKEYAUTHINVALID = 148, + NETWORK_DISCONNECT_REJECT_BANNED = 149, + NETWORK_DISCONNECT_KICKED_TEAMKILLING = 150, + NETWORK_DISCONNECT_KICKED_TK_START = 151, + NETWORK_DISCONNECT_KICKED_UNTRUSTEDACCOUNT = 152, + NETWORK_DISCONNECT_KICKED_CONVICTEDACCOUNT = 153, + NETWORK_DISCONNECT_KICKED_COMPETITIVECOOLDOWN = 154, + NETWORK_DISCONNECT_KICKED_TEAMHURTING = 155, + NETWORK_DISCONNECT_KICKED_HOSTAGEKILLING = 156, + NETWORK_DISCONNECT_KICKED_VOTEDOFF = 157, + NETWORK_DISCONNECT_KICKED_IDLE = 158, + NETWORK_DISCONNECT_KICKED_SUICIDE = 159, + NETWORK_DISCONNECT_KICKED_NOSTEAMLOGIN = 160, + NETWORK_DISCONNECT_KICKED_NOSTEAMTICKET = 161, + NETWORK_DISCONNECT_KICKED_INPUTAUTOMATION = 162, + NETWORK_DISCONNECT_KICKED_VACNETABNORMALBEHAVIOR = 163, + NETWORK_DISCONNECT_KICKED_INSECURECLIENT = 164, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EProtoDebugVisiblity.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EProtoDebugVisiblity.cs index 8aeef563b..f1caa5d12 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EProtoDebugVisiblity.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EProtoDebugVisiblity.cs @@ -1,11 +1,10 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum EProtoDebugVisiblity { - k_EProtoDebugVisibility_Always = 0, - k_EProtoDebugVisibility_Server = 70, - k_EProtoDebugVisibility_ValveServer = 80, - k_EProtoDebugVisibility_GC = 90, - k_EProtoDebugVisibility_Never = 100, -} + k_EProtoDebugVisibility_Always = 0, + k_EProtoDebugVisibility_Server = 70, + k_EProtoDebugVisibility_ValveServer = 80, + k_EProtoDebugVisibility_GC = 90, + k_EProtoDebugVisibility_Never = 100, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EQueryCvarValueStatus.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EQueryCvarValueStatus.cs index cf68a5eae..639b4a498 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EQueryCvarValueStatus.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EQueryCvarValueStatus.cs @@ -1,10 +1,9 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum EQueryCvarValueStatus { - eQueryCvarValueStatus_ValueIntact = 0, - eQueryCvarValueStatus_CvarNotFound = 1, - eQueryCvarValueStatus_NotACvar = 2, - eQueryCvarValueStatus_CvarProtected = 3, -} + eQueryCvarValueStatus_ValueIntact = 0, + eQueryCvarValueStatus_CvarNotFound = 1, + eQueryCvarValueStatus_NotACvar = 2, + eQueryCvarValueStatus_CvarProtected = 3, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ESOMsg.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ESOMsg.cs index cf28caadc..423b0cf9e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ESOMsg.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ESOMsg.cs @@ -1,14 +1,13 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum ESOMsg { - k_ESOMsg_Create = 21, - k_ESOMsg_Update = 22, - k_ESOMsg_Destroy = 23, - k_ESOMsg_CacheSubscribed = 24, - k_ESOMsg_CacheUnsubscribed = 25, - k_ESOMsg_UpdateMultiple = 26, - k_ESOMsg_CacheSubscriptionCheck = 27, - k_ESOMsg_CacheSubscriptionRefresh = 28, -} + k_ESOMsg_Create = 21, + k_ESOMsg_Update = 22, + k_ESOMsg_Destroy = 23, + k_ESOMsg_CacheSubscribed = 24, + k_ESOMsg_CacheUnsubscribed = 25, + k_ESOMsg_UpdateMultiple = 26, + k_ESOMsg_CacheSubscriptionCheck = 27, + k_ESOMsg_CacheSubscriptionRefresh = 28, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ESplitScreenMessageType.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ESplitScreenMessageType.cs index bf9ffd899..f56495b51 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ESplitScreenMessageType.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ESplitScreenMessageType.cs @@ -1,8 +1,7 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum ESplitScreenMessageType { - MSG_SPLITSCREEN_ADDUSER = 0, - MSG_SPLITSCREEN_REMOVEUSER = 1, -} + MSG_SPLITSCREEN_ADDUSER = 0, + MSG_SPLITSCREEN_REMOVEUSER = 1, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ESteamReviewScore.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ESteamReviewScore.cs index 9f5c357dd..d7f0135b3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ESteamReviewScore.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ESteamReviewScore.cs @@ -1,16 +1,15 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum ESteamReviewScore { - k_ESteamReviewScore_OverwhelminglyPositive = 9, - k_ESteamReviewScore_VeryPositive = 8, - k_ESteamReviewScore_Positive = 7, - k_ESteamReviewScore_MostlyPositive = 6, - k_ESteamReviewScore_Mixed = 5, - k_ESteamReviewScore_MostlyNegative = 4, - k_ESteamReviewScore_Negative = 3, - k_ESteamReviewScore_VeryNegative = 2, - k_ESteamReviewScore_OverwhelminglyNegative = 1, - k_ESteamReviewScore_None = 0, -} + k_ESteamReviewScore_OverwhelminglyPositive = 9, + k_ESteamReviewScore_VeryPositive = 8, + k_ESteamReviewScore_Positive = 7, + k_ESteamReviewScore_MostlyPositive = 6, + k_ESteamReviewScore_Mixed = 5, + k_ESteamReviewScore_MostlyNegative = 4, + k_ESteamReviewScore_Negative = 3, + k_ESteamReviewScore_VeryNegative = 2, + k_ESteamReviewScore_OverwhelminglyNegative = 1, + k_ESteamReviewScore_None = 0, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ETEProtobufIds.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ETEProtobufIds.cs index 13494fc03..76d7b0f59 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ETEProtobufIds.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ETEProtobufIds.cs @@ -1,29 +1,28 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum ETEProtobufIds { - TE_EffectDispatchId = 400, - TE_ArmorRicochetId = 401, - TE_BeamEntPointId = 402, - TE_BeamEntsId = 403, - TE_BeamPointsId = 404, - TE_BeamRingId = 405, - TE_BubblesId = 408, - TE_BubbleTrailId = 409, - TE_DecalId = 410, - TE_WorldDecalId = 411, - TE_EnergySplashId = 412, - TE_FizzId = 413, - TE_ShatterSurfaceId = 414, - TE_GlowSpriteId = 415, - TE_ImpactId = 416, - TE_MuzzleFlashId = 417, - TE_BloodStreamId = 418, - TE_ExplosionId = 419, - TE_DustId = 420, - TE_LargeFunnelId = 421, - TE_SparksId = 422, - TE_PhysicsPropId = 423, - TE_SmokeId = 426, -} + TE_EffectDispatchId = 400, + TE_ArmorRicochetId = 401, + TE_BeamEntPointId = 402, + TE_BeamEntsId = 403, + TE_BeamPointsId = 404, + TE_BeamRingId = 405, + TE_BubblesId = 408, + TE_BubbleTrailId = 409, + TE_DecalId = 410, + TE_WorldDecalId = 411, + TE_EnergySplashId = 412, + TE_FizzId = 413, + TE_ShatterSurfaceId = 414, + TE_GlowSpriteId = 415, + TE_ImpactId = 416, + TE_MuzzleFlashId = 417, + TE_BloodStreamId = 418, + TE_ExplosionId = 419, + TE_DustId = 420, + TE_LargeFunnelId = 421, + TE_SparksId = 422, + TE_PhysicsPropId = 423, + TE_SmokeId = 426, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ETeam.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ETeam.cs index fd6603c77..116601186 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ETeam.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ETeam.cs @@ -1,10 +1,9 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum ETeam { - ET_Unknown = 0, - ET_Spectator = 1, - ET_Terrorist = 2, - ET_CT = 3, -} + ET_Unknown = 0, + ET_Spectator = 1, + ET_Terrorist = 2, + ET_CT = 3, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EUnlockStyle.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EUnlockStyle.cs index 149c2f6bd..3a257d8e8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EUnlockStyle.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EUnlockStyle.cs @@ -1,12 +1,11 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum EUnlockStyle { - k_UnlockStyle_Succeeded = 0, - k_UnlockStyle_Failed_PreReq = 1, - k_UnlockStyle_Failed_CantAfford = 2, - k_UnlockStyle_Failed_CantCommit = 3, - k_UnlockStyle_Failed_CantLockCache = 4, - k_UnlockStyle_Failed_CantAffordAttrib = 5, -} + k_UnlockStyle_Succeeded = 0, + k_UnlockStyle_Failed_PreReq = 1, + k_UnlockStyle_Failed_CantAfford = 2, + k_UnlockStyle_Failed_CantCommit = 3, + k_UnlockStyle_Failed_CantLockCache = 4, + k_UnlockStyle_Failed_CantAffordAttrib = 5, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EWeaponType.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EWeaponType.cs index badfdad8f..348561c37 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EWeaponType.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/EWeaponType.cs @@ -1,18 +1,17 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum EWeaponType { - EWT_Knife = 0, - EWT_Pistol = 1, - EWT_SubMachineGun = 2, - EWT_Rifle = 3, - EWT_Shotgun = 4, - EWT_SniperRifle = 5, - EWT_MachineGun = 6, - EWT_C4 = 7, - EWT_Grenade = 8, - EWT_Equipment = 9, - EWT_StackableItem = 10, - EWT_Unknown = 11, -} + EWT_Knife = 0, + EWT_Pistol = 1, + EWT_SubMachineGun = 2, + EWT_Rifle = 3, + EWT_Shotgun = 4, + EWT_SniperRifle = 5, + EWT_MachineGun = 6, + EWT_C4 = 7, + EWT_Grenade = 8, + EWT_Equipment = 9, + EWT_StackableItem = 10, + EWT_Unknown = 11, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/GCClientLauncherType.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/GCClientLauncherType.cs index 99374187c..8a7cb7d09 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/GCClientLauncherType.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/GCClientLauncherType.cs @@ -1,10 +1,9 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum GCClientLauncherType { - GCClientLauncherType_DEFAULT = 0, - GCClientLauncherType_PERFECTWORLD = 1, - GCClientLauncherType_STEAMCHINA = 2, - GCClientLauncherType_SOURCE2 = 3, -} + GCClientLauncherType_DEFAULT = 0, + GCClientLauncherType_PERFECTWORLD = 1, + GCClientLauncherType_STEAMCHINA = 2, + GCClientLauncherType_SOURCE2 = 3, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/GCConnectionStatus.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/GCConnectionStatus.cs index 7cee1b913..dfc810499 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/GCConnectionStatus.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/GCConnectionStatus.cs @@ -1,11 +1,10 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum GCConnectionStatus { - GCConnectionStatus_HAVE_SESSION = 0, - GCConnectionStatus_GC_GOING_DOWN = 1, - GCConnectionStatus_NO_SESSION = 2, - GCConnectionStatus_NO_SESSION_IN_LOGON_QUEUE = 3, - GCConnectionStatus_NO_STEAM = 4, -} + GCConnectionStatus_HAVE_SESSION = 0, + GCConnectionStatus_GC_GOING_DOWN = 1, + GCConnectionStatus_NO_SESSION = 2, + GCConnectionStatus_NO_SESSION_IN_LOGON_QUEUE = 3, + GCConnectionStatus_NO_STEAM = 4, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/GCProtoBufMsgSrc.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/GCProtoBufMsgSrc.cs new file mode 100644 index 000000000..0b1218eb0 --- /dev/null +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/GCProtoBufMsgSrc.cs @@ -0,0 +1,10 @@ +namespace SwiftlyS2.Shared.ProtobufDefinitions; + +public enum GCProtoBufMsgSrc +{ + GCProtoBufMsgSrc_Unspecified = 0, + GCProtoBufMsgSrc_FromSystem = 1, + GCProtoBufMsgSrc_FromSteamID = 2, + GCProtoBufMsgSrc_FromGC = 3, + GCProtoBufMsgSrc_ReplySystem = 4, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/GC_BannedWordType.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/GC_BannedWordType.cs index 435212b1c..38b4f2fdd 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/GC_BannedWordType.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/GC_BannedWordType.cs @@ -1,8 +1,7 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum GC_BannedWordType { - GC_BANNED_WORD_DISABLE_WORD = 0, - GC_BANNED_WORD_ENABLE_WORD = 1, -} + GC_BANNED_WORD_DISABLE_WORD = 0, + GC_BANNED_WORD_ENABLE_WORD = 1, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/NET_Messages.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/NET_Messages.cs index 8625df9ac..56f61b271 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/NET_Messages.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/NET_Messages.cs @@ -1,19 +1,18 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum NET_Messages { - net_NOP = 0, - net_Disconnect_Legacy = 1, - net_SplitScreenUser = 3, - net_Tick = 4, - net_StringCmd = 5, - net_SetConVar = 6, - net_SignonState = 7, - net_SpawnGroup_Load = 8, - net_SpawnGroup_ManifestUpdate = 9, - net_SpawnGroup_SetCreationTick = 11, - net_SpawnGroup_Unload = 12, - net_SpawnGroup_LoadCompleted = 13, - net_DebugOverlay = 15, -} + net_NOP = 0, + net_Disconnect_Legacy = 1, + net_SplitScreenUser = 3, + net_Tick = 4, + net_StringCmd = 5, + net_SetConVar = 6, + net_SignonState = 7, + net_SpawnGroup_Load = 8, + net_SpawnGroup_ManifestUpdate = 9, + net_SpawnGroup_SetCreationTick = 11, + net_SpawnGroup_Unload = 12, + net_SpawnGroup_LoadCompleted = 13, + net_DebugOverlay = 15, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/P2P_Messages.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/P2P_Messages.cs index 1559d7b5d..3f60ee487 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/P2P_Messages.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/P2P_Messages.cs @@ -1,13 +1,12 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum P2P_Messages { - p2p_TextMessage = 256, - p2p_Voice = 257, - p2p_Ping = 258, - p2p_VRAvatarPosition = 259, - p2p_WatchSynchronization = 260, - p2p_FightingGame_GameData = 261, - p2p_FightingGame_Connection = 262, -} + p2p_TextMessage = 256, + p2p_Voice = 257, + p2p_Ping = 258, + p2p_VRAvatarPosition = 259, + p2p_WatchSynchronization = 260, + p2p_FightingGame_GameData = 261, + p2p_FightingGame_Connection = 262, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/PARTICLE_MESSAGE.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/PARTICLE_MESSAGE.cs index 8f9edc7da..4023d40b5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/PARTICLE_MESSAGE.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/PARTICLE_MESSAGE.cs @@ -1,46 +1,45 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum PARTICLE_MESSAGE { - GAME_PARTICLE_MANAGER_EVENT_CREATE = 0, - GAME_PARTICLE_MANAGER_EVENT_UPDATE = 1, - GAME_PARTICLE_MANAGER_EVENT_UPDATE_FORWARD = 2, - GAME_PARTICLE_MANAGER_EVENT_UPDATE_ORIENTATION = 3, - GAME_PARTICLE_MANAGER_EVENT_UPDATE_FALLBACK = 4, - GAME_PARTICLE_MANAGER_EVENT_UPDATE_ENT = 5, - GAME_PARTICLE_MANAGER_EVENT_UPDATE_OFFSET = 6, - GAME_PARTICLE_MANAGER_EVENT_DESTROY = 7, - GAME_PARTICLE_MANAGER_EVENT_DESTROY_INVOLVING = 8, - GAME_PARTICLE_MANAGER_EVENT_RELEASE = 9, - GAME_PARTICLE_MANAGER_EVENT_LATENCY = 10, - GAME_PARTICLE_MANAGER_EVENT_SHOULD_DRAW = 11, - GAME_PARTICLE_MANAGER_EVENT_FROZEN = 12, - GAME_PARTICLE_MANAGER_EVENT_CHANGE_CONTROL_POINT_ATTACHMENT = 13, - GAME_PARTICLE_MANAGER_EVENT_UPDATE_ENTITY_POSITION = 14, - GAME_PARTICLE_MANAGER_EVENT_SET_FOW_PROPERTIES = 15, - GAME_PARTICLE_MANAGER_EVENT_SET_TEXT = 16, - GAME_PARTICLE_MANAGER_EVENT_SET_SHOULD_CHECK_FOW = 17, - GAME_PARTICLE_MANAGER_EVENT_SET_CONTROL_POINT_MODEL = 18, - GAME_PARTICLE_MANAGER_EVENT_SET_CONTROL_POINT_SNAPSHOT = 19, - GAME_PARTICLE_MANAGER_EVENT_SET_TEXTURE_ATTRIBUTE = 20, - GAME_PARTICLE_MANAGER_EVENT_SET_SCENE_OBJECT_GENERIC_FLAG = 21, - GAME_PARTICLE_MANAGER_EVENT_SET_SCENE_OBJECT_TINT_AND_DESAT = 22, - GAME_PARTICLE_MANAGER_EVENT_DESTROY_NAMED = 23, - GAME_PARTICLE_MANAGER_EVENT_SKIP_TO_TIME = 24, - GAME_PARTICLE_MANAGER_EVENT_CAN_FREEZE = 25, - GAME_PARTICLE_MANAGER_EVENT_SET_NAMED_VALUE_CONTEXT = 26, - GAME_PARTICLE_MANAGER_EVENT_UPDATE_TRANSFORM = 27, - GAME_PARTICLE_MANAGER_EVENT_FREEZE_TRANSITION_OVERRIDE = 28, - GAME_PARTICLE_MANAGER_EVENT_FREEZE_INVOLVING = 29, - GAME_PARTICLE_MANAGER_EVENT_ADD_MODELLIST_OVERRIDE_ELEMENT = 30, - GAME_PARTICLE_MANAGER_EVENT_CLEAR_MODELLIST_OVERRIDE = 31, - GAME_PARTICLE_MANAGER_EVENT_CREATE_PHYSICS_SIM = 32, - GAME_PARTICLE_MANAGER_EVENT_DESTROY_PHYSICS_SIM = 33, - GAME_PARTICLE_MANAGER_EVENT_SET_VDATA = 34, - GAME_PARTICLE_MANAGER_EVENT_SET_MATERIAL_OVERRIDE = 35, - GAME_PARTICLE_MANAGER_EVENT_ADD_FAN = 36, - GAME_PARTICLE_MANAGER_EVENT_UPDATE_FAN = 37, - GAME_PARTICLE_MANAGER_EVENT_SET_CLUSTER_GROWTH = 38, - GAME_PARTICLE_MANAGER_EVENT_REMOVE_FAN = 39, -} + GAME_PARTICLE_MANAGER_EVENT_CREATE = 0, + GAME_PARTICLE_MANAGER_EVENT_UPDATE = 1, + GAME_PARTICLE_MANAGER_EVENT_UPDATE_FORWARD = 2, + GAME_PARTICLE_MANAGER_EVENT_UPDATE_ORIENTATION = 3, + GAME_PARTICLE_MANAGER_EVENT_UPDATE_FALLBACK = 4, + GAME_PARTICLE_MANAGER_EVENT_UPDATE_ENT = 5, + GAME_PARTICLE_MANAGER_EVENT_UPDATE_OFFSET = 6, + GAME_PARTICLE_MANAGER_EVENT_DESTROY = 7, + GAME_PARTICLE_MANAGER_EVENT_DESTROY_INVOLVING = 8, + GAME_PARTICLE_MANAGER_EVENT_RELEASE = 9, + GAME_PARTICLE_MANAGER_EVENT_LATENCY = 10, + GAME_PARTICLE_MANAGER_EVENT_SHOULD_DRAW = 11, + GAME_PARTICLE_MANAGER_EVENT_FROZEN = 12, + GAME_PARTICLE_MANAGER_EVENT_CHANGE_CONTROL_POINT_ATTACHMENT = 13, + GAME_PARTICLE_MANAGER_EVENT_UPDATE_ENTITY_POSITION = 14, + GAME_PARTICLE_MANAGER_EVENT_SET_FOW_PROPERTIES = 15, + GAME_PARTICLE_MANAGER_EVENT_SET_TEXT = 16, + GAME_PARTICLE_MANAGER_EVENT_SET_SHOULD_CHECK_FOW = 17, + GAME_PARTICLE_MANAGER_EVENT_SET_CONTROL_POINT_MODEL = 18, + GAME_PARTICLE_MANAGER_EVENT_SET_CONTROL_POINT_SNAPSHOT = 19, + GAME_PARTICLE_MANAGER_EVENT_SET_TEXTURE_ATTRIBUTE = 20, + GAME_PARTICLE_MANAGER_EVENT_SET_SCENE_OBJECT_GENERIC_FLAG = 21, + GAME_PARTICLE_MANAGER_EVENT_SET_SCENE_OBJECT_TINT_AND_DESAT = 22, + GAME_PARTICLE_MANAGER_EVENT_DESTROY_NAMED = 23, + GAME_PARTICLE_MANAGER_EVENT_SKIP_TO_TIME = 24, + GAME_PARTICLE_MANAGER_EVENT_CAN_FREEZE = 25, + GAME_PARTICLE_MANAGER_EVENT_SET_NAMED_VALUE_CONTEXT = 26, + GAME_PARTICLE_MANAGER_EVENT_UPDATE_TRANSFORM = 27, + GAME_PARTICLE_MANAGER_EVENT_FREEZE_TRANSITION_OVERRIDE = 28, + GAME_PARTICLE_MANAGER_EVENT_FREEZE_INVOLVING = 29, + GAME_PARTICLE_MANAGER_EVENT_ADD_MODELLIST_OVERRIDE_ELEMENT = 30, + GAME_PARTICLE_MANAGER_EVENT_CLEAR_MODELLIST_OVERRIDE = 31, + GAME_PARTICLE_MANAGER_EVENT_CREATE_PHYSICS_SIM = 32, + GAME_PARTICLE_MANAGER_EVENT_DESTROY_PHYSICS_SIM = 33, + GAME_PARTICLE_MANAGER_EVENT_SET_VDATA = 34, + GAME_PARTICLE_MANAGER_EVENT_SET_MATERIAL_OVERRIDE = 35, + GAME_PARTICLE_MANAGER_EVENT_ADD_FAN = 36, + GAME_PARTICLE_MANAGER_EVENT_UPDATE_FAN = 37, + GAME_PARTICLE_MANAGER_EVENT_SET_CLUSTER_GROWTH = 38, + GAME_PARTICLE_MANAGER_EVENT_REMOVE_FAN = 39, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/PrefetchType.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/PrefetchType.cs index 5a2db47be..f557348c1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/PrefetchType.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/PrefetchType.cs @@ -1,7 +1,6 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum PrefetchType { - PFT_SOUND = 0, -} + PFT_SOUND = 0, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/QuestType.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/QuestType.cs index a985cbc51..7ab685504 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/QuestType.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/QuestType.cs @@ -1,8 +1,7 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum QuestType { - k_EQuestType_Operation = 1, - k_EQuestType_RecurringMission = 2, -} + k_EQuestType_Operation = 1, + k_EQuestType_RecurringMission = 2, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ReplayEventType_t.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ReplayEventType_t.cs index c8c015faa..1494064f8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ReplayEventType_t.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/ReplayEventType_t.cs @@ -1,11 +1,10 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum ReplayEventType_t { - REPLAY_EVENT_CANCEL = 0, - REPLAY_EVENT_DEATH = 1, - REPLAY_EVENT_GENERIC = 2, - REPLAY_EVENT_STUCK_NEED_FULL_UPDATE = 3, - REPLAY_EVENT_VICTORY = 4, -} + REPLAY_EVENT_CANCEL = 0, + REPLAY_EVENT_DEATH = 1, + REPLAY_EVENT_GENERIC = 2, + REPLAY_EVENT_STUCK_NEED_FULL_UPDATE = 3, + REPLAY_EVENT_VICTORY = 4, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/RequestPause_t.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/RequestPause_t.cs index 9a82173ee..e9f32bf6f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/RequestPause_t.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/RequestPause_t.cs @@ -1,9 +1,8 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum RequestPause_t { - RP_PAUSE = 0, - RP_UNPAUSE = 1, - RP_TOGGLEPAUSE = 2, -} + RP_PAUSE = 0, + RP_UNPAUSE = 1, + RP_TOGGLEPAUSE = 2, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/SVC_Messages.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/SVC_Messages.cs index 345c8b175..ba44caa5f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/SVC_Messages.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/SVC_Messages.cs @@ -1,37 +1,36 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum SVC_Messages { - svc_ServerInfo = 40, - svc_FlattenedSerializer = 41, - svc_ClassInfo = 42, - svc_SetPause = 43, - svc_CreateStringTable = 44, - svc_UpdateStringTable = 45, - svc_VoiceInit = 46, - svc_VoiceData = 47, - svc_Print = 48, - svc_Sounds = 49, - svc_SetView = 50, - svc_ClearAllStringTables = 51, - svc_CmdKeyValues = 52, - svc_BSPDecal = 53, - svc_SplitScreen = 54, - svc_PacketEntities = 55, - svc_Prefetch = 56, - svc_Menu = 57, - svc_GetCvarValue = 58, - svc_StopSound = 59, - svc_PeerList = 60, - svc_PacketReliable = 61, - svc_HLTVStatus = 62, - svc_ServerSteamID = 63, - svc_FullFrameSplit = 70, - svc_RconServerDetails = 71, - svc_UserMessage = 72, - svc_Broadcast_Command = 74, - svc_HltvFixupOperatorStatus = 75, - svc_UserCmds = 76, - svc_NextMsgPredicted = 77, -} + svc_ServerInfo = 40, + svc_FlattenedSerializer = 41, + svc_ClassInfo = 42, + svc_SetPause = 43, + svc_CreateStringTable = 44, + svc_UpdateStringTable = 45, + svc_VoiceInit = 46, + svc_VoiceData = 47, + svc_Print = 48, + svc_Sounds = 49, + svc_SetView = 50, + svc_ClearAllStringTables = 51, + svc_CmdKeyValues = 52, + svc_BSPDecal = 53, + svc_SplitScreen = 54, + svc_PacketEntities = 55, + svc_Prefetch = 56, + svc_Menu = 57, + svc_GetCvarValue = 58, + svc_StopSound = 59, + svc_PeerList = 60, + svc_PacketReliable = 61, + svc_HLTVStatus = 62, + svc_ServerSteamID = 63, + svc_FullFrameSplit = 70, + svc_RconServerDetails = 71, + svc_UserMessage = 72, + svc_Broadcast_Command = 74, + svc_HltvFixupOperatorStatus = 75, + svc_UserCmds = 76, + svc_NextMsgPredicted = 77, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/SVC_Messages_LowFrequency.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/SVC_Messages_LowFrequency.cs index 9a0da7051..0de2faa44 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/SVC_Messages_LowFrequency.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/SVC_Messages_LowFrequency.cs @@ -1,7 +1,6 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum SVC_Messages_LowFrequency { - svc_dummy = 600, -} + svc_dummy = 600, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/SignonState_t.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/SignonState_t.cs index be799d0fb..4f4589c42 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/SignonState_t.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/SignonState_t.cs @@ -1,14 +1,13 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum SignonState_t { - SIGNONSTATE_NONE = 0, - SIGNONSTATE_CHALLENGE = 1, - SIGNONSTATE_CONNECTED = 2, - SIGNONSTATE_NEW = 3, - SIGNONSTATE_PRESPAWN = 4, - SIGNONSTATE_SPAWN = 5, - SIGNONSTATE_FULL = 6, - SIGNONSTATE_CHANGELEVEL = 7, -} + SIGNONSTATE_NONE = 0, + SIGNONSTATE_CHALLENGE = 1, + SIGNONSTATE_CONNECTED = 2, + SIGNONSTATE_NEW = 3, + SIGNONSTATE_PRESPAWN = 4, + SIGNONSTATE_SPAWN = 5, + SIGNONSTATE_FULL = 6, + SIGNONSTATE_CHANGELEVEL = 7, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/SpawnGroupFlags_t.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/SpawnGroupFlags_t.cs index 07aae3425..3094c0c15 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/SpawnGroupFlags_t.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/SpawnGroupFlags_t.cs @@ -1,14 +1,13 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum SpawnGroupFlags_t { - SPAWN_GROUP_LOAD_ENTITIES_FROM_SAVE = 1, - SPAWN_GROUP_DONT_SPAWN_ENTITIES = 2, - SPAWN_GROUP_SYNCHRONOUS_SPAWN = 4, - SPAWN_GROUP_IS_INITIAL_SPAWN_GROUP = 8, - SPAWN_GROUP_CREATE_CLIENT_ONLY_ENTITIES = 16, - SPAWN_GROUP_BLOCK_UNTIL_LOADED = 64, - SPAWN_GROUP_LOAD_STREAMING_DATA = 128, - SPAWN_GROUP_CREATE_NEW_SCENE_WORLD = 256, -} + SPAWN_GROUP_LOAD_ENTITIES_FROM_SAVE = 1, + SPAWN_GROUP_DONT_SPAWN_ENTITIES = 2, + SPAWN_GROUP_SYNCHRONOUS_SPAWN = 4, + SPAWN_GROUP_IS_INITIAL_SPAWN_GROUP = 8, + SPAWN_GROUP_CREATE_CLIENT_ONLY_ENTITIES = 16, + SPAWN_GROUP_BLOCK_UNTIL_LOADED = 64, + SPAWN_GROUP_LOAD_STREAMING_DATA = 128, + SPAWN_GROUP_CREATE_NEW_SCENE_WORLD = 256, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/VoiceDataFormat_t.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/VoiceDataFormat_t.cs index 1a33a6705..a7da53ce2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/VoiceDataFormat_t.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/VoiceDataFormat_t.cs @@ -1,9 +1,8 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum VoiceDataFormat_t { - VOICEDATA_FORMAT_STEAM = 0, - VOICEDATA_FORMAT_ENGINE = 1, - VOICEDATA_FORMAT_OPUS = 2, -} + VOICEDATA_FORMAT_STEAM = 0, + VOICEDATA_FORMAT_ENGINE = 1, + VOICEDATA_FORMAT_OPUS = 2, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/eRollType.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/eRollType.cs index e093d3150..8e8e532e3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Enums/eRollType.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Enums/eRollType.cs @@ -1,11 +1,10 @@ - namespace SwiftlyS2.Shared.ProtobufDefinitions; public enum eRollType { - ROLL_NONE = -1, - ROLL_STATS = 0, - ROLL_CREDITS = 1, - ROLL_LATE_JOIN_LOGO = 2, - ROLL_OUTTRO = 3, -} + ROLL_NONE = -1, + ROLL_STATS = 0, + ROLL_CREDITS = 1, + ROLL_LATE_JOIN_LOGO = 2, + ROLL_OUTTRO = 3, +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/AccountActivity.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/AccountActivity.cs index 5ed1fd5d9..915d29d33 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/AccountActivity.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/AccountActivity.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface AccountActivity : ITypedProtobuf { - static AccountActivity ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new AccountActivityImpl(handle, isManuallyAllocated); - - - public uint Activity { get; set; } - - - public uint Mode { get; set; } - - - public uint Map { get; set; } - - - public ulong Matchid { get; set; } + static AccountActivity ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new AccountActivityImpl(handle, isManuallyAllocated); -} + public uint Activity { get; set; } + public uint Mode { get; set; } + public uint Map { get; set; } + public ulong Matchid { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/C2S_CONNECTION_Message.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/C2S_CONNECTION_Message.cs index 5ade5b4f9..02fa260b8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/C2S_CONNECTION_Message.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/C2S_CONNECTION_Message.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface C2S_CONNECTION_Message : ITypedProtobuf { - static C2S_CONNECTION_Message ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new C2S_CONNECTION_MessageImpl(handle, isManuallyAllocated); - - - public string AddonName { get; set; } - - - public C2S_CONNECT_SameProcessCheck LocalhostSameProcessCheck { get; } + static C2S_CONNECTION_Message ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new C2S_CONNECTION_MessageImpl(handle, isManuallyAllocated); -} + public string AddonName { get; set; } + public C2S_CONNECT_SameProcessCheck LocalhostSameProcessCheck { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/C2S_CONNECT_Message.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/C2S_CONNECT_Message.cs index 4c90cbf85..d65460b38 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/C2S_CONNECT_Message.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/C2S_CONNECT_Message.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,36 +6,16 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface C2S_CONNECT_Message : ITypedProtobuf { - static C2S_CONNECT_Message ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new C2S_CONNECT_MessageImpl(handle, isManuallyAllocated); - - - public uint HostVersion { get; set; } - - - public uint AuthProtocol { get; set; } - - - public uint ChallengeNumber { get; set; } - - - public ulong ReservationCookie { get; set; } - - - public bool LowViolence { get; set; } - - - public byte[] EncryptedPassword { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Splitplayers { get; } - - - public byte[] AuthSteam { get; set; } - - - public string ChallengeContext { get; set; } - - - public C2S_CONNECT_SameProcessCheck LocalhostSameProcessCheck { get; } - -} + static C2S_CONNECT_Message ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new C2S_CONNECT_MessageImpl(handle, isManuallyAllocated); + + public uint HostVersion { get; set; } + public uint AuthProtocol { get; set; } + public uint ChallengeNumber { get; set; } + public ulong ReservationCookie { get; set; } + public bool LowViolence { get; set; } + public byte[] EncryptedPassword { get; set; } + public IProtobufRepeatedFieldSubMessageType Splitplayers { get; } + public byte[] AuthSteam { get; set; } + public string ChallengeContext { get; set; } + public C2S_CONNECT_SameProcessCheck LocalhostSameProcessCheck { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/C2S_CONNECT_SameProcessCheck.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/C2S_CONNECT_SameProcessCheck.cs index 9b87d9c08..e852c3298 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/C2S_CONNECT_SameProcessCheck.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/C2S_CONNECT_SameProcessCheck.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface C2S_CONNECT_SameProcessCheck : ITypedProtobuf { - static C2S_CONNECT_SameProcessCheck ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new C2S_CONNECT_SameProcessCheckImpl(handle, isManuallyAllocated); - - - public ulong LocalhostProcessId { get; set; } - - - public ulong Key { get; set; } + static C2S_CONNECT_SameProcessCheck ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new C2S_CONNECT_SameProcessCheckImpl(handle, isManuallyAllocated); -} + public ulong LocalhostProcessId { get; set; } + public ulong Key { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CAttribute_String.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CAttribute_String.cs index a31a7b446..efcf446a8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CAttribute_String.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CAttribute_String.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CAttribute_String : ITypedProtobuf { - static CAttribute_String ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CAttribute_StringImpl(handle, isManuallyAllocated); - - - public string Value { get; set; } + static CAttribute_String ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CAttribute_StringImpl(handle, isManuallyAllocated); -} + public string Value { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CBaseUserCmdExecutionNotes.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CBaseUserCmdExecutionNotes.cs index 9e3f06b6e..de7662448 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CBaseUserCmdExecutionNotes.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CBaseUserCmdExecutionNotes.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CBaseUserCmdExecutionNotes : ITypedProtobuf { - static CBaseUserCmdExecutionNotes ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CBaseUserCmdExecutionNotesImpl(handle, isManuallyAllocated); - - - public string IgnoredReason { get; set; } + static CBaseUserCmdExecutionNotes ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CBaseUserCmdExecutionNotesImpl(handle, isManuallyAllocated); -} + public string IgnoredReason { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CBaseUserCmdPB.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CBaseUserCmdPB.cs index 65de2eea0..ccff65105 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CBaseUserCmdPB.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CBaseUserCmdPB.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,63 +6,25 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CBaseUserCmdPB : ITypedProtobuf { - static CBaseUserCmdPB ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CBaseUserCmdPBImpl(handle, isManuallyAllocated); - - - public int LegacyCommandNumber { get; set; } - - - public int ClientTick { get; set; } - - - public uint PredictionOffsetTicksX256 { get; set; } - - - public CInButtonStatePB ButtonsPb { get; } - - - public QAngle Viewangles { get; set; } - - - public float Forwardmove { get; set; } - - - public float Leftmove { get; set; } - - - public float Upmove { get; set; } - - - public int Impulse { get; set; } - - - public int Weaponselect { get; set; } - - - public int RandomSeed { get; set; } - - - public int Mousedx { get; set; } - - - public int Mousedy { get; set; } - - - public uint PawnEntityHandle { get; set; } - - - public IProtobufRepeatedFieldSubMessageType SubtickMoves { get; } - - - public byte[] MoveCrc { get; set; } - - - public uint ConsumedServerAngleChanges { get; set; } - - - public int CmdFlags { get; set; } - - - public CBaseUserCmdExecutionNotes ExecutionNotes { get; } - -} + static CBaseUserCmdPB ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CBaseUserCmdPBImpl(handle, isManuallyAllocated); + + public int LegacyCommandNumber { get; set; } + public int ClientTick { get; set; } + public uint PredictionOffsetTicksX256 { get; set; } + public CInButtonStatePB ButtonsPb { get; } + public QAngle Viewangles { get; set; } + public float Forwardmove { get; set; } + public float Leftmove { get; set; } + public float Upmove { get; set; } + public int Impulse { get; set; } + public int Weaponselect { get; set; } + public int RandomSeed { get; set; } + public int Mousedx { get; set; } + public int Mousedy { get; set; } + public uint PawnEntityHandle { get; set; } + public IProtobufRepeatedFieldSubMessageType SubtickMoves { get; } + public byte[] MoveCrc { get; set; } + public uint ConsumedServerAngleChanges { get; set; } + public int CmdFlags { get; set; } + public CBaseUserCmdExecutionNotes ExecutionNotes { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CBidirMsg_PredictionEvent.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CBidirMsg_PredictionEvent.cs index 98d323e68..bd89e8cbf 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CBidirMsg_PredictionEvent.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CBidirMsg_PredictionEvent.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CBidirMsg_PredictionEvent : ITypedProtobuf { - static CBidirMsg_PredictionEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CBidirMsg_PredictionEventImpl(handle, isManuallyAllocated); - - - public uint EventId { get; set; } - - - public byte[] EventData { get; set; } - - - public uint SyncType { get; set; } - - - public uint SyncValUint32 { get; set; } + static CBidirMsg_PredictionEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CBidirMsg_PredictionEventImpl(handle, isManuallyAllocated); -} + public uint EventId { get; set; } + public byte[] EventData { get; set; } + public uint SyncType { get; set; } + public uint SyncValUint32 { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CBidirMsg_RebroadcastGameEvent.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CBidirMsg_RebroadcastGameEvent.cs index e1031464b..1a678a254 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CBidirMsg_RebroadcastGameEvent.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CBidirMsg_RebroadcastGameEvent.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CBidirMsg_RebroadcastGameEvent : ITypedProtobuf { - static CBidirMsg_RebroadcastGameEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CBidirMsg_RebroadcastGameEventImpl(handle, isManuallyAllocated); - - - public bool Posttoserver { get; set; } - - - public int Buftype { get; set; } - - - public uint Clientbitcount { get; set; } - - - public ulong Receivingclients { get; set; } + static CBidirMsg_RebroadcastGameEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CBidirMsg_RebroadcastGameEventImpl(handle, isManuallyAllocated); -} + public bool Posttoserver { get; set; } + public int Buftype { get; set; } + public uint Clientbitcount { get; set; } + public ulong Receivingclients { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CBidirMsg_RebroadcastSource.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CBidirMsg_RebroadcastSource.cs index 72670c2f7..348d5c2d1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CBidirMsg_RebroadcastSource.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CBidirMsg_RebroadcastSource.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CBidirMsg_RebroadcastSource : ITypedProtobuf { - static CBidirMsg_RebroadcastSource ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CBidirMsg_RebroadcastSourceImpl(handle, isManuallyAllocated); - - - public int Eventsource { get; set; } + static CBidirMsg_RebroadcastSource ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CBidirMsg_RebroadcastSourceImpl(handle, isManuallyAllocated); -} + public int Eventsource { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_BaselineAck.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_BaselineAck.cs index 326898404..5e2ef2c8e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_BaselineAck.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_BaselineAck.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCLCMsg_BaselineAck : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 23; - - static string INetMessage.MessageName => "CCLCMsg_BaselineAck"; - - static CCLCMsg_BaselineAck ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_BaselineAckImpl(handle, isManuallyAllocated); - - - public int BaselineTick { get; set; } + static int INetMessage.MessageId => 23; + static string INetMessage.MessageName => "CCLCMsg_BaselineAck"; - public int BaselineNr { get; set; } + static CCLCMsg_BaselineAck ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_BaselineAckImpl(handle, isManuallyAllocated); -} + public int BaselineTick { get; set; } + public int BaselineNr { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_ClientInfo.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_ClientInfo.cs index 38c5b9b6a..b068fa257 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_ClientInfo.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_ClientInfo.cs @@ -1,32 +1,20 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCLCMsg_ClientInfo : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 20; - - static string INetMessage.MessageName => "CCLCMsg_ClientInfo"; - - static CCLCMsg_ClientInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_ClientInfoImpl(handle, isManuallyAllocated); - - - public uint SendTableCrc { get; set; } - - - public uint ServerCount { get; set; } - - - public bool IsHltv { get; set; } - - - public uint FriendsId { get; set; } + static int INetMessage.MessageId => 20; + static string INetMessage.MessageName => "CCLCMsg_ClientInfo"; - public string FriendsName { get; set; } + static CCLCMsg_ClientInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_ClientInfoImpl(handle, isManuallyAllocated); -} + public uint SendTableCrc { get; set; } + public uint ServerCount { get; set; } + public bool IsHltv { get; set; } + public uint FriendsId { get; set; } + public string FriendsName { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_CmdKeyValues.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_CmdKeyValues.cs index 0f950df15..30a4471d5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_CmdKeyValues.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_CmdKeyValues.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCLCMsg_CmdKeyValues : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 34; - - static string INetMessage.MessageName => "CCLCMsg_CmdKeyValues"; - - static CCLCMsg_CmdKeyValues ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_CmdKeyValuesImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 34; + static string INetMessage.MessageName => "CCLCMsg_CmdKeyValues"; - public byte[] Data { get; set; } + static CCLCMsg_CmdKeyValues ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_CmdKeyValuesImpl(handle, isManuallyAllocated); -} + public byte[] Data { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_Diagnostic.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_Diagnostic.cs index 8a8861de4..243875ac1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_Diagnostic.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_Diagnostic.cs @@ -1,32 +1,20 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCLCMsg_Diagnostic : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 37; - - static string INetMessage.MessageName => "CCLCMsg_Diagnostic"; - - static CCLCMsg_Diagnostic ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_DiagnosticImpl(handle, isManuallyAllocated); - - - public CMsgSource2SystemSpecs SystemSpecs { get; } - - - public CMsgSource2VProfLiteReport VprofReport { get; } - - - public CMsgSource2NetworkFlowQuality DownstreamFlow { get; } - - - public CMsgSource2NetworkFlowQuality UpstreamFlow { get; } + static int INetMessage.MessageId => 37; + static string INetMessage.MessageName => "CCLCMsg_Diagnostic"; - public IProtobufRepeatedFieldSubMessageType PerfSamples { get; } + static CCLCMsg_Diagnostic ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_DiagnosticImpl(handle, isManuallyAllocated); -} + public CMsgSource2SystemSpecs SystemSpecs { get; } + public CMsgSource2VProfLiteReport VprofReport { get; } + public CMsgSource2NetworkFlowQuality DownstreamFlow { get; } + public CMsgSource2NetworkFlowQuality UpstreamFlow { get; } + public IProtobufRepeatedFieldSubMessageType PerfSamples { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_HltvFixupOperatorTick.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_HltvFixupOperatorTick.cs index 5f7e8cca7..d78382185 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_HltvFixupOperatorTick.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_HltvFixupOperatorTick.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,30 +6,14 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CCLCMsg_HltvFixupOperatorTick : ITypedProtobuf { - static CCLCMsg_HltvFixupOperatorTick ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_HltvFixupOperatorTickImpl(handle, isManuallyAllocated); - - - public int Tick { get; set; } - - - public byte[] PropsData { get; set; } - - - public Vector Origin { get; set; } - - - public QAngle EyeAngles { get; set; } - - - public int ObserverMode { get; set; } - - - public bool CameramanScoreboard { get; set; } - - - public int ObserverTarget { get; set; } - - - public Vector ViewOffset { get; set; } - -} + static CCLCMsg_HltvFixupOperatorTick ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_HltvFixupOperatorTickImpl(handle, isManuallyAllocated); + + public int Tick { get; set; } + public byte[] PropsData { get; set; } + public Vector Origin { get; set; } + public QAngle EyeAngles { get; set; } + public int ObserverMode { get; set; } + public bool CameramanScoreboard { get; set; } + public int ObserverTarget { get; set; } + public Vector ViewOffset { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_HltvReplay.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_HltvReplay.cs index 52616395d..7ac25e369 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_HltvReplay.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_HltvReplay.cs @@ -1,32 +1,20 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCLCMsg_HltvReplay : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 36; - - static string INetMessage.MessageName => "CCLCMsg_HltvReplay"; - - static CCLCMsg_HltvReplay ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_HltvReplayImpl(handle, isManuallyAllocated); - - - public int Request { get; set; } - - - public float SlowdownLength { get; set; } - - - public float SlowdownRate { get; set; } - - - public int PrimaryTarget { get; set; } + static int INetMessage.MessageId => 36; + static string INetMessage.MessageName => "CCLCMsg_HltvReplay"; - public float EventTime { get; set; } + static CCLCMsg_HltvReplay ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_HltvReplayImpl(handle, isManuallyAllocated); -} + public int Request { get; set; } + public float SlowdownLength { get; set; } + public float SlowdownRate { get; set; } + public int PrimaryTarget { get; set; } + public float EventTime { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_ListenEvents.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_ListenEvents.cs index 005b393aa..77e558678 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_ListenEvents.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_ListenEvents.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CCLCMsg_ListenEvents : ITypedProtobuf { - static CCLCMsg_ListenEvents ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_ListenEventsImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldValueType EventMask { get; } + static CCLCMsg_ListenEvents ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_ListenEventsImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldValueType EventMask { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_LoadingProgress.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_LoadingProgress.cs index 2d33d3b73..d5a84643f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_LoadingProgress.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_LoadingProgress.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCLCMsg_LoadingProgress : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 27; - - static string INetMessage.MessageName => "CCLCMsg_LoadingProgress"; - - static CCLCMsg_LoadingProgress ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_LoadingProgressImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 27; + static string INetMessage.MessageName => "CCLCMsg_LoadingProgress"; - public int Progress { get; set; } + static CCLCMsg_LoadingProgress ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_LoadingProgressImpl(handle, isManuallyAllocated); -} + public int Progress { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_Move.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_Move.cs index ce557b299..999964333 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_Move.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_Move.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCLCMsg_Move : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 21; - - static string INetMessage.MessageName => "CCLCMsg_Move"; - - static CCLCMsg_Move ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_MoveImpl(handle, isManuallyAllocated); - - - public byte[] Data { get; set; } + static int INetMessage.MessageId => 21; + static string INetMessage.MessageName => "CCLCMsg_Move"; - public uint LastCommandNumber { get; set; } + static CCLCMsg_Move ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_MoveImpl(handle, isManuallyAllocated); -} + public byte[] Data { get; set; } + public uint LastCommandNumber { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_RconServerDetails.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_RconServerDetails.cs index f826cc112..d56f2d894 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_RconServerDetails.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_RconServerDetails.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCLCMsg_RconServerDetails : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 35; - - static string INetMessage.MessageName => "CCLCMsg_RconServerDetails"; - - static CCLCMsg_RconServerDetails ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_RconServerDetailsImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 35; + static string INetMessage.MessageName => "CCLCMsg_RconServerDetails"; - public byte[] Token { get; set; } + static CCLCMsg_RconServerDetails ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_RconServerDetailsImpl(handle, isManuallyAllocated); -} + public byte[] Token { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_RequestPause.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_RequestPause.cs index 2bada1f9d..94bd03819 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_RequestPause.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_RequestPause.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCLCMsg_RequestPause : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 33; - - static string INetMessage.MessageName => "CCLCMsg_RequestPause"; - - static CCLCMsg_RequestPause ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_RequestPauseImpl(handle, isManuallyAllocated); - - - public RequestPause_t PauseType { get; set; } + static int INetMessage.MessageId => 33; + static string INetMessage.MessageName => "CCLCMsg_RequestPause"; - public int PauseGroup { get; set; } + static CCLCMsg_RequestPause ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_RequestPauseImpl(handle, isManuallyAllocated); -} + public RequestPause_t PauseType { get; set; } + public int PauseGroup { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_RespondCvarValue.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_RespondCvarValue.cs index a90fb43f5..ab0367c2d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_RespondCvarValue.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_RespondCvarValue.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCLCMsg_RespondCvarValue : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 25; - - static string INetMessage.MessageName => "CCLCMsg_RespondCvarValue"; - - static CCLCMsg_RespondCvarValue ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_RespondCvarValueImpl(handle, isManuallyAllocated); - - - public int Cookie { get; set; } - - - public int StatusCode { get; set; } - - - public string Name { get; set; } + static int INetMessage.MessageId => 25; + static string INetMessage.MessageName => "CCLCMsg_RespondCvarValue"; - public string Value { get; set; } + static CCLCMsg_RespondCvarValue ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_RespondCvarValueImpl(handle, isManuallyAllocated); -} + public int Cookie { get; set; } + public int StatusCode { get; set; } + public string Name { get; set; } + public string Value { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_ServerStatus.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_ServerStatus.cs index 0beb45bba..93cd4cf54 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_ServerStatus.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_ServerStatus.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCLCMsg_ServerStatus : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 31; - - static string INetMessage.MessageName => "CCLCMsg_ServerStatus"; - - static CCLCMsg_ServerStatus ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_ServerStatusImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 31; + static string INetMessage.MessageName => "CCLCMsg_ServerStatus"; - public bool Simplified { get; set; } + static CCLCMsg_ServerStatus ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_ServerStatusImpl(handle, isManuallyAllocated); -} + public bool Simplified { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_SplitPlayerConnect.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_SplitPlayerConnect.cs index 8d75b7769..062c3818e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_SplitPlayerConnect.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_SplitPlayerConnect.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCLCMsg_SplitPlayerConnect : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 28; - - static string INetMessage.MessageName => "CCLCMsg_SplitPlayerConnect"; - - static CCLCMsg_SplitPlayerConnect ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_SplitPlayerConnectImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 28; + static string INetMessage.MessageName => "CCLCMsg_SplitPlayerConnect"; - public string Playername { get; set; } + static CCLCMsg_SplitPlayerConnect ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_SplitPlayerConnectImpl(handle, isManuallyAllocated); -} + public string Playername { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_SplitPlayerDisconnect.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_SplitPlayerDisconnect.cs index 92d033d0f..0f8a3b2c3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_SplitPlayerDisconnect.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_SplitPlayerDisconnect.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCLCMsg_SplitPlayerDisconnect : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 30; - - static string INetMessage.MessageName => "CCLCMsg_SplitPlayerDisconnect"; - - static CCLCMsg_SplitPlayerDisconnect ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_SplitPlayerDisconnectImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 30; + static string INetMessage.MessageName => "CCLCMsg_SplitPlayerDisconnect"; - public int Slot { get; set; } + static CCLCMsg_SplitPlayerDisconnect ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_SplitPlayerDisconnectImpl(handle, isManuallyAllocated); -} + public int Slot { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_VoiceData.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_VoiceData.cs index bc2ab9c4e..d2371afc2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_VoiceData.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCLCMsg_VoiceData.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCLCMsg_VoiceData : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 22; - - static string INetMessage.MessageName => "CCLCMsg_VoiceData"; - - static CCLCMsg_VoiceData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_VoiceDataImpl(handle, isManuallyAllocated); - - - public CMsgVoiceAudio Audio { get; } - - - public ulong Xuid { get; set; } + static int INetMessage.MessageId => 22; + static string INetMessage.MessageName => "CCLCMsg_VoiceData"; - public uint Tick { get; set; } + static CCLCMsg_VoiceData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCLCMsg_VoiceDataImpl(handle, isManuallyAllocated); -} + public CMsgVoiceAudio Audio { get; } + public ulong Xuid { get; set; } + public uint Tick { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSPredictionEvent_AddAimPunch.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSPredictionEvent_AddAimPunch.cs index bdb730996..901153bfb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSPredictionEvent_AddAimPunch.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSPredictionEvent_AddAimPunch.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CCSPredictionEvent_AddAimPunch : ITypedProtobuf { - static CCSPredictionEvent_AddAimPunch ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSPredictionEvent_AddAimPunchImpl(handle, isManuallyAllocated); - - - public QAngle PunchAngle { get; set; } - - - public uint WhenTick { get; set; } - - - public float WhenTickFrac { get; set; } + static CCSPredictionEvent_AddAimPunch ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSPredictionEvent_AddAimPunchImpl(handle, isManuallyAllocated); -} + public QAngle PunchAngle { get; set; } + public uint WhenTick { get; set; } + public float WhenTickFrac { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSPredictionEvent_DamageTag.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSPredictionEvent_DamageTag.cs index 7ac598d5f..43fdc0193 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSPredictionEvent_DamageTag.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSPredictionEvent_DamageTag.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CCSPredictionEvent_DamageTag : ITypedProtobuf { - static CCSPredictionEvent_DamageTag ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSPredictionEvent_DamageTagImpl(handle, isManuallyAllocated); - - - public float FlinchModSmall { get; set; } - - - public float FlinchModLarge { get; set; } - - - public float FriendlyFireDamageReductionRatio { get; set; } + static CCSPredictionEvent_DamageTag ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSPredictionEvent_DamageTagImpl(handle, isManuallyAllocated); -} + public float FlinchModSmall { get; set; } + public float FlinchModLarge { get; set; } + public float FriendlyFireDamageReductionRatio { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsgPreMatchSayText.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsgPreMatchSayText.cs index 5889357e3..96b5c3644 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsgPreMatchSayText.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsgPreMatchSayText.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CCSUsrMsgPreMatchSayText : ITypedProtobuf { - static CCSUsrMsgPreMatchSayText ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsgPreMatchSayTextImpl(handle, isManuallyAllocated); - - - public uint AccountId { get; set; } - - - public string Text { get; set; } - - - public bool AllChat { get; set; } + static CCSUsrMsgPreMatchSayText ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsgPreMatchSayTextImpl(handle, isManuallyAllocated); -} + public uint AccountId { get; set; } + public string Text { get; set; } + public bool AllChat { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_AchievementEvent.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_AchievementEvent.cs index f9e7050b1..eb8f05a9a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_AchievementEvent.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_AchievementEvent.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_AchievementEvent : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 333; - - static string INetMessage.MessageName => "CCSUsrMsg_AchievementEvent"; - - static CCSUsrMsg_AchievementEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_AchievementEventImpl(handle, isManuallyAllocated); - - - public int Achievement { get; set; } - - - public int Count { get; set; } + static int INetMessage.MessageId => 333; + static string INetMessage.MessageName => "CCSUsrMsg_AchievementEvent"; - public int UserId { get; set; } + static CCSUsrMsg_AchievementEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_AchievementEventImpl(handle, isManuallyAllocated); -} + public int Achievement { get; set; } + public int Count { get; set; } + public int UserId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_AdjustMoney.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_AdjustMoney.cs index dfca193e8..d81797d11 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_AdjustMoney.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_AdjustMoney.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_AdjustMoney : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 327; - - static string INetMessage.MessageName => "CCSUsrMsg_AdjustMoney"; - - static CCSUsrMsg_AdjustMoney ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_AdjustMoneyImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 327; + static string INetMessage.MessageName => "CCSUsrMsg_AdjustMoney"; - public int Amount { get; set; } + static CCSUsrMsg_AdjustMoney ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_AdjustMoneyImpl(handle, isManuallyAllocated); -} + public int Amount { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_AmmoDenied.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_AmmoDenied.cs index 62ebf2957..e487519a1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_AmmoDenied.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_AmmoDenied.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_AmmoDenied : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 356; - - static string INetMessage.MessageName => "CCSUsrMsg_AmmoDenied"; - - static CCSUsrMsg_AmmoDenied ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_AmmoDeniedImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 356; + static string INetMessage.MessageName => "CCSUsrMsg_AmmoDenied"; - public int Ammoidx { get; set; } + static CCSUsrMsg_AmmoDenied ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_AmmoDeniedImpl(handle, isManuallyAllocated); -} + public int Ammoidx { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_BarTime.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_BarTime.cs index ac4c676ce..b405458d9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_BarTime.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_BarTime.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_BarTime : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 355; - - static string INetMessage.MessageName => "CCSUsrMsg_BarTime"; - - static CCSUsrMsg_BarTime ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_BarTimeImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 355; + static string INetMessage.MessageName => "CCSUsrMsg_BarTime"; - public string Time { get; set; } + static CCSUsrMsg_BarTime ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_BarTimeImpl(handle, isManuallyAllocated); -} + public string Time { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_CallVoteFailed.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_CallVoteFailed.cs index 9dbb27629..de73b25bb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_CallVoteFailed.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_CallVoteFailed.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_CallVoteFailed : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 348; - - static string INetMessage.MessageName => "CCSUsrMsg_CallVoteFailed"; - - static CCSUsrMsg_CallVoteFailed ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_CallVoteFailedImpl(handle, isManuallyAllocated); - - - public int Reason { get; set; } + static int INetMessage.MessageId => 348; + static string INetMessage.MessageName => "CCSUsrMsg_CallVoteFailed"; - public int Time { get; set; } + static CCSUsrMsg_CallVoteFailed ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_CallVoteFailedImpl(handle, isManuallyAllocated); -} + public int Reason { get; set; } + public int Time { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ClientInfo.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ClientInfo.cs index b2a0de179..13fa6907d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ClientInfo.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ClientInfo.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_ClientInfo : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 339; - - static string INetMessage.MessageName => "CCSUsrMsg_ClientInfo"; - - static CCSUsrMsg_ClientInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ClientInfoImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 339; + static string INetMessage.MessageName => "CCSUsrMsg_ClientInfo"; - public int Dummy { get; set; } + static CCSUsrMsg_ClientInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ClientInfoImpl(handle, isManuallyAllocated); -} + public int Dummy { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_CloseCaption.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_CloseCaption.cs index 70d6a8640..8feb82563 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_CloseCaption.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_CloseCaption.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_CloseCaption : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 315; - - static string INetMessage.MessageName => "CCSUsrMsg_CloseCaption"; - - static CCSUsrMsg_CloseCaption ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_CloseCaptionImpl(handle, isManuallyAllocated); - - - public uint Hash { get; set; } - - - public int Duration { get; set; } - - - public bool FromPlayer { get; set; } + static int INetMessage.MessageId => 315; + static string INetMessage.MessageName => "CCSUsrMsg_CloseCaption"; - public string Cctoken { get; set; } + static CCSUsrMsg_CloseCaption ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_CloseCaptionImpl(handle, isManuallyAllocated); -} + public uint Hash { get; set; } + public int Duration { get; set; } + public bool FromPlayer { get; set; } + public string Cctoken { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_CloseCaptionDirect.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_CloseCaptionDirect.cs index 878829a90..334a77811 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_CloseCaptionDirect.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_CloseCaptionDirect.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_CloseCaptionDirect : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 316; - - static string INetMessage.MessageName => "CCSUsrMsg_CloseCaptionDirect"; - - static CCSUsrMsg_CloseCaptionDirect ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_CloseCaptionDirectImpl(handle, isManuallyAllocated); - - - public uint Hash { get; set; } - - - public int Duration { get; set; } + static int INetMessage.MessageId => 316; + static string INetMessage.MessageName => "CCSUsrMsg_CloseCaptionDirect"; - public bool FromPlayer { get; set; } + static CCSUsrMsg_CloseCaptionDirect ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_CloseCaptionDirectImpl(handle, isManuallyAllocated); -} + public uint Hash { get; set; } + public int Duration { get; set; } + public bool FromPlayer { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_CounterStrafe.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_CounterStrafe.cs index e29c52a6a..0b16cbd80 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_CounterStrafe.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_CounterStrafe.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_CounterStrafe : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 385; - - static string INetMessage.MessageName => "CCSUsrMsg_CounterStrafe"; - - static CCSUsrMsg_CounterStrafe ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_CounterStrafeImpl(handle, isManuallyAllocated); - - - public int PressToReleaseNs { get; set; } + static int INetMessage.MessageId => 385; + static string INetMessage.MessageName => "CCSUsrMsg_CounterStrafe"; - public int TotalKeysDown { get; set; } + static CCSUsrMsg_CounterStrafe ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_CounterStrafeImpl(handle, isManuallyAllocated); -} + public int PressToReleaseNs { get; set; } + public int TotalKeysDown { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_CurrentRoundOdds.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_CurrentRoundOdds.cs index 0a1515055..5e6277003 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_CurrentRoundOdds.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_CurrentRoundOdds.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_CurrentRoundOdds : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 380; - - static string INetMessage.MessageName => "CCSUsrMsg_CurrentRoundOdds"; - - static CCSUsrMsg_CurrentRoundOdds ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_CurrentRoundOddsImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 380; + static string INetMessage.MessageName => "CCSUsrMsg_CurrentRoundOdds"; - public int Odds { get; set; } + static CCSUsrMsg_CurrentRoundOdds ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_CurrentRoundOddsImpl(handle, isManuallyAllocated); -} + public int Odds { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_CurrentTimescale.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_CurrentTimescale.cs index 454414e5c..cfd3722c3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_CurrentTimescale.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_CurrentTimescale.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_CurrentTimescale : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 332; - - static string INetMessage.MessageName => "CCSUsrMsg_CurrentTimescale"; - - static CCSUsrMsg_CurrentTimescale ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_CurrentTimescaleImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 332; + static string INetMessage.MessageName => "CCSUsrMsg_CurrentTimescale"; - public float CurTimescale { get; set; } + static CCSUsrMsg_CurrentTimescale ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_CurrentTimescaleImpl(handle, isManuallyAllocated); -} + public float CurTimescale { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_Damage.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_Damage.cs index 2667952cd..81b23e3cb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_Damage.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_Damage.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_Damage : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 321; - - static string INetMessage.MessageName => "CCSUsrMsg_Damage"; - - static CCSUsrMsg_Damage ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_DamageImpl(handle, isManuallyAllocated); - - - public int Amount { get; set; } - - - public Vector InflictorWorldPos { get; set; } + static int INetMessage.MessageId => 321; + static string INetMessage.MessageName => "CCSUsrMsg_Damage"; - public int VictimEntindex { get; set; } + static CCSUsrMsg_Damage ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_DamageImpl(handle, isManuallyAllocated); -} + public int Amount { get; set; } + public Vector InflictorWorldPos { get; set; } + public int VictimEntindex { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_DamagePrediction.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_DamagePrediction.cs index 0293c00a0..34b406853 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_DamagePrediction.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_DamagePrediction.cs @@ -1,41 +1,23 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_DamagePrediction : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 386; - - static string INetMessage.MessageName => "CCSUsrMsg_DamagePrediction"; - - static CCSUsrMsg_DamagePrediction ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_DamagePredictionImpl(handle, isManuallyAllocated); - - - public int CommandNum { get; set; } - - - public int PelletIdx { get; set; } - - - public int VictimSlot { get; set; } - - - public int VictimStartingHealth { get; set; } - - - public int VictimDamage { get; set; } - - - public Vector ShootPos { get; set; } - - - public QAngle ShootDir { get; set; } + static int INetMessage.MessageId => 386; + static string INetMessage.MessageName => "CCSUsrMsg_DamagePrediction"; - public QAngle AimPunch { get; set; } + static CCSUsrMsg_DamagePrediction ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_DamagePredictionImpl(handle, isManuallyAllocated); -} + public int CommandNum { get; set; } + public int PelletIdx { get; set; } + public int VictimSlot { get; set; } + public int VictimStartingHealth { get; set; } + public int VictimDamage { get; set; } + public Vector ShootPos { get; set; } + public QAngle ShootDir { get; set; } + public QAngle AimPunch { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_DeepStats.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_DeepStats.cs index e63aab20a..97966f6e3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_DeepStats.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_DeepStats.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_DeepStats : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 381; - - static string INetMessage.MessageName => "CCSUsrMsg_DeepStats"; - - static CCSUsrMsg_DeepStats ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_DeepStatsImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 381; + static string INetMessage.MessageName => "CCSUsrMsg_DeepStats"; - public CMsgGCCStrike15_ClientDeepStats Stats { get; } + static CCSUsrMsg_DeepStats ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_DeepStatsImpl(handle, isManuallyAllocated); -} + public CMsgGCCStrike15_ClientDeepStats Stats { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_DesiredTimescale.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_DesiredTimescale.cs index 7088a007e..443b0d50a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_DesiredTimescale.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_DesiredTimescale.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_DesiredTimescale : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 331; - - static string INetMessage.MessageName => "CCSUsrMsg_DesiredTimescale"; - - static CCSUsrMsg_DesiredTimescale ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_DesiredTimescaleImpl(handle, isManuallyAllocated); - - - public float DesiredTimescale { get; set; } - - - public float DurationRealtimeSec { get; set; } - - - public int InterpolatorType { get; set; } + static int INetMessage.MessageId => 331; + static string INetMessage.MessageName => "CCSUsrMsg_DesiredTimescale"; - public float StartBlendTime { get; set; } + static CCSUsrMsg_DesiredTimescale ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_DesiredTimescaleImpl(handle, isManuallyAllocated); -} + public float DesiredTimescale { get; set; } + public float DurationRealtimeSec { get; set; } + public int InterpolatorType { get; set; } + public float StartBlendTime { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_DisconnectToLobby.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_DisconnectToLobby.cs index fee7ec0f2..badd6c301 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_DisconnectToLobby.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_DisconnectToLobby.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_DisconnectToLobby : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 335; - - static string INetMessage.MessageName => "CCSUsrMsg_DisconnectToLobby"; - - static CCSUsrMsg_DisconnectToLobby ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_DisconnectToLobbyImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 335; + static string INetMessage.MessageName => "CCSUsrMsg_DisconnectToLobby"; - public int Dummy { get; set; } + static CCSUsrMsg_DisconnectToLobby ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_DisconnectToLobbyImpl(handle, isManuallyAllocated); -} + public int Dummy { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_EndOfMatchAllPlayersData.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_EndOfMatchAllPlayersData.cs index d68ade09d..1e525a142 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_EndOfMatchAllPlayersData.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_EndOfMatchAllPlayersData.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_EndOfMatchAllPlayersData : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 375; - - static string INetMessage.MessageName => "CCSUsrMsg_EndOfMatchAllPlayersData"; - - static CCSUsrMsg_EndOfMatchAllPlayersData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_EndOfMatchAllPlayersDataImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType Allplayerdata { get; } + static int INetMessage.MessageId => 375; + static string INetMessage.MessageName => "CCSUsrMsg_EndOfMatchAllPlayersData"; - public int Scene { get; set; } + static CCSUsrMsg_EndOfMatchAllPlayersData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_EndOfMatchAllPlayersDataImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType Allplayerdata { get; } + public int Scene { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_EndOfMatchAllPlayersData_Accolade.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_EndOfMatchAllPlayersData_Accolade.cs index 5ec5f33c3..2d6451bdf 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_EndOfMatchAllPlayersData_Accolade.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_EndOfMatchAllPlayersData_Accolade.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CCSUsrMsg_EndOfMatchAllPlayersData_Accolade : ITypedProtobuf { - static CCSUsrMsg_EndOfMatchAllPlayersData_Accolade ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_EndOfMatchAllPlayersData_AccoladeImpl(handle, isManuallyAllocated); - - - public int Eaccolade { get; set; } - - - public float Value { get; set; } - - - public int Position { get; set; } + static CCSUsrMsg_EndOfMatchAllPlayersData_Accolade ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_EndOfMatchAllPlayersData_AccoladeImpl(handle, isManuallyAllocated); -} + public int Eaccolade { get; set; } + public float Value { get; set; } + public int Position { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_EndOfMatchAllPlayersData_PlayerData.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_EndOfMatchAllPlayersData_PlayerData.cs index 689715a9c..a04dfe8b7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_EndOfMatchAllPlayersData_PlayerData.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_EndOfMatchAllPlayersData_PlayerData.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,30 +6,14 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CCSUsrMsg_EndOfMatchAllPlayersData_PlayerData : ITypedProtobuf { - static CCSUsrMsg_EndOfMatchAllPlayersData_PlayerData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_EndOfMatchAllPlayersData_PlayerDataImpl(handle, isManuallyAllocated); - - - public int Slot { get; set; } - - - public ulong Xuid { get; set; } - - - public string Name { get; set; } - - - public int Teamnumber { get; set; } - - - public CCSUsrMsg_EndOfMatchAllPlayersData_Accolade Nomination { get; } - - - public IProtobufRepeatedFieldSubMessageType Items { get; } - - - public int Playercolor { get; set; } - - - public bool Isbot { get; set; } - -} + static CCSUsrMsg_EndOfMatchAllPlayersData_PlayerData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_EndOfMatchAllPlayersData_PlayerDataImpl(handle, isManuallyAllocated); + + public int Slot { get; set; } + public ulong Xuid { get; set; } + public string Name { get; set; } + public int Teamnumber { get; set; } + public CCSUsrMsg_EndOfMatchAllPlayersData_Accolade Nomination { get; } + public IProtobufRepeatedFieldSubMessageType Items { get; } + public int Playercolor { get; set; } + public bool Isbot { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_EntityOutlineHighlight.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_EntityOutlineHighlight.cs index 94eb547af..7cdc3f6d4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_EntityOutlineHighlight.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_EntityOutlineHighlight.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_EntityOutlineHighlight : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 371; - - static string INetMessage.MessageName => "CCSUsrMsg_EntityOutlineHighlight"; - - static CCSUsrMsg_EntityOutlineHighlight ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_EntityOutlineHighlightImpl(handle, isManuallyAllocated); - - - public int Entidx { get; set; } + static int INetMessage.MessageId => 371; + static string INetMessage.MessageName => "CCSUsrMsg_EntityOutlineHighlight"; - public bool Removehighlight { get; set; } + static CCSUsrMsg_EntityOutlineHighlight ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_EntityOutlineHighlightImpl(handle, isManuallyAllocated); -} + public int Entidx { get; set; } + public bool Removehighlight { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_Fade.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_Fade.cs index 56aeb7dbb..e9aa80f86 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_Fade.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_Fade.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_Fade : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 313; - - static string INetMessage.MessageName => "CCSUsrMsg_Fade"; - - static CCSUsrMsg_Fade ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_FadeImpl(handle, isManuallyAllocated); - - - public int Duration { get; set; } - - - public int HoldTime { get; set; } - - - public int Flags { get; set; } + static int INetMessage.MessageId => 313; + static string INetMessage.MessageName => "CCSUsrMsg_Fade"; - public Color Clr { get; set; } + static CCSUsrMsg_Fade ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_FadeImpl(handle, isManuallyAllocated); -} + public int Duration { get; set; } + public int HoldTime { get; set; } + public int Flags { get; set; } + public Color Clr { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_GameTitle.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_GameTitle.cs index 8bae3c927..871e97073 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_GameTitle.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_GameTitle.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_GameTitle : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 310; - - static string INetMessage.MessageName => "CCSUsrMsg_GameTitle"; - - static CCSUsrMsg_GameTitle ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_GameTitleImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 310; + static string INetMessage.MessageName => "CCSUsrMsg_GameTitle"; - public int Dummy { get; set; } + static CCSUsrMsg_GameTitle ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_GameTitleImpl(handle, isManuallyAllocated); -} + public int Dummy { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_Geiger.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_Geiger.cs index 9f362ee25..d71454fa3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_Geiger.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_Geiger.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_Geiger : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 302; - - static string INetMessage.MessageName => "CCSUsrMsg_Geiger"; - - static CCSUsrMsg_Geiger ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_GeigerImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 302; + static string INetMessage.MessageName => "CCSUsrMsg_Geiger"; - public int Range { get; set; } + static CCSUsrMsg_Geiger ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_GeigerImpl(handle, isManuallyAllocated); -} + public int Range { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_HintText.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_HintText.cs index 580ea451a..d4ce38999 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_HintText.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_HintText.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_HintText : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 323; - - static string INetMessage.MessageName => "CCSUsrMsg_HintText"; - - static CCSUsrMsg_HintText ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_HintTextImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 323; + static string INetMessage.MessageName => "CCSUsrMsg_HintText"; - public string Message { get; set; } + static CCSUsrMsg_HintText ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_HintTextImpl(handle, isManuallyAllocated); -} + public string Message { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_HudMsg.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_HudMsg.cs index 7d9630f3e..a190aca1b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_HudMsg.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_HudMsg.cs @@ -1,47 +1,25 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_HudMsg : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 308; - - static string INetMessage.MessageName => "CCSUsrMsg_HudMsg"; - - static CCSUsrMsg_HudMsg ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_HudMsgImpl(handle, isManuallyAllocated); - - - public int Channel { get; set; } - - - public Vector2D Pos { get; set; } - - - public Color Clr1 { get; set; } - - - public Color Clr2 { get; set; } - - - public int Effect { get; set; } - - - public float FadeInTime { get; set; } - - - public float FadeOutTime { get; set; } - - - public float HoldTime { get; set; } - - - public float FxTime { get; set; } - - - public string Text { get; set; } - -} + static int INetMessage.MessageId => 308; + + static string INetMessage.MessageName => "CCSUsrMsg_HudMsg"; + + static CCSUsrMsg_HudMsg ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_HudMsgImpl(handle, isManuallyAllocated); + + public int Channel { get; set; } + public Vector2D Pos { get; set; } + public Color Clr1 { get; set; } + public Color Clr2 { get; set; } + public int Effect { get; set; } + public float FadeInTime { get; set; } + public float FadeOutTime { get; set; } + public float HoldTime { get; set; } + public float FxTime { get; set; } + public string Text { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_HudText.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_HudText.cs index a49bc11d2..befe601b6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_HudText.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_HudText.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_HudText : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 304; - - static string INetMessage.MessageName => "CCSUsrMsg_HudText"; - - static CCSUsrMsg_HudText ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_HudTextImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 304; + static string INetMessage.MessageName => "CCSUsrMsg_HudText"; - public string Text { get; set; } + static CCSUsrMsg_HudText ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_HudTextImpl(handle, isManuallyAllocated); -} + public string Text { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ItemDrop.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ItemDrop.cs index 05ba73ff7..fdfdb6515 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ItemDrop.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ItemDrop.cs @@ -1,23 +1,13 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; -public interface CCSUsrMsg_ItemDrop : ITypedProtobuf, INetMessage, IDisposable +public interface CCSUsrMsg_ItemDrop : ITypedProtobuf { - static int INetMessage.MessageId => 359; - - static string INetMessage.MessageName => "CCSUsrMsg_ItemDrop"; - - static CCSUsrMsg_ItemDrop ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ItemDropImpl(handle, isManuallyAllocated); - - - public long Itemid { get; set; } - - - public bool Death { get; set; } + static CCSUsrMsg_ItemDrop ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ItemDropImpl(handle, isManuallyAllocated); -} + public long Itemid { get; set; } + public bool Death { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ItemPickup.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ItemPickup.cs index eb4a16966..a37e31bc5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ItemPickup.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ItemPickup.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_ItemPickup : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 353; - - static string INetMessage.MessageName => "CCSUsrMsg_ItemPickup"; - - static CCSUsrMsg_ItemPickup ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ItemPickupImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 353; + static string INetMessage.MessageName => "CCSUsrMsg_ItemPickup"; - public string Item { get; set; } + static CCSUsrMsg_ItemPickup ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ItemPickupImpl(handle, isManuallyAllocated); -} + public string Item { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_KeyHintText.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_KeyHintText.cs index dae01a2ac..e478e6054 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_KeyHintText.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_KeyHintText.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_KeyHintText : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 324; - - static string INetMessage.MessageName => "CCSUsrMsg_KeyHintText"; - - static CCSUsrMsg_KeyHintText ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_KeyHintTextImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 324; + static string INetMessage.MessageName => "CCSUsrMsg_KeyHintText"; - public IProtobufRepeatedFieldValueType Messages { get; } + static CCSUsrMsg_KeyHintText ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_KeyHintTextImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldValueType Messages { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_KillCam.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_KillCam.cs index dab7811c0..56de8fe2c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_KillCam.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_KillCam.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_KillCam : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 330; - - static string INetMessage.MessageName => "CCSUsrMsg_KillCam"; - - static CCSUsrMsg_KillCam ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_KillCamImpl(handle, isManuallyAllocated); - - - public int ObsMode { get; set; } - - - public int FirstTarget { get; set; } + static int INetMessage.MessageId => 330; + static string INetMessage.MessageName => "CCSUsrMsg_KillCam"; - public int SecondTarget { get; set; } + static CCSUsrMsg_KillCam ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_KillCamImpl(handle, isManuallyAllocated); -} + public int ObsMode { get; set; } + public int FirstTarget { get; set; } + public int SecondTarget { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_MarkAchievement.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_MarkAchievement.cs index 20df3da43..02205a4fa 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_MarkAchievement.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_MarkAchievement.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_MarkAchievement : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 357; - - static string INetMessage.MessageName => "CCSUsrMsg_MarkAchievement"; - - static CCSUsrMsg_MarkAchievement ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_MarkAchievementImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 357; + static string INetMessage.MessageName => "CCSUsrMsg_MarkAchievement"; - public string Achievement { get; set; } + static CCSUsrMsg_MarkAchievement ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_MarkAchievementImpl(handle, isManuallyAllocated); -} + public string Achievement { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_MatchEndConditions.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_MatchEndConditions.cs index ec74ce38d..2f815649b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_MatchEndConditions.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_MatchEndConditions.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_MatchEndConditions : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 334; - - static string INetMessage.MessageName => "CCSUsrMsg_MatchEndConditions"; - - static CCSUsrMsg_MatchEndConditions ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_MatchEndConditionsImpl(handle, isManuallyAllocated); - - - public int Fraglimit { get; set; } - - - public int MpMaxrounds { get; set; } - - - public int MpWinlimit { get; set; } + static int INetMessage.MessageId => 334; + static string INetMessage.MessageName => "CCSUsrMsg_MatchEndConditions"; - public float MpTimelimit { get; set; } + static CCSUsrMsg_MatchEndConditions ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_MatchEndConditionsImpl(handle, isManuallyAllocated); -} + public int Fraglimit { get; set; } + public int MpMaxrounds { get; set; } + public int MpWinlimit { get; set; } + public float MpTimelimit { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_MatchStatsUpdate.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_MatchStatsUpdate.cs index d66edb87d..eeeff07d1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_MatchStatsUpdate.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_MatchStatsUpdate.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_MatchStatsUpdate : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 358; - - static string INetMessage.MessageName => "CCSUsrMsg_MatchStatsUpdate"; - - static CCSUsrMsg_MatchStatsUpdate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_MatchStatsUpdateImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 358; + static string INetMessage.MessageName => "CCSUsrMsg_MatchStatsUpdate"; - public string Update { get; set; } + static CCSUsrMsg_MatchStatsUpdate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_MatchStatsUpdateImpl(handle, isManuallyAllocated); -} + public string Update { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_PlayerDecalDigitalSignature.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_PlayerDecalDigitalSignature.cs index 671726637..43f35e493 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_PlayerDecalDigitalSignature.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_PlayerDecalDigitalSignature.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_PlayerDecalDigitalSignature : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 368; - - static string INetMessage.MessageName => "CCSUsrMsg_PlayerDecalDigitalSignature"; - - static CCSUsrMsg_PlayerDecalDigitalSignature ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_PlayerDecalDigitalSignatureImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 368; + static string INetMessage.MessageName => "CCSUsrMsg_PlayerDecalDigitalSignature"; - public PlayerDecalDigitalSignature Data { get; } + static CCSUsrMsg_PlayerDecalDigitalSignature ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_PlayerDecalDigitalSignatureImpl(handle, isManuallyAllocated); -} + public PlayerDecalDigitalSignature Data { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_PlayerStatsUpdate.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_PlayerStatsUpdate.cs index 30e6d9f55..51830e4ff 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_PlayerStatsUpdate.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_PlayerStatsUpdate.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_PlayerStatsUpdate : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 336; - - static string INetMessage.MessageName => "CCSUsrMsg_PlayerStatsUpdate"; - - static CCSUsrMsg_PlayerStatsUpdate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_PlayerStatsUpdateImpl(handle, isManuallyAllocated); - - - public int Version { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Stats { get; } - - - public uint Ehandle { get; set; } + static int INetMessage.MessageId => 336; + static string INetMessage.MessageName => "CCSUsrMsg_PlayerStatsUpdate"; - public int Crc { get; set; } + static CCSUsrMsg_PlayerStatsUpdate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_PlayerStatsUpdateImpl(handle, isManuallyAllocated); -} + public int Version { get; set; } + public IProtobufRepeatedFieldSubMessageType Stats { get; } + public uint Ehandle { get; set; } + public int Crc { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_PlayerStatsUpdate_Stat.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_PlayerStatsUpdate_Stat.cs index 429f76b43..30ac0db8e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_PlayerStatsUpdate_Stat.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_PlayerStatsUpdate_Stat.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CCSUsrMsg_PlayerStatsUpdate_Stat : ITypedProtobuf { - static CCSUsrMsg_PlayerStatsUpdate_Stat ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_PlayerStatsUpdate_StatImpl(handle, isManuallyAllocated); - - - public int Idx { get; set; } - - - public int Delta { get; set; } + static CCSUsrMsg_PlayerStatsUpdate_Stat ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_PlayerStatsUpdate_StatImpl(handle, isManuallyAllocated); -} + public int Idx { get; set; } + public int Delta { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_PostRoundDamageReport.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_PostRoundDamageReport.cs index 26dcd21ba..3108bbfba 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_PostRoundDamageReport.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_PostRoundDamageReport.cs @@ -1,38 +1,22 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_PostRoundDamageReport : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 376; - - static string INetMessage.MessageName => "CCSUsrMsg_PostRoundDamageReport"; - - static CCSUsrMsg_PostRoundDamageReport ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_PostRoundDamageReportImpl(handle, isManuallyAllocated); - - - public ulong OtherXuid { get; set; } - - - public int GivenKillType { get; set; } - - - public int GivenHealthRemoved { get; set; } - - - public int GivenNumHits { get; set; } - - - public int TakenKillType { get; set; } - - - public int TakenHealthRemoved { get; set; } + static int INetMessage.MessageId => 376; + static string INetMessage.MessageName => "CCSUsrMsg_PostRoundDamageReport"; - public int TakenNumHits { get; set; } + static CCSUsrMsg_PostRoundDamageReport ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_PostRoundDamageReportImpl(handle, isManuallyAllocated); -} + public ulong OtherXuid { get; set; } + public int GivenKillType { get; set; } + public int GivenHealthRemoved { get; set; } + public int GivenNumHits { get; set; } + public int TakenKillType { get; set; } + public int TakenHealthRemoved { get; set; } + public int TakenNumHits { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ProcessSpottedEntityUpdate.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ProcessSpottedEntityUpdate.cs index 91a0e6953..008981f24 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ProcessSpottedEntityUpdate.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ProcessSpottedEntityUpdate.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_ProcessSpottedEntityUpdate : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 325; - - static string INetMessage.MessageName => "CCSUsrMsg_ProcessSpottedEntityUpdate"; - - static CCSUsrMsg_ProcessSpottedEntityUpdate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ProcessSpottedEntityUpdateImpl(handle, isManuallyAllocated); - - - public bool NewUpdate { get; set; } + static int INetMessage.MessageId => 325; + static string INetMessage.MessageName => "CCSUsrMsg_ProcessSpottedEntityUpdate"; - public IProtobufRepeatedFieldSubMessageType EntityUpdates { get; } + static CCSUsrMsg_ProcessSpottedEntityUpdate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ProcessSpottedEntityUpdateImpl(handle, isManuallyAllocated); -} + public bool NewUpdate { get; set; } + public IProtobufRepeatedFieldSubMessageType EntityUpdates { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ProcessSpottedEntityUpdate_SpottedEntityUpdate.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ProcessSpottedEntityUpdate_SpottedEntityUpdate.cs index b32887b47..a4b426005 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ProcessSpottedEntityUpdate_SpottedEntityUpdate.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ProcessSpottedEntityUpdate_SpottedEntityUpdate.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,33 +6,15 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CCSUsrMsg_ProcessSpottedEntityUpdate_SpottedEntityUpdate : ITypedProtobuf { - static CCSUsrMsg_ProcessSpottedEntityUpdate_SpottedEntityUpdate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ProcessSpottedEntityUpdate_SpottedEntityUpdateImpl(handle, isManuallyAllocated); - - - public int EntityIdx { get; set; } - - - public int ClassId { get; set; } - - - public int OriginX { get; set; } - - - public int OriginY { get; set; } - - - public int OriginZ { get; set; } - - - public int AngleY { get; set; } - - - public bool Defuser { get; set; } - - - public bool PlayerHasDefuser { get; set; } - - - public bool PlayerHasC4 { get; set; } - -} + static CCSUsrMsg_ProcessSpottedEntityUpdate_SpottedEntityUpdate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ProcessSpottedEntityUpdate_SpottedEntityUpdateImpl(handle, isManuallyAllocated); + + public int EntityIdx { get; set; } + public int ClassId { get; set; } + public int OriginX { get; set; } + public int OriginY { get; set; } + public int OriginZ { get; set; } + public int AngleY { get; set; } + public bool Defuser { get; set; } + public bool PlayerHasDefuser { get; set; } + public bool PlayerHasC4 { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_QuestProgress.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_QuestProgress.cs index 80f2dc85e..2529bf2e1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_QuestProgress.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_QuestProgress.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_QuestProgress : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 366; - - static string INetMessage.MessageName => "CCSUsrMsg_QuestProgress"; - - static CCSUsrMsg_QuestProgress ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_QuestProgressImpl(handle, isManuallyAllocated); - - - public uint QuestId { get; set; } - - - public uint NormalPoints { get; set; } - - - public uint BonusPoints { get; set; } + static int INetMessage.MessageId => 366; + static string INetMessage.MessageName => "CCSUsrMsg_QuestProgress"; - public bool IsEventQuest { get; set; } + static CCSUsrMsg_QuestProgress ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_QuestProgressImpl(handle, isManuallyAllocated); -} + public uint QuestId { get; set; } + public uint NormalPoints { get; set; } + public uint BonusPoints { get; set; } + public bool IsEventQuest { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RadioText.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RadioText.cs index 4b1529d76..8bbf3896c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RadioText.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RadioText.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_RadioText : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 322; - - static string INetMessage.MessageName => "CCSUsrMsg_RadioText"; - - static CCSUsrMsg_RadioText ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_RadioTextImpl(handle, isManuallyAllocated); - - - public int MsgDst { get; set; } - - - public int Client { get; set; } - - - public string MsgName { get; set; } + static int INetMessage.MessageId => 322; + static string INetMessage.MessageName => "CCSUsrMsg_RadioText"; - public IProtobufRepeatedFieldValueType Params { get; } + static CCSUsrMsg_RadioText ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_RadioTextImpl(handle, isManuallyAllocated); -} + public int MsgDst { get; set; } + public int Client { get; set; } + public string MsgName { get; set; } + public IProtobufRepeatedFieldValueType Params { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RawAudio.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RawAudio.cs index f48631b0c..7692c0455 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RawAudio.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RawAudio.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_RawAudio : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 318; - - static string INetMessage.MessageName => "CCSUsrMsg_RawAudio"; - - static CCSUsrMsg_RawAudio ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_RawAudioImpl(handle, isManuallyAllocated); - - - public int Pitch { get; set; } - - - public int Entidx { get; set; } - - - public float Duration { get; set; } + static int INetMessage.MessageId => 318; + static string INetMessage.MessageName => "CCSUsrMsg_RawAudio"; - public string VoiceFilename { get; set; } + static CCSUsrMsg_RawAudio ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_RawAudioImpl(handle, isManuallyAllocated); -} + public int Pitch { get; set; } + public int Entidx { get; set; } + public float Duration { get; set; } + public string VoiceFilename { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RecurringMissionSchema.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RecurringMissionSchema.cs index 2e304984e..df46be2d1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RecurringMissionSchema.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RecurringMissionSchema.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_RecurringMissionSchema : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 387; - - static string INetMessage.MessageName => "CCSUsrMsg_RecurringMissionSchema"; - - static CCSUsrMsg_RecurringMissionSchema ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_RecurringMissionSchemaImpl(handle, isManuallyAllocated); - - - public uint Period { get; set; } + static int INetMessage.MessageId => 387; + static string INetMessage.MessageName => "CCSUsrMsg_RecurringMissionSchema"; - public byte[] MissionSchema { get; set; } + static CCSUsrMsg_RecurringMissionSchema ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_RecurringMissionSchemaImpl(handle, isManuallyAllocated); -} + public uint Period { get; set; } + public byte[] MissionSchema { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ReloadEffect.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ReloadEffect.cs index c9d90f232..3e1db21a5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ReloadEffect.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ReloadEffect.cs @@ -1,32 +1,20 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_ReloadEffect : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 326; - - static string INetMessage.MessageName => "CCSUsrMsg_ReloadEffect"; - - static CCSUsrMsg_ReloadEffect ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ReloadEffectImpl(handle, isManuallyAllocated); - - - public int Entidx { get; set; } - - - public int Actanim { get; set; } - - - public float OriginX { get; set; } - - - public float OriginY { get; set; } + static int INetMessage.MessageId => 326; + static string INetMessage.MessageName => "CCSUsrMsg_ReloadEffect"; - public float OriginZ { get; set; } + static CCSUsrMsg_ReloadEffect ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ReloadEffectImpl(handle, isManuallyAllocated); -} + public int Entidx { get; set; } + public int Actanim { get; set; } + public float OriginX { get; set; } + public float OriginY { get; set; } + public float OriginZ { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ReportHit.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ReportHit.cs index 250f0e250..d7b4176bb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ReportHit.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ReportHit.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_ReportHit : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 364; - - static string INetMessage.MessageName => "CCSUsrMsg_ReportHit"; - - static CCSUsrMsg_ReportHit ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ReportHitImpl(handle, isManuallyAllocated); - - - public float PosX { get; set; } - - - public float PosY { get; set; } - - - public float Timestamp { get; set; } + static int INetMessage.MessageId => 364; + static string INetMessage.MessageName => "CCSUsrMsg_ReportHit"; - public float PosZ { get; set; } + static CCSUsrMsg_ReportHit ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ReportHitImpl(handle, isManuallyAllocated); -} + public float PosX { get; set; } + public float PosY { get; set; } + public float Timestamp { get; set; } + public float PosZ { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RequestState.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RequestState.cs index f46b27241..762ab00dd 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RequestState.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RequestState.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_RequestState : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 320; - - static string INetMessage.MessageName => "CCSUsrMsg_RequestState"; - - static CCSUsrMsg_RequestState ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_RequestStateImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 320; + static string INetMessage.MessageName => "CCSUsrMsg_RequestState"; - public int Dummy { get; set; } + static CCSUsrMsg_RequestState ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_RequestStateImpl(handle, isManuallyAllocated); -} + public int Dummy { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ResetHud.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ResetHud.cs index 0913d892d..db0d8b706 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ResetHud.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ResetHud.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_ResetHud : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 309; - - static string INetMessage.MessageName => "CCSUsrMsg_ResetHud"; - - static CCSUsrMsg_ResetHud ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ResetHudImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 309; + static string INetMessage.MessageName => "CCSUsrMsg_ResetHud"; - public bool Reset { get; set; } + static CCSUsrMsg_ResetHud ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ResetHudImpl(handle, isManuallyAllocated); -} + public bool Reset { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RoundBackupFilenames.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RoundBackupFilenames.cs index 2f8798f80..f65a7b3cf 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RoundBackupFilenames.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RoundBackupFilenames.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_RoundBackupFilenames : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 362; - - static string INetMessage.MessageName => "CCSUsrMsg_RoundBackupFilenames"; - - static CCSUsrMsg_RoundBackupFilenames ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_RoundBackupFilenamesImpl(handle, isManuallyAllocated); - - - public int Count { get; set; } - - - public int Index { get; set; } - - - public string Filename { get; set; } + static int INetMessage.MessageId => 362; + static string INetMessage.MessageName => "CCSUsrMsg_RoundBackupFilenames"; - public string Nicename { get; set; } + static CCSUsrMsg_RoundBackupFilenames ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_RoundBackupFilenamesImpl(handle, isManuallyAllocated); -} + public int Count { get; set; } + public int Index { get; set; } + public string Filename { get; set; } + public string Nicename { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RoundEndReportData.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RoundEndReportData.cs index 4667c45fc..b61ca1510 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RoundEndReportData.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RoundEndReportData.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_RoundEndReportData : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 379; - - static string INetMessage.MessageName => "CCSUsrMsg_RoundEndReportData"; - - static CCSUsrMsg_RoundEndReportData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_RoundEndReportDataImpl(handle, isManuallyAllocated); - - - public CCSUsrMsg_RoundEndReportData_InitialConditions InitConditions { get; } + static int INetMessage.MessageId => 379; + static string INetMessage.MessageName => "CCSUsrMsg_RoundEndReportData"; - public IProtobufRepeatedFieldSubMessageType AllRerEventData { get; } + static CCSUsrMsg_RoundEndReportData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_RoundEndReportDataImpl(handle, isManuallyAllocated); -} + public CCSUsrMsg_RoundEndReportData_InitialConditions InitConditions { get; } + public IProtobufRepeatedFieldSubMessageType AllRerEventData { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RoundEndReportData_InitialConditions.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RoundEndReportData_InitialConditions.cs index 57f9f4514..65bc80d6c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RoundEndReportData_InitialConditions.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RoundEndReportData_InitialConditions.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CCSUsrMsg_RoundEndReportData_InitialConditions : ITypedProtobuf { - static CCSUsrMsg_RoundEndReportData_InitialConditions ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_RoundEndReportData_InitialConditionsImpl(handle, isManuallyAllocated); - - - public int CtEquipValue { get; set; } - - - public int TEquipValue { get; set; } - - - public int TerroristOdds { get; set; } + static CCSUsrMsg_RoundEndReportData_InitialConditions ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_RoundEndReportData_InitialConditionsImpl(handle, isManuallyAllocated); -} + public int CtEquipValue { get; set; } + public int TEquipValue { get; set; } + public int TerroristOdds { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RoundEndReportData_RerEvent.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RoundEndReportData_RerEvent.cs index 86593fdef..807357154 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RoundEndReportData_RerEvent.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RoundEndReportData_RerEvent.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,27 +6,13 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CCSUsrMsg_RoundEndReportData_RerEvent : ITypedProtobuf { - static CCSUsrMsg_RoundEndReportData_RerEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_RoundEndReportData_RerEventImpl(handle, isManuallyAllocated); - - - public float Timestamp { get; set; } - - - public int TerroristOdds { get; set; } - - - public int CtAlive { get; set; } - - - public int TAlive { get; set; } - - - public CCSUsrMsg_RoundEndReportData_RerEvent_Victim VictimData { get; } - - - public CCSUsrMsg_RoundEndReportData_RerEvent_Objective ObjectiveData { get; } - - - public IProtobufRepeatedFieldSubMessageType AllDamageData { get; } - -} + static CCSUsrMsg_RoundEndReportData_RerEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_RoundEndReportData_RerEventImpl(handle, isManuallyAllocated); + + public float Timestamp { get; set; } + public int TerroristOdds { get; set; } + public int CtAlive { get; set; } + public int TAlive { get; set; } + public CCSUsrMsg_RoundEndReportData_RerEvent_Victim VictimData { get; } + public CCSUsrMsg_RoundEndReportData_RerEvent_Objective ObjectiveData { get; } + public IProtobufRepeatedFieldSubMessageType AllDamageData { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RoundEndReportData_RerEvent_Damage.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RoundEndReportData_RerEvent_Damage.cs index 4c966b0b9..3b175752f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RoundEndReportData_RerEvent_Damage.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RoundEndReportData_RerEvent_Damage.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,24 +6,12 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CCSUsrMsg_RoundEndReportData_RerEvent_Damage : ITypedProtobuf { - static CCSUsrMsg_RoundEndReportData_RerEvent_Damage ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_RoundEndReportData_RerEvent_DamageImpl(handle, isManuallyAllocated); - - - public int OtherPlayerslot { get; set; } - - - public ulong OtherXuid { get; set; } - - - public int HealthRemoved { get; set; } - - - public int NumHits { get; set; } - - - public int ReturnHealthRemoved { get; set; } - - - public int ReturnNumHits { get; set; } - -} + static CCSUsrMsg_RoundEndReportData_RerEvent_Damage ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_RoundEndReportData_RerEvent_DamageImpl(handle, isManuallyAllocated); + + public int OtherPlayerslot { get; set; } + public ulong OtherXuid { get; set; } + public int HealthRemoved { get; set; } + public int NumHits { get; set; } + public int ReturnHealthRemoved { get; set; } + public int ReturnNumHits { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RoundEndReportData_RerEvent_Objective.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RoundEndReportData_RerEvent_Objective.cs index 3e07e0344..e1f98e04a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RoundEndReportData_RerEvent_Objective.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RoundEndReportData_RerEvent_Objective.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CCSUsrMsg_RoundEndReportData_RerEvent_Objective : ITypedProtobuf { - static CCSUsrMsg_RoundEndReportData_RerEvent_Objective ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_RoundEndReportData_RerEvent_ObjectiveImpl(handle, isManuallyAllocated); - - - public int Type { get; set; } + static CCSUsrMsg_RoundEndReportData_RerEvent_Objective ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_RoundEndReportData_RerEvent_ObjectiveImpl(handle, isManuallyAllocated); -} + public int Type { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RoundEndReportData_RerEvent_Victim.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RoundEndReportData_RerEvent_Victim.cs index 9004455c9..23f1f3a7c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RoundEndReportData_RerEvent_Victim.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_RoundEndReportData_RerEvent_Victim.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,24 +6,12 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CCSUsrMsg_RoundEndReportData_RerEvent_Victim : ITypedProtobuf { - static CCSUsrMsg_RoundEndReportData_RerEvent_Victim ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_RoundEndReportData_RerEvent_VictimImpl(handle, isManuallyAllocated); - - - public int TeamNumber { get; set; } - - - public int Playerslot { get; set; } - - - public ulong Xuid { get; set; } - - - public int Color { get; set; } - - - public bool IsBot { get; set; } - - - public bool IsDead { get; set; } - -} + static CCSUsrMsg_RoundEndReportData_RerEvent_Victim ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_RoundEndReportData_RerEvent_VictimImpl(handle, isManuallyAllocated); + + public int TeamNumber { get; set; } + public int Playerslot { get; set; } + public ulong Xuid { get; set; } + public int Color { get; set; } + public bool IsBot { get; set; } + public bool IsDead { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_Rumble.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_Rumble.cs index f142b9bb1..98edcfcb1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_Rumble.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_Rumble.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_Rumble : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 314; - - static string INetMessage.MessageName => "CCSUsrMsg_Rumble"; - - static CCSUsrMsg_Rumble ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_RumbleImpl(handle, isManuallyAllocated); - - - public int Index { get; set; } - - - public int Data { get; set; } + static int INetMessage.MessageId => 314; + static string INetMessage.MessageName => "CCSUsrMsg_Rumble"; - public int Flags { get; set; } + static CCSUsrMsg_Rumble ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_RumbleImpl(handle, isManuallyAllocated); -} + public int Index { get; set; } + public int Data { get; set; } + public int Flags { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SSUI.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SSUI.cs index ea5c7f81c..db84058d2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SSUI.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SSUI.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_SSUI : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 372; - - static string INetMessage.MessageName => "CCSUsrMsg_SSUI"; - - static CCSUsrMsg_SSUI ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_SSUIImpl(handle, isManuallyAllocated); - - - public bool Show { get; set; } - - - public float StartTime { get; set; } + static int INetMessage.MessageId => 372; + static string INetMessage.MessageName => "CCSUsrMsg_SSUI"; - public float EndTime { get; set; } + static CCSUsrMsg_SSUI ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_SSUIImpl(handle, isManuallyAllocated); -} + public bool Show { get; set; } + public float StartTime { get; set; } + public float EndTime { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ScoreLeaderboardData.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ScoreLeaderboardData.cs index 18e7ef36a..0f56f284c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ScoreLeaderboardData.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ScoreLeaderboardData.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_ScoreLeaderboardData : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 367; - - static string INetMessage.MessageName => "CCSUsrMsg_ScoreLeaderboardData"; - - static CCSUsrMsg_ScoreLeaderboardData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ScoreLeaderboardDataImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 367; + static string INetMessage.MessageName => "CCSUsrMsg_ScoreLeaderboardData"; - public ScoreLeaderboardData Data { get; } + static CCSUsrMsg_ScoreLeaderboardData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ScoreLeaderboardDataImpl(handle, isManuallyAllocated); -} + public ScoreLeaderboardData Data { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SendAudio.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SendAudio.cs index fece7f53b..645d579f0 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SendAudio.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SendAudio.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_SendAudio : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 317; - - static string INetMessage.MessageName => "CCSUsrMsg_SendAudio"; - - static CCSUsrMsg_SendAudio ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_SendAudioImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 317; + static string INetMessage.MessageName => "CCSUsrMsg_SendAudio"; - public string RadioSound { get; set; } + static CCSUsrMsg_SendAudio ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_SendAudioImpl(handle, isManuallyAllocated); -} + public string RadioSound { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SendLastKillerDamageToClient.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SendLastKillerDamageToClient.cs index 54728e1c1..e68b648d9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SendLastKillerDamageToClient.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SendLastKillerDamageToClient.cs @@ -1,35 +1,21 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_SendLastKillerDamageToClient : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 351; - - static string INetMessage.MessageName => "CCSUsrMsg_SendLastKillerDamageToClient"; - - static CCSUsrMsg_SendLastKillerDamageToClient ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_SendLastKillerDamageToClientImpl(handle, isManuallyAllocated); - - - public int NumHitsGiven { get; set; } - - - public int DamageGiven { get; set; } - - - public int NumHitsTaken { get; set; } - - - public int DamageTaken { get; set; } - - - public int ActualDamageGiven { get; set; } + static int INetMessage.MessageId => 351; + static string INetMessage.MessageName => "CCSUsrMsg_SendLastKillerDamageToClient"; - public int ActualDamageTaken { get; set; } + static CCSUsrMsg_SendLastKillerDamageToClient ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_SendLastKillerDamageToClientImpl(handle, isManuallyAllocated); -} + public int NumHitsGiven { get; set; } + public int DamageGiven { get; set; } + public int NumHitsTaken { get; set; } + public int DamageTaken { get; set; } + public int ActualDamageGiven { get; set; } + public int ActualDamageTaken { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SendPlayerItemDrops.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SendPlayerItemDrops.cs index dba68e72c..cd1b1a5b2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SendPlayerItemDrops.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SendPlayerItemDrops.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_SendPlayerItemDrops : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 361; - - static string INetMessage.MessageName => "CCSUsrMsg_SendPlayerItemDrops"; - - static CCSUsrMsg_SendPlayerItemDrops ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_SendPlayerItemDropsImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 361; + static string INetMessage.MessageName => "CCSUsrMsg_SendPlayerItemDrops"; - public IProtobufRepeatedFieldSubMessageType EntityUpdates { get; } + static CCSUsrMsg_SendPlayerItemDrops ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_SendPlayerItemDropsImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType EntityUpdates { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SendPlayerItemFound.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SendPlayerItemFound.cs index a93293748..04d6bd39a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SendPlayerItemFound.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SendPlayerItemFound.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_SendPlayerItemFound : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 363; - - static string INetMessage.MessageName => "CCSUsrMsg_SendPlayerItemFound"; - - static CCSUsrMsg_SendPlayerItemFound ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_SendPlayerItemFoundImpl(handle, isManuallyAllocated); - - - public CEconItemPreviewDataBlock Iteminfo { get; } + static int INetMessage.MessageId => 363; + static string INetMessage.MessageName => "CCSUsrMsg_SendPlayerItemFound"; - public int Playerslot { get; set; } + static CCSUsrMsg_SendPlayerItemFound ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_SendPlayerItemFoundImpl(handle, isManuallyAllocated); -} + public CEconItemPreviewDataBlock Iteminfo { get; } + public int Playerslot { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SendPlayerLoadout.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SendPlayerLoadout.cs index 45a1418db..f6c1e147b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SendPlayerLoadout.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SendPlayerLoadout.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_SendPlayerLoadout : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 388; - - static string INetMessage.MessageName => "CCSUsrMsg_SendPlayerLoadout"; - - static CCSUsrMsg_SendPlayerLoadout ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_SendPlayerLoadoutImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType Loadout { get; } + static int INetMessage.MessageId => 388; + static string INetMessage.MessageName => "CCSUsrMsg_SendPlayerLoadout"; - public int Playerslot { get; set; } + static CCSUsrMsg_SendPlayerLoadout ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_SendPlayerLoadoutImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType Loadout { get; } + public int Playerslot { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SendPlayerLoadout_LoadoutItem.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SendPlayerLoadout_LoadoutItem.cs index d3e0e867a..d7ef92180 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SendPlayerLoadout_LoadoutItem.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SendPlayerLoadout_LoadoutItem.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CCSUsrMsg_SendPlayerLoadout_LoadoutItem : ITypedProtobuf { - static CCSUsrMsg_SendPlayerLoadout_LoadoutItem ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_SendPlayerLoadout_LoadoutItemImpl(handle, isManuallyAllocated); - - - public CEconItemPreviewDataBlock EconItem { get; } - - - public int Team { get; set; } - - - public int Slot { get; set; } + static CCSUsrMsg_SendPlayerLoadout_LoadoutItem ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_SendPlayerLoadout_LoadoutItemImpl(handle, isManuallyAllocated); -} + public CEconItemPreviewDataBlock EconItem { get; } + public int Team { get; set; } + public int Slot { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ServerRankRevealAll.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ServerRankRevealAll.cs index 4ecf90542..24c32d7e6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ServerRankRevealAll.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ServerRankRevealAll.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_ServerRankRevealAll : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 350; - - static string INetMessage.MessageName => "CCSUsrMsg_ServerRankRevealAll"; - - static CCSUsrMsg_ServerRankRevealAll ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ServerRankRevealAllImpl(handle, isManuallyAllocated); - - - public int SecondsTillShutdown { get; set; } + static int INetMessage.MessageId => 350; + static string INetMessage.MessageName => "CCSUsrMsg_ServerRankRevealAll"; - public CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve Reservation { get; } + static CCSUsrMsg_ServerRankRevealAll ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ServerRankRevealAllImpl(handle, isManuallyAllocated); -} + public int SecondsTillShutdown { get; set; } + public CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve Reservation { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ServerRankUpdate.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ServerRankUpdate.cs index 920f9922e..4271f03c2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ServerRankUpdate.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ServerRankUpdate.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_ServerRankUpdate : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 352; - - static string INetMessage.MessageName => "CCSUsrMsg_ServerRankUpdate"; - - static CCSUsrMsg_ServerRankUpdate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ServerRankUpdateImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 352; + static string INetMessage.MessageName => "CCSUsrMsg_ServerRankUpdate"; - public IProtobufRepeatedFieldSubMessageType RankUpdate { get; } + static CCSUsrMsg_ServerRankUpdate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ServerRankUpdateImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType RankUpdate { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ServerRankUpdate_RankUpdate.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ServerRankUpdate_RankUpdate.cs index 354aebf69..ec2041dfb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ServerRankUpdate_RankUpdate.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ServerRankUpdate_RankUpdate.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,24 +6,12 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CCSUsrMsg_ServerRankUpdate_RankUpdate : ITypedProtobuf { - static CCSUsrMsg_ServerRankUpdate_RankUpdate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ServerRankUpdate_RankUpdateImpl(handle, isManuallyAllocated); - - - public int AccountId { get; set; } - - - public int RankOld { get; set; } - - - public int RankNew { get; set; } - - - public int NumWins { get; set; } - - - public float RankChange { get; set; } - - - public int RankTypeId { get; set; } - -} + static CCSUsrMsg_ServerRankUpdate_RankUpdate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ServerRankUpdate_RankUpdateImpl(handle, isManuallyAllocated); + + public int AccountId { get; set; } + public int RankOld { get; set; } + public int RankNew { get; set; } + public int NumWins { get; set; } + public float RankChange { get; set; } + public int RankTypeId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_Shake.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_Shake.cs index 4e0630caa..b65ffde84 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_Shake.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_Shake.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_Shake : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 312; - - static string INetMessage.MessageName => "CCSUsrMsg_Shake"; - - static CCSUsrMsg_Shake ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ShakeImpl(handle, isManuallyAllocated); - - - public int Command { get; set; } - - - public float LocalAmplitude { get; set; } - - - public float Frequency { get; set; } + static int INetMessage.MessageId => 312; + static string INetMessage.MessageName => "CCSUsrMsg_Shake"; - public float Duration { get; set; } + static CCSUsrMsg_Shake ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ShakeImpl(handle, isManuallyAllocated); -} + public int Command { get; set; } + public float LocalAmplitude { get; set; } + public float Frequency { get; set; } + public float Duration { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ShootInfo.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ShootInfo.cs index fe271daad..1c614ee57 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ShootInfo.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ShootInfo.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_ShootInfo : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 383; - - static string INetMessage.MessageName => "CCSUsrMsg_ShootInfo"; - - static CCSUsrMsg_ShootInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ShootInfoImpl(handle, isManuallyAllocated); - - - public int FrameNumber { get; set; } - - - public IProtobufRepeatedFieldSubMessageType HitboxTransforms { get; } - - - public Vector ShootPos { get; set; } + static int INetMessage.MessageId => 383; + static string INetMessage.MessageName => "CCSUsrMsg_ShootInfo"; - public QAngle ShootDir { get; set; } + static CCSUsrMsg_ShootInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ShootInfoImpl(handle, isManuallyAllocated); -} + public int FrameNumber { get; set; } + public IProtobufRepeatedFieldSubMessageType HitboxTransforms { get; } + public Vector ShootPos { get; set; } + public QAngle ShootDir { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ShowMenu.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ShowMenu.cs index 52d9ab7a3..9e136b5a2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ShowMenu.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_ShowMenu.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_ShowMenu : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 354; - - static string INetMessage.MessageName => "CCSUsrMsg_ShowMenu"; - - static CCSUsrMsg_ShowMenu ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ShowMenuImpl(handle, isManuallyAllocated); - - - public int BitsValidSlots { get; set; } - - - public int DisplayTime { get; set; } + static int INetMessage.MessageId => 354; + static string INetMessage.MessageName => "CCSUsrMsg_ShowMenu"; - public string MenuString { get; set; } + static CCSUsrMsg_ShowMenu ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_ShowMenuImpl(handle, isManuallyAllocated); -} + public int BitsValidSlots { get; set; } + public int DisplayTime { get; set; } + public string MenuString { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_StopSpectatorMode.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_StopSpectatorMode.cs index 9ff0650cd..3e90a006d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_StopSpectatorMode.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_StopSpectatorMode.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_StopSpectatorMode : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 329; - - static string INetMessage.MessageName => "CCSUsrMsg_StopSpectatorMode"; - - static CCSUsrMsg_StopSpectatorMode ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_StopSpectatorModeImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 329; + static string INetMessage.MessageName => "CCSUsrMsg_StopSpectatorMode"; - public int Dummy { get; set; } + static CCSUsrMsg_StopSpectatorMode ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_StopSpectatorModeImpl(handle, isManuallyAllocated); -} + public int Dummy { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SurvivalStats.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SurvivalStats.cs index 35cd8b4c7..1fedf184f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SurvivalStats.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SurvivalStats.cs @@ -1,32 +1,20 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_SurvivalStats : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 373; - - static string INetMessage.MessageName => "CCSUsrMsg_SurvivalStats"; - - static CCSUsrMsg_SurvivalStats ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_SurvivalStatsImpl(handle, isManuallyAllocated); - - - public ulong Xuid { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Facts { get; } - - - public IProtobufRepeatedFieldSubMessageType Users { get; } - - - public IProtobufRepeatedFieldSubMessageType Damages { get; } + static int INetMessage.MessageId => 373; + static string INetMessage.MessageName => "CCSUsrMsg_SurvivalStats"; - public int Ticknumber { get; set; } + static CCSUsrMsg_SurvivalStats ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_SurvivalStatsImpl(handle, isManuallyAllocated); -} + public ulong Xuid { get; set; } + public IProtobufRepeatedFieldSubMessageType Facts { get; } + public IProtobufRepeatedFieldSubMessageType Users { get; } + public IProtobufRepeatedFieldSubMessageType Damages { get; } + public int Ticknumber { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SurvivalStats_Damage.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SurvivalStats_Damage.cs index 80902c784..6dea5b171 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SurvivalStats_Damage.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SurvivalStats_Damage.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,21 +6,11 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CCSUsrMsg_SurvivalStats_Damage : ITypedProtobuf { - static CCSUsrMsg_SurvivalStats_Damage ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_SurvivalStats_DamageImpl(handle, isManuallyAllocated); - - - public ulong Xuid { get; set; } - - - public int To { get; set; } - - - public int ToHits { get; set; } - - - public int From { get; set; } - - - public int FromHits { get; set; } - -} + static CCSUsrMsg_SurvivalStats_Damage ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_SurvivalStats_DamageImpl(handle, isManuallyAllocated); + + public ulong Xuid { get; set; } + public int To { get; set; } + public int ToHits { get; set; } + public int From { get; set; } + public int FromHits { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SurvivalStats_Fact.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SurvivalStats_Fact.cs index ad7cc10b6..07ffb7e73 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SurvivalStats_Fact.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SurvivalStats_Fact.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CCSUsrMsg_SurvivalStats_Fact : ITypedProtobuf { - static CCSUsrMsg_SurvivalStats_Fact ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_SurvivalStats_FactImpl(handle, isManuallyAllocated); - - - public int Type { get; set; } - - - public int Display { get; set; } - - - public int Value { get; set; } - - - public float Interestingness { get; set; } + static CCSUsrMsg_SurvivalStats_Fact ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_SurvivalStats_FactImpl(handle, isManuallyAllocated); -} + public int Type { get; set; } + public int Display { get; set; } + public int Value { get; set; } + public float Interestingness { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SurvivalStats_Placement.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SurvivalStats_Placement.cs index 849fbe917..b9957d45a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SurvivalStats_Placement.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_SurvivalStats_Placement.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CCSUsrMsg_SurvivalStats_Placement : ITypedProtobuf { - static CCSUsrMsg_SurvivalStats_Placement ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_SurvivalStats_PlacementImpl(handle, isManuallyAllocated); - - - public ulong Xuid { get; set; } - - - public int Teamnumber { get; set; } - - - public int Placement { get; set; } + static CCSUsrMsg_SurvivalStats_Placement ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_SurvivalStats_PlacementImpl(handle, isManuallyAllocated); -} + public ulong Xuid { get; set; } + public int Teamnumber { get; set; } + public int Placement { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_Train.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_Train.cs index 756890ebe..4f689d9e4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_Train.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_Train.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_Train : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 303; - - static string INetMessage.MessageName => "CCSUsrMsg_Train"; - - static CCSUsrMsg_Train ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_TrainImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 303; + static string INetMessage.MessageName => "CCSUsrMsg_Train"; - public int Train { get; set; } + static CCSUsrMsg_Train ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_TrainImpl(handle, isManuallyAllocated); -} + public int Train { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_UpdateScreenHealthBar.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_UpdateScreenHealthBar.cs index f205208f2..50eb87ca2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_UpdateScreenHealthBar.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_UpdateScreenHealthBar.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_UpdateScreenHealthBar : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 370; - - static string INetMessage.MessageName => "CCSUsrMsg_UpdateScreenHealthBar"; - - static CCSUsrMsg_UpdateScreenHealthBar ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_UpdateScreenHealthBarImpl(handle, isManuallyAllocated); - - - public int Entidx { get; set; } - - - public float HealthratioOld { get; set; } - - - public float HealthratioNew { get; set; } + static int INetMessage.MessageId => 370; + static string INetMessage.MessageName => "CCSUsrMsg_UpdateScreenHealthBar"; - public int Style { get; set; } + static CCSUsrMsg_UpdateScreenHealthBar ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_UpdateScreenHealthBarImpl(handle, isManuallyAllocated); -} + public int Entidx { get; set; } + public float HealthratioOld { get; set; } + public float HealthratioNew { get; set; } + public int Style { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VGUIMenu.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VGUIMenu.cs index b6a7fb153..76bdeaeb3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VGUIMenu.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VGUIMenu.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_VGUIMenu : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 301; - - static string INetMessage.MessageName => "CCSUsrMsg_VGUIMenu"; - - static CCSUsrMsg_VGUIMenu ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_VGUIMenuImpl(handle, isManuallyAllocated); - - - public string Name { get; set; } - - - public bool Show { get; set; } + static int INetMessage.MessageId => 301; + static string INetMessage.MessageName => "CCSUsrMsg_VGUIMenu"; - public IProtobufRepeatedFieldSubMessageType Keys { get; } + static CCSUsrMsg_VGUIMenu ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_VGUIMenuImpl(handle, isManuallyAllocated); -} + public string Name { get; set; } + public bool Show { get; set; } + public IProtobufRepeatedFieldSubMessageType Keys { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VGUIMenu_Keys.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VGUIMenu_Keys.cs index 45942ec94..f0784cb0d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VGUIMenu_Keys.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VGUIMenu_Keys.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CCSUsrMsg_VGUIMenu_Keys : ITypedProtobuf { - static CCSUsrMsg_VGUIMenu_Keys ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_VGUIMenu_KeysImpl(handle, isManuallyAllocated); - - - public string Name { get; set; } - - - public string Value { get; set; } + static CCSUsrMsg_VGUIMenu_Keys ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_VGUIMenu_KeysImpl(handle, isManuallyAllocated); -} + public string Name { get; set; } + public string Value { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VoiceMask.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VoiceMask.cs index 9ace7b857..5a023acfe 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VoiceMask.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VoiceMask.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_VoiceMask : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 319; - - static string INetMessage.MessageName => "CCSUsrMsg_VoiceMask"; - - static CCSUsrMsg_VoiceMask ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_VoiceMaskImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType PlayerMasks { get; } + static int INetMessage.MessageId => 319; + static string INetMessage.MessageName => "CCSUsrMsg_VoiceMask"; - public bool PlayerModEnable { get; set; } + static CCSUsrMsg_VoiceMask ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_VoiceMaskImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType PlayerMasks { get; } + public bool PlayerModEnable { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VoiceMask_PlayerMask.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VoiceMask_PlayerMask.cs index 0560779c3..bdc758002 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VoiceMask_PlayerMask.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VoiceMask_PlayerMask.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CCSUsrMsg_VoiceMask_PlayerMask : ITypedProtobuf { - static CCSUsrMsg_VoiceMask_PlayerMask ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_VoiceMask_PlayerMaskImpl(handle, isManuallyAllocated); - - - public int GameRulesMask { get; set; } - - - public int BanMasks { get; set; } + static CCSUsrMsg_VoiceMask_PlayerMask ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_VoiceMask_PlayerMaskImpl(handle, isManuallyAllocated); -} + public int GameRulesMask { get; set; } + public int BanMasks { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VoteFailed.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VoteFailed.cs index cab52356b..b172e4059 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VoteFailed.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VoteFailed.cs @@ -1,23 +1,13 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; -public interface CCSUsrMsg_VoteFailed : ITypedProtobuf, INetMessage, IDisposable +public interface CCSUsrMsg_VoteFailed : ITypedProtobuf { - static int INetMessage.MessageId => 348; - - static string INetMessage.MessageName => "CCSUsrMsg_VoteFailed"; - - static CCSUsrMsg_VoteFailed ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_VoteFailedImpl(handle, isManuallyAllocated); - - - public int Team { get; set; } - - - public int Reason { get; set; } + static CCSUsrMsg_VoteFailed ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_VoteFailedImpl(handle, isManuallyAllocated); -} + public int Team { get; set; } + public int Reason { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VotePass.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VotePass.cs index 156d05d2a..68b9918bc 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VotePass.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VotePass.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_VotePass : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 347; - - static string INetMessage.MessageName => "CCSUsrMsg_VotePass"; - - static CCSUsrMsg_VotePass ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_VotePassImpl(handle, isManuallyAllocated); - - - public int Team { get; set; } - - - public int VoteType { get; set; } - - - public string DispStr { get; set; } + static int INetMessage.MessageId => 347; + static string INetMessage.MessageName => "CCSUsrMsg_VotePass"; - public string DetailsStr { get; set; } + static CCSUsrMsg_VotePass ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_VotePassImpl(handle, isManuallyAllocated); -} + public int Team { get; set; } + public int VoteType { get; set; } + public string DispStr { get; set; } + public string DetailsStr { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VoteSetup.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VoteSetup.cs index 321ffe609..6510eefff 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VoteSetup.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VoteSetup.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_VoteSetup : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 349; - - static string INetMessage.MessageName => "CCSUsrMsg_VoteSetup"; - - static CCSUsrMsg_VoteSetup ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_VoteSetupImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 349; + static string INetMessage.MessageName => "CCSUsrMsg_VoteSetup"; - public IProtobufRepeatedFieldValueType PotentialIssues { get; } + static CCSUsrMsg_VoteSetup ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_VoteSetupImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldValueType PotentialIssues { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VoteStart.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VoteStart.cs index 240efd63c..83361bc92 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VoteStart.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_VoteStart.cs @@ -1,41 +1,23 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_VoteStart : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 346; - - static string INetMessage.MessageName => "CCSUsrMsg_VoteStart"; - - static CCSUsrMsg_VoteStart ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_VoteStartImpl(handle, isManuallyAllocated); - - - public int Team { get; set; } - - - public int PlayerSlot { get; set; } - - - public int VoteType { get; set; } - - - public string DispStr { get; set; } - - - public string DetailsStr { get; set; } - - - public string OtherTeamStr { get; set; } - - - public bool IsYesNoVote { get; set; } + static int INetMessage.MessageId => 346; + static string INetMessage.MessageName => "CCSUsrMsg_VoteStart"; - public int PlayerSlotTarget { get; set; } + static CCSUsrMsg_VoteStart ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_VoteStartImpl(handle, isManuallyAllocated); -} + public int Team { get; set; } + public int PlayerSlot { get; set; } + public int VoteType { get; set; } + public string DispStr { get; set; } + public string DetailsStr { get; set; } + public string OtherTeamStr { get; set; } + public bool IsYesNoVote { get; set; } + public int PlayerSlotTarget { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_WeaponSound.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_WeaponSound.cs index 904bcb208..4f345fd93 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_WeaponSound.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_WeaponSound.cs @@ -1,38 +1,22 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_WeaponSound : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 369; - - static string INetMessage.MessageName => "CCSUsrMsg_WeaponSound"; - - static CCSUsrMsg_WeaponSound ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_WeaponSoundImpl(handle, isManuallyAllocated); - - - public int Entidx { get; set; } - - - public float OriginX { get; set; } - - - public float OriginY { get; set; } - - - public float OriginZ { get; set; } - - - public string Sound { get; set; } - - - public float GameTimestamp { get; set; } + static int INetMessage.MessageId => 369; + static string INetMessage.MessageName => "CCSUsrMsg_WeaponSound"; - public uint SourceSoundscapeid { get; set; } + static CCSUsrMsg_WeaponSound ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_WeaponSoundImpl(handle, isManuallyAllocated); -} + public int Entidx { get; set; } + public float OriginX { get; set; } + public float OriginY { get; set; } + public float OriginZ { get; set; } + public string Sound { get; set; } + public float GameTimestamp { get; set; } + public uint SourceSoundscapeid { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_XRankGet.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_XRankGet.cs index 06880a972..dfb1afc0d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_XRankGet.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_XRankGet.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_XRankGet : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 340; - - static string INetMessage.MessageName => "CCSUsrMsg_XRankGet"; - - static CCSUsrMsg_XRankGet ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_XRankGetImpl(handle, isManuallyAllocated); - - - public int ModeIdx { get; set; } + static int INetMessage.MessageId => 340; + static string INetMessage.MessageName => "CCSUsrMsg_XRankGet"; - public int Controller { get; set; } + static CCSUsrMsg_XRankGet ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_XRankGetImpl(handle, isManuallyAllocated); -} + public int ModeIdx { get; set; } + public int Controller { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_XRankUpd.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_XRankUpd.cs index 1b8fd1c95..5326a5f64 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_XRankUpd.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_XRankUpd.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_XRankUpd : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 341; - - static string INetMessage.MessageName => "CCSUsrMsg_XRankUpd"; - - static CCSUsrMsg_XRankUpd ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_XRankUpdImpl(handle, isManuallyAllocated); - - - public int ModeIdx { get; set; } - - - public int Controller { get; set; } + static int INetMessage.MessageId => 341; + static string INetMessage.MessageName => "CCSUsrMsg_XRankUpd"; - public int Ranking { get; set; } + static CCSUsrMsg_XRankUpd ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_XRankUpdImpl(handle, isManuallyAllocated); -} + public int ModeIdx { get; set; } + public int Controller { get; set; } + public int Ranking { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_XpUpdate.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_XpUpdate.cs index 7b51fa81d..b481ff779 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_XpUpdate.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCSUsrMsg_XpUpdate.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CCSUsrMsg_XpUpdate : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 365; - - static string INetMessage.MessageName => "CCSUsrMsg_XpUpdate"; - - static CCSUsrMsg_XpUpdate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_XpUpdateImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 365; + static string INetMessage.MessageName => "CCSUsrMsg_XpUpdate"; - public CMsgGCCstrike15_v2_GC2ServerNotifyXPRewarded Data { get; } + static CCSUsrMsg_XpUpdate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCSUsrMsg_XpUpdateImpl(handle, isManuallyAllocated); -} + public CMsgGCCstrike15_v2_GC2ServerNotifyXPRewarded Data { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CChinaAgreementSessions_StartAgreementSessionInGame_Request.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CChinaAgreementSessions_StartAgreementSessionInGame_Request.cs new file mode 100644 index 000000000..b12a598d8 --- /dev/null +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CChinaAgreementSessions_StartAgreementSessionInGame_Request.cs @@ -0,0 +1,14 @@ +using SwiftlyS2.Core.ProtobufDefinitions; +using SwiftlyS2.Shared.Natives; +using SwiftlyS2.Shared.NetMessages; + +namespace SwiftlyS2.Shared.ProtobufDefinitions; + +public interface CChinaAgreementSessions_StartAgreementSessionInGame_Request : ITypedProtobuf +{ + static CChinaAgreementSessions_StartAgreementSessionInGame_Request ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CChinaAgreementSessions_StartAgreementSessionInGame_RequestImpl(handle, isManuallyAllocated); + + public uint Appid { get; set; } + public ulong Steamid { get; set; } + public string ClientIpaddress { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CChinaAgreementSessions_StartAgreementSessionInGame_Response.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CChinaAgreementSessions_StartAgreementSessionInGame_Response.cs new file mode 100644 index 000000000..6545f78ba --- /dev/null +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CChinaAgreementSessions_StartAgreementSessionInGame_Response.cs @@ -0,0 +1,12 @@ +using SwiftlyS2.Core.ProtobufDefinitions; +using SwiftlyS2.Shared.Natives; +using SwiftlyS2.Shared.NetMessages; + +namespace SwiftlyS2.Shared.ProtobufDefinitions; + +public interface CChinaAgreementSessions_StartAgreementSessionInGame_Response : ITypedProtobuf +{ + static CChinaAgreementSessions_StartAgreementSessionInGame_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CChinaAgreementSessions_StartAgreementSessionInGame_ResponseImpl(handle, isManuallyAllocated); + + public string AgreementUrl { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientHeaderOverwatchEvidence.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientHeaderOverwatchEvidence.cs index c6e3e6f49..5b4a71570 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientHeaderOverwatchEvidence.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientHeaderOverwatchEvidence.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CClientHeaderOverwatchEvidence : ITypedProtobuf { - static CClientHeaderOverwatchEvidence ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CClientHeaderOverwatchEvidenceImpl(handle, isManuallyAllocated); - - - public uint Accountid { get; set; } - - - public ulong Caseid { get; set; } + static CClientHeaderOverwatchEvidence ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CClientHeaderOverwatchEvidenceImpl(handle, isManuallyAllocated); -} + public uint Accountid { get; set; } + public ulong Caseid { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientMsg_ClientUIEvent.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientMsg_ClientUIEvent.cs index 406f937e7..bbed3830c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientMsg_ClientUIEvent.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientMsg_ClientUIEvent.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,21 +6,11 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CClientMsg_ClientUIEvent : ITypedProtobuf { - static CClientMsg_ClientUIEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CClientMsg_ClientUIEventImpl(handle, isManuallyAllocated); - - - public EClientUIEvent Event { get; set; } - - - public uint EntEhandle { get; set; } - - - public uint ClientEhandle { get; set; } - - - public string Data1 { get; set; } - - - public string Data2 { get; set; } - -} + static CClientMsg_ClientUIEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CClientMsg_ClientUIEventImpl(handle, isManuallyAllocated); + + public EClientUIEvent Event { get; set; } + public uint EntEhandle { get; set; } + public uint ClientEhandle { get; set; } + public string Data1 { get; set; } + public string Data2 { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientMsg_CustomGameEvent.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientMsg_CustomGameEvent.cs index eaf56ee54..3941d8e22 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientMsg_CustomGameEvent.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientMsg_CustomGameEvent.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CClientMsg_CustomGameEvent : ITypedProtobuf { - static CClientMsg_CustomGameEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CClientMsg_CustomGameEventImpl(handle, isManuallyAllocated); - - - public string EventName { get; set; } - - - public byte[] Data { get; set; } + static CClientMsg_CustomGameEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CClientMsg_CustomGameEventImpl(handle, isManuallyAllocated); -} + public string EventName { get; set; } + public byte[] Data { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientMsg_CustomGameEventBounce.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientMsg_CustomGameEventBounce.cs index 07d7f71c8..b853393a1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientMsg_CustomGameEventBounce.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientMsg_CustomGameEventBounce.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CClientMsg_CustomGameEventBounce : ITypedProtobuf { - static CClientMsg_CustomGameEventBounce ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CClientMsg_CustomGameEventBounceImpl(handle, isManuallyAllocated); - - - public string EventName { get; set; } - - - public byte[] Data { get; set; } - - - public int PlayerSlot { get; set; } + static CClientMsg_CustomGameEventBounce ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CClientMsg_CustomGameEventBounceImpl(handle, isManuallyAllocated); -} + public string EventName { get; set; } + public byte[] Data { get; set; } + public int PlayerSlot { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientMsg_DevPaletteVisibilityChangedEvent.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientMsg_DevPaletteVisibilityChangedEvent.cs index 9dde893fc..22ad1c3d4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientMsg_DevPaletteVisibilityChangedEvent.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientMsg_DevPaletteVisibilityChangedEvent.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CClientMsg_DevPaletteVisibilityChangedEvent : ITypedProtobuf { - static CClientMsg_DevPaletteVisibilityChangedEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CClientMsg_DevPaletteVisibilityChangedEventImpl(handle, isManuallyAllocated); - - - public bool Visible { get; set; } + static CClientMsg_DevPaletteVisibilityChangedEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CClientMsg_DevPaletteVisibilityChangedEventImpl(handle, isManuallyAllocated); -} + public bool Visible { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientMsg_ListenForResponseFound.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientMsg_ListenForResponseFound.cs index 72a3de62b..48bacf9f8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientMsg_ListenForResponseFound.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientMsg_ListenForResponseFound.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CClientMsg_ListenForResponseFound : ITypedProtobuf { - static CClientMsg_ListenForResponseFound ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CClientMsg_ListenForResponseFoundImpl(handle, isManuallyAllocated); - - - public int PlayerSlot { get; set; } + static CClientMsg_ListenForResponseFound ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CClientMsg_ListenForResponseFoundImpl(handle, isManuallyAllocated); -} + public int PlayerSlot { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientMsg_RotateAnchor.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientMsg_RotateAnchor.cs index f8e10150b..13560a605 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientMsg_RotateAnchor.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientMsg_RotateAnchor.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CClientMsg_RotateAnchor : ITypedProtobuf { - static CClientMsg_RotateAnchor ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CClientMsg_RotateAnchorImpl(handle, isManuallyAllocated); - - - public float Angle { get; set; } + static CClientMsg_RotateAnchor ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CClientMsg_RotateAnchorImpl(handle, isManuallyAllocated); -} + public float Angle { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientMsg_WorldUIControllerHasPanelChangedEvent.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientMsg_WorldUIControllerHasPanelChangedEvent.cs index 5f4d1efa0..727cd6ea9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientMsg_WorldUIControllerHasPanelChangedEvent.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CClientMsg_WorldUIControllerHasPanelChangedEvent.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CClientMsg_WorldUIControllerHasPanelChangedEvent : ITypedProtobuf { - static CClientMsg_WorldUIControllerHasPanelChangedEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CClientMsg_WorldUIControllerHasPanelChangedEventImpl(handle, isManuallyAllocated); - - - public bool HasPanel { get; set; } - - - public uint ClientEhandle { get; set; } - - - public uint LiteralHandType { get; set; } + static CClientMsg_WorldUIControllerHasPanelChangedEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CClientMsg_WorldUIControllerHasPanelChangedEventImpl(handle, isManuallyAllocated); -} + public bool HasPanel { get; set; } + public uint ClientEhandle { get; set; } + public uint LiteralHandType { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCommunity_GamePersonalDataCategoryInfo.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCommunity_GamePersonalDataCategoryInfo.cs index 4c170175c..9ca03a5e5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCommunity_GamePersonalDataCategoryInfo.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCommunity_GamePersonalDataCategoryInfo.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CCommunity_GamePersonalDataCategoryInfo : ITypedProtobuf { - static CCommunity_GamePersonalDataCategoryInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCommunity_GamePersonalDataCategoryInfoImpl(handle, isManuallyAllocated); - - - public string Type { get; set; } - - - public string LocalizationToken { get; set; } - - - public string TemplateFile { get; set; } + static CCommunity_GamePersonalDataCategoryInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCommunity_GamePersonalDataCategoryInfoImpl(handle, isManuallyAllocated); -} + public string Type { get; set; } + public string LocalizationToken { get; set; } + public string TemplateFile { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCommunity_GetGamePersonalDataCategories_Request.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCommunity_GetGamePersonalDataCategories_Request.cs index e61016a53..613d55847 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCommunity_GetGamePersonalDataCategories_Request.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCommunity_GetGamePersonalDataCategories_Request.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CCommunity_GetGamePersonalDataCategories_Request : ITypedProtobuf { - static CCommunity_GetGamePersonalDataCategories_Request ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCommunity_GetGamePersonalDataCategories_RequestImpl(handle, isManuallyAllocated); - - - public uint Appid { get; set; } + static CCommunity_GetGamePersonalDataCategories_Request ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCommunity_GetGamePersonalDataCategories_RequestImpl(handle, isManuallyAllocated); -} + public uint Appid { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCommunity_GetGamePersonalDataCategories_Response.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCommunity_GetGamePersonalDataCategories_Response.cs index e91725a1d..f4a6e1b05 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCommunity_GetGamePersonalDataCategories_Response.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCommunity_GetGamePersonalDataCategories_Response.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CCommunity_GetGamePersonalDataCategories_Response : ITypedProtobuf { - static CCommunity_GetGamePersonalDataCategories_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCommunity_GetGamePersonalDataCategories_ResponseImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType Categories { get; } - - - public string AppAssetsBasename { get; set; } + static CCommunity_GetGamePersonalDataCategories_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCommunity_GetGamePersonalDataCategories_ResponseImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType Categories { get; } + public string AppAssetsBasename { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCommunity_GetGamePersonalDataEntries_Request.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCommunity_GetGamePersonalDataEntries_Request.cs index 39f488b34..75400d35f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCommunity_GetGamePersonalDataEntries_Request.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCommunity_GetGamePersonalDataEntries_Request.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CCommunity_GetGamePersonalDataEntries_Request : ITypedProtobuf { - static CCommunity_GetGamePersonalDataEntries_Request ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCommunity_GetGamePersonalDataEntries_RequestImpl(handle, isManuallyAllocated); - - - public uint Appid { get; set; } - - - public ulong Steamid { get; set; } - - - public string Type { get; set; } - - - public string ContinueToken { get; set; } + static CCommunity_GetGamePersonalDataEntries_Request ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCommunity_GetGamePersonalDataEntries_RequestImpl(handle, isManuallyAllocated); -} + public uint Appid { get; set; } + public ulong Steamid { get; set; } + public string Type { get; set; } + public string ContinueToken { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCommunity_GetGamePersonalDataEntries_Response.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCommunity_GetGamePersonalDataEntries_Response.cs index 43bfee06d..9098cec50 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCommunity_GetGamePersonalDataEntries_Response.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCommunity_GetGamePersonalDataEntries_Response.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CCommunity_GetGamePersonalDataEntries_Response : ITypedProtobuf { - static CCommunity_GetGamePersonalDataEntries_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCommunity_GetGamePersonalDataEntries_ResponseImpl(handle, isManuallyAllocated); - - - public uint Gceresult { get; set; } - - - public IProtobufRepeatedFieldValueType Entries { get; } - - - public string ContinueToken { get; set; } - - - public string ContinueText { get; set; } + static CCommunity_GetGamePersonalDataEntries_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCommunity_GetGamePersonalDataEntries_ResponseImpl(handle, isManuallyAllocated); -} + public uint Gceresult { get; set; } + public IProtobufRepeatedFieldValueType Entries { get; } + public string ContinueToken { get; set; } + public string ContinueText { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCommunity_TerminateGamePersonalDataEntries_Request.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCommunity_TerminateGamePersonalDataEntries_Request.cs index bf55dd7e8..3da6bbf63 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCommunity_TerminateGamePersonalDataEntries_Request.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCommunity_TerminateGamePersonalDataEntries_Request.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CCommunity_TerminateGamePersonalDataEntries_Request : ITypedProtobuf { - static CCommunity_TerminateGamePersonalDataEntries_Request ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCommunity_TerminateGamePersonalDataEntries_RequestImpl(handle, isManuallyAllocated); - - - public uint Appid { get; set; } - - - public ulong Steamid { get; set; } + static CCommunity_TerminateGamePersonalDataEntries_Request ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCommunity_TerminateGamePersonalDataEntries_RequestImpl(handle, isManuallyAllocated); -} + public uint Appid { get; set; } + public ulong Steamid { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCommunity_TerminateGamePersonalDataEntries_Response.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCommunity_TerminateGamePersonalDataEntries_Response.cs index 63095b85d..7a7ffb5d6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCommunity_TerminateGamePersonalDataEntries_Response.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CCommunity_TerminateGamePersonalDataEntries_Response.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CCommunity_TerminateGamePersonalDataEntries_Response : ITypedProtobuf { - static CCommunity_TerminateGamePersonalDataEntries_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCommunity_TerminateGamePersonalDataEntries_ResponseImpl(handle, isManuallyAllocated); - - - public uint Gceresult { get; set; } + static CCommunity_TerminateGamePersonalDataEntries_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CCommunity_TerminateGamePersonalDataEntries_ResponseImpl(handle, isManuallyAllocated); -} + public uint Gceresult { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_MatchInfo.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_MatchInfo.cs index dab71d15a..0e3761713 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_MatchInfo.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_MatchInfo.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,21 +6,11 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDataGCCStrike15_v2_MatchInfo : ITypedProtobuf { - static CDataGCCStrike15_v2_MatchInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDataGCCStrike15_v2_MatchInfoImpl(handle, isManuallyAllocated); - - - public ulong Matchid { get; set; } - - - public uint Matchtime { get; set; } - - - public WatchableMatchInfo Watchablematchinfo { get; } - - - public CMsgGCCStrike15_v2_MatchmakingServerRoundStats RoundstatsLegacy { get; } - - - public IProtobufRepeatedFieldSubMessageType Roundstatsall { get; } - -} + static CDataGCCStrike15_v2_MatchInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDataGCCStrike15_v2_MatchInfoImpl(handle, isManuallyAllocated); + + public ulong Matchid { get; set; } + public uint Matchtime { get; set; } + public WatchableMatchInfo Watchablematchinfo { get; } + public CMsgGCCStrike15_v2_MatchmakingServerRoundStats RoundstatsLegacy { get; } + public IProtobufRepeatedFieldSubMessageType Roundstatsall { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_TournamentGroup.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_TournamentGroup.cs index 77cce448c..6cafbbcf6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_TournamentGroup.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_TournamentGroup.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,36 +6,16 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDataGCCStrike15_v2_TournamentGroup : ITypedProtobuf { - static CDataGCCStrike15_v2_TournamentGroup ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDataGCCStrike15_v2_TournamentGroupImpl(handle, isManuallyAllocated); - - - public uint Groupid { get; set; } - - - public string Name { get; set; } - - - public string Desc { get; set; } - - - public uint PicksDeprecated { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Teams { get; } - - - public IProtobufRepeatedFieldValueType StageIds { get; } - - - public uint Picklockuntiltime { get; set; } - - - public uint Pickableteams { get; set; } - - - public uint PointsPerPick { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Picks { get; } - -} + static CDataGCCStrike15_v2_TournamentGroup ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDataGCCStrike15_v2_TournamentGroupImpl(handle, isManuallyAllocated); + + public uint Groupid { get; set; } + public string Name { get; set; } + public string Desc { get; set; } + public uint PicksDeprecated { get; set; } + public IProtobufRepeatedFieldSubMessageType Teams { get; } + public IProtobufRepeatedFieldValueType StageIds { get; } + public uint Picklockuntiltime { get; set; } + public uint Pickableteams { get; set; } + public uint PointsPerPick { get; set; } + public IProtobufRepeatedFieldSubMessageType Picks { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_TournamentGroupTeam.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_TournamentGroupTeam.cs index 947f2b55a..9812a1812 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_TournamentGroupTeam.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_TournamentGroupTeam.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDataGCCStrike15_v2_TournamentGroupTeam : ITypedProtobuf { - static CDataGCCStrike15_v2_TournamentGroupTeam ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDataGCCStrike15_v2_TournamentGroupTeamImpl(handle, isManuallyAllocated); - - - public int TeamId { get; set; } - - - public int Score { get; set; } - - - public bool Correctpick { get; set; } + static CDataGCCStrike15_v2_TournamentGroupTeam ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDataGCCStrike15_v2_TournamentGroupTeamImpl(handle, isManuallyAllocated); -} + public int TeamId { get; set; } + public int Score { get; set; } + public bool Correctpick { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_TournamentGroup_Picks.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_TournamentGroup_Picks.cs index e8fc4d420..452c7006b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_TournamentGroup_Picks.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_TournamentGroup_Picks.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDataGCCStrike15_v2_TournamentGroup_Picks : ITypedProtobuf { - static CDataGCCStrike15_v2_TournamentGroup_Picks ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDataGCCStrike15_v2_TournamentGroup_PicksImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldValueType Pickids { get; } + static CDataGCCStrike15_v2_TournamentGroup_Picks ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDataGCCStrike15_v2_TournamentGroup_PicksImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldValueType Pickids { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_TournamentInfo.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_TournamentInfo.cs index 648d8a56e..b79e775c4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_TournamentInfo.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_TournamentInfo.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDataGCCStrike15_v2_TournamentInfo : ITypedProtobuf { - static CDataGCCStrike15_v2_TournamentInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDataGCCStrike15_v2_TournamentInfoImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType Sections { get; } - - - public TournamentEvent TournamentEvent { get; } - - - public IProtobufRepeatedFieldSubMessageType TournamentTeams { get; } + static CDataGCCStrike15_v2_TournamentInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDataGCCStrike15_v2_TournamentInfoImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType Sections { get; } + public TournamentEvent TournamentEvent { get; } + public IProtobufRepeatedFieldSubMessageType TournamentTeams { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_TournamentMatchDraft.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_TournamentMatchDraft.cs index bf1078254..ab37b10dd 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_TournamentMatchDraft.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_TournamentMatchDraft.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,66 +6,26 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDataGCCStrike15_v2_TournamentMatchDraft : ITypedProtobuf { - static CDataGCCStrike15_v2_TournamentMatchDraft ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDataGCCStrike15_v2_TournamentMatchDraftImpl(handle, isManuallyAllocated); - - - public int EventId { get; set; } - - - public int EventStageId { get; set; } - - - public int TeamId0 { get; set; } - - - public int TeamId1 { get; set; } - - - public int MapsCount { get; set; } - - - public int MapsCurrent { get; set; } - - - public int TeamIdStart { get; set; } - - - public int TeamIdVeto1 { get; set; } - - - public int TeamIdPickn { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Drafts { get; } - - - public IProtobufRepeatedFieldValueType VoteMapid0 { get; } - - - public IProtobufRepeatedFieldValueType VoteMapid1 { get; } - - - public IProtobufRepeatedFieldValueType VoteMapid2 { get; } - - - public IProtobufRepeatedFieldValueType VoteMapid3 { get; } - - - public IProtobufRepeatedFieldValueType VoteMapid4 { get; } - - - public IProtobufRepeatedFieldValueType VoteMapid5 { get; } - - - public IProtobufRepeatedFieldValueType VoteStartingSide { get; } - - - public int VotePhase { get; set; } - - - public float VotePhaseStart { get; set; } - - - public float VotePhaseLength { get; set; } - -} + static CDataGCCStrike15_v2_TournamentMatchDraft ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDataGCCStrike15_v2_TournamentMatchDraftImpl(handle, isManuallyAllocated); + + public int EventId { get; set; } + public int EventStageId { get; set; } + public int TeamId0 { get; set; } + public int TeamId1 { get; set; } + public int MapsCount { get; set; } + public int MapsCurrent { get; set; } + public int TeamIdStart { get; set; } + public int TeamIdVeto1 { get; set; } + public int TeamIdPickn { get; set; } + public IProtobufRepeatedFieldSubMessageType Drafts { get; } + public IProtobufRepeatedFieldValueType VoteMapid0 { get; } + public IProtobufRepeatedFieldValueType VoteMapid1 { get; } + public IProtobufRepeatedFieldValueType VoteMapid2 { get; } + public IProtobufRepeatedFieldValueType VoteMapid3 { get; } + public IProtobufRepeatedFieldValueType VoteMapid4 { get; } + public IProtobufRepeatedFieldValueType VoteMapid5 { get; } + public IProtobufRepeatedFieldValueType VoteStartingSide { get; } + public int VotePhase { get; set; } + public float VotePhaseStart { get; set; } + public float VotePhaseLength { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_TournamentMatchDraft_Entry.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_TournamentMatchDraft_Entry.cs index 9008d5a22..bd94ea348 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_TournamentMatchDraft_Entry.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_TournamentMatchDraft_Entry.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDataGCCStrike15_v2_TournamentMatchDraft_Entry : ITypedProtobuf { - static CDataGCCStrike15_v2_TournamentMatchDraft_Entry ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDataGCCStrike15_v2_TournamentMatchDraft_EntryImpl(handle, isManuallyAllocated); - - - public int Mapid { get; set; } - - - public int TeamIdCt { get; set; } + static CDataGCCStrike15_v2_TournamentMatchDraft_Entry ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDataGCCStrike15_v2_TournamentMatchDraft_EntryImpl(handle, isManuallyAllocated); -} + public int Mapid { get; set; } + public int TeamIdCt { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_TournamentSection.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_TournamentSection.cs index 145ffdb49..9426da0a3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_TournamentSection.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDataGCCStrike15_v2_TournamentSection.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDataGCCStrike15_v2_TournamentSection : ITypedProtobuf { - static CDataGCCStrike15_v2_TournamentSection ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDataGCCStrike15_v2_TournamentSectionImpl(handle, isManuallyAllocated); - - - public uint Sectionid { get; set; } - - - public string Name { get; set; } - - - public string Desc { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Groups { get; } + static CDataGCCStrike15_v2_TournamentSection ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDataGCCStrike15_v2_TournamentSectionImpl(handle, isManuallyAllocated); -} + public uint Sectionid { get; set; } + public string Name { get; set; } + public string Desc { get; set; } + public IProtobufRepeatedFieldSubMessageType Groups { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoAnimationData.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoAnimationData.cs index c28381b85..2c025681b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoAnimationData.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoAnimationData.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,21 +6,11 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDemoAnimationData : ITypedProtobuf { - static CDemoAnimationData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoAnimationDataImpl(handle, isManuallyAllocated); - - - public int EntityId { get; set; } - - - public int StartTick { get; set; } - - - public int EndTick { get; set; } - - - public byte[] Data { get; set; } - - - public long DataChecksum { get; set; } - -} + static CDemoAnimationData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoAnimationDataImpl(handle, isManuallyAllocated); + + public int EntityId { get; set; } + public int StartTick { get; set; } + public int EndTick { get; set; } + public byte[] Data { get; set; } + public long DataChecksum { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoAnimationHeader.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoAnimationHeader.cs index 722f23999..a2208b193 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoAnimationHeader.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoAnimationHeader.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDemoAnimationHeader : ITypedProtobuf { - static CDemoAnimationHeader ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoAnimationHeaderImpl(handle, isManuallyAllocated); - - - public int EntityId { get; set; } - - - public int Tick { get; set; } - - - public byte[] Data { get; set; } + static CDemoAnimationHeader ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoAnimationHeaderImpl(handle, isManuallyAllocated); -} + public int EntityId { get; set; } + public int Tick { get; set; } + public byte[] Data { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoClassInfo.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoClassInfo.cs index a4748f045..75106b9ca 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoClassInfo.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoClassInfo.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDemoClassInfo : ITypedProtobuf { - static CDemoClassInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoClassInfoImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType Classes { get; } + static CDemoClassInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoClassInfoImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType Classes { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoClassInfo_class_t.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoClassInfo_class_t.cs index de515c914..be76d5b8d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoClassInfo_class_t.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoClassInfo_class_t.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDemoClassInfo_class_t : ITypedProtobuf { - static CDemoClassInfo_class_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoClassInfo_class_tImpl(handle, isManuallyAllocated); - - - public int ClassId { get; set; } - - - public string NetworkName { get; set; } - - - public string TableName { get; set; } + static CDemoClassInfo_class_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoClassInfo_class_tImpl(handle, isManuallyAllocated); -} + public int ClassId { get; set; } + public string NetworkName { get; set; } + public string TableName { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoConsoleCmd.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoConsoleCmd.cs index cd5afe2a5..5a77424fd 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoConsoleCmd.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoConsoleCmd.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDemoConsoleCmd : ITypedProtobuf { - static CDemoConsoleCmd ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoConsoleCmdImpl(handle, isManuallyAllocated); - - - public string Cmdstring { get; set; } + static CDemoConsoleCmd ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoConsoleCmdImpl(handle, isManuallyAllocated); -} + public string Cmdstring { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoCustomData.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoCustomData.cs index 04dddff9a..5041bf2dc 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoCustomData.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoCustomData.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDemoCustomData : ITypedProtobuf { - static CDemoCustomData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoCustomDataImpl(handle, isManuallyAllocated); - - - public int CallbackIndex { get; set; } - - - public byte[] Data { get; set; } + static CDemoCustomData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoCustomDataImpl(handle, isManuallyAllocated); -} + public int CallbackIndex { get; set; } + public byte[] Data { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoCustomDataCallbacks.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoCustomDataCallbacks.cs index cf93bd09e..cf0dda2de 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoCustomDataCallbacks.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoCustomDataCallbacks.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDemoCustomDataCallbacks : ITypedProtobuf { - static CDemoCustomDataCallbacks ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoCustomDataCallbacksImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldValueType SaveId { get; } + static CDemoCustomDataCallbacks ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoCustomDataCallbacksImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldValueType SaveId { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoFileHeader.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoFileHeader.cs index 8151007d2..ac467df07 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoFileHeader.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoFileHeader.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,51 +6,21 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDemoFileHeader : ITypedProtobuf { - static CDemoFileHeader ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoFileHeaderImpl(handle, isManuallyAllocated); - - - public string DemoFileStamp { get; set; } - - - public int PatchVersion { get; set; } - - - public string ServerName { get; set; } - - - public string ClientName { get; set; } - - - public string MapName { get; set; } - - - public string GameDirectory { get; set; } - - - public int FullpacketsVersion { get; set; } - - - public bool AllowClientsideEntities { get; set; } - - - public bool AllowClientsideParticles { get; set; } - - - public string Addons { get; set; } - - - public string DemoVersionName { get; set; } - - - public string DemoVersionGuid { get; set; } - - - public int BuildNum { get; set; } - - - public string Game { get; set; } - - - public int ServerStartTick { get; set; } - -} + static CDemoFileHeader ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoFileHeaderImpl(handle, isManuallyAllocated); + + public string DemoFileStamp { get; set; } + public int PatchVersion { get; set; } + public string ServerName { get; set; } + public string ClientName { get; set; } + public string MapName { get; set; } + public string GameDirectory { get; set; } + public int FullpacketsVersion { get; set; } + public bool AllowClientsideEntities { get; set; } + public bool AllowClientsideParticles { get; set; } + public string Addons { get; set; } + public string DemoVersionName { get; set; } + public string DemoVersionGuid { get; set; } + public int BuildNum { get; set; } + public string Game { get; set; } + public int ServerStartTick { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoFileInfo.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoFileInfo.cs index c52a7ec5e..b36b708b4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoFileInfo.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoFileInfo.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDemoFileInfo : ITypedProtobuf { - static CDemoFileInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoFileInfoImpl(handle, isManuallyAllocated); - - - public float PlaybackTime { get; set; } - - - public int PlaybackTicks { get; set; } - - - public int PlaybackFrames { get; set; } - - - public CGameInfo GameInfo { get; } + static CDemoFileInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoFileInfoImpl(handle, isManuallyAllocated); -} + public float PlaybackTime { get; set; } + public int PlaybackTicks { get; set; } + public int PlaybackFrames { get; set; } + public CGameInfo GameInfo { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoFullPacket.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoFullPacket.cs index ca8962ac1..afc0b1a33 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoFullPacket.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoFullPacket.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDemoFullPacket : ITypedProtobuf { - static CDemoFullPacket ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoFullPacketImpl(handle, isManuallyAllocated); - - - public CDemoStringTables StringTable { get; } - - - public CDemoPacket Packet { get; } + static CDemoFullPacket ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoFullPacketImpl(handle, isManuallyAllocated); -} + public CDemoStringTables StringTable { get; } + public CDemoPacket Packet { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoPacket.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoPacket.cs index 85441ee5c..3da2a52e2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoPacket.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoPacket.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDemoPacket : ITypedProtobuf { - static CDemoPacket ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoPacketImpl(handle, isManuallyAllocated); - - - public byte[] Data { get; set; } + static CDemoPacket ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoPacketImpl(handle, isManuallyAllocated); -} + public byte[] Data { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoRecovery.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoRecovery.cs index 5402898dd..f383d4450 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoRecovery.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoRecovery.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDemoRecovery : ITypedProtobuf { - static CDemoRecovery ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoRecoveryImpl(handle, isManuallyAllocated); - - - public CDemoRecovery_DemoInitialSpawnGroupEntry InitialSpawnGroup { get; } - - - public byte[] SpawnGroupMessage { get; set; } + static CDemoRecovery ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoRecoveryImpl(handle, isManuallyAllocated); -} + public CDemoRecovery_DemoInitialSpawnGroupEntry InitialSpawnGroup { get; } + public byte[] SpawnGroupMessage { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoRecovery_DemoInitialSpawnGroupEntry.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoRecovery_DemoInitialSpawnGroupEntry.cs index 100296314..931aac849 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoRecovery_DemoInitialSpawnGroupEntry.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoRecovery_DemoInitialSpawnGroupEntry.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDemoRecovery_DemoInitialSpawnGroupEntry : ITypedProtobuf { - static CDemoRecovery_DemoInitialSpawnGroupEntry ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoRecovery_DemoInitialSpawnGroupEntryImpl(handle, isManuallyAllocated); - - - public uint Spawngrouphandle { get; set; } - - - public bool WasCreated { get; set; } + static CDemoRecovery_DemoInitialSpawnGroupEntry ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoRecovery_DemoInitialSpawnGroupEntryImpl(handle, isManuallyAllocated); -} + public uint Spawngrouphandle { get; set; } + public bool WasCreated { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoSaveGame.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoSaveGame.cs index 5eff379b3..72fcec67b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoSaveGame.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoSaveGame.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDemoSaveGame : ITypedProtobuf { - static CDemoSaveGame ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoSaveGameImpl(handle, isManuallyAllocated); - - - public byte[] Data { get; set; } - - - public ulong SteamId { get; set; } - - - public ulong Signature { get; set; } - - - public int Version { get; set; } + static CDemoSaveGame ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoSaveGameImpl(handle, isManuallyAllocated); -} + public byte[] Data { get; set; } + public ulong SteamId { get; set; } + public ulong Signature { get; set; } + public int Version { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoSendTables.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoSendTables.cs index 115daf431..514c229fb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoSendTables.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoSendTables.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDemoSendTables : ITypedProtobuf { - static CDemoSendTables ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoSendTablesImpl(handle, isManuallyAllocated); - - - public byte[] Data { get; set; } + static CDemoSendTables ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoSendTablesImpl(handle, isManuallyAllocated); -} + public byte[] Data { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoSpawnGroups.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoSpawnGroups.cs index ebe9fa5f0..f8e8ecbf5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoSpawnGroups.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoSpawnGroups.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDemoSpawnGroups : ITypedProtobuf { - static CDemoSpawnGroups ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoSpawnGroupsImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldValueType Msgs { get; } + static CDemoSpawnGroups ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoSpawnGroupsImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldValueType Msgs { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoSpawnGroupsHLTVBroadcast.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoSpawnGroupsHLTVBroadcast.cs index 1c2b908bb..e42be8912 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoSpawnGroupsHLTVBroadcast.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoSpawnGroupsHLTVBroadcast.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDemoSpawnGroupsHLTVBroadcast : ITypedProtobuf { - static CDemoSpawnGroupsHLTVBroadcast ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoSpawnGroupsHLTVBroadcastImpl(handle, isManuallyAllocated); - - - public byte[] Data { get; set; } + static CDemoSpawnGroupsHLTVBroadcast ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoSpawnGroupsHLTVBroadcastImpl(handle, isManuallyAllocated); -} + public byte[] Data { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoStop.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoStop.cs index c8b0c4a2b..2b9dd652f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoStop.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoStop.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,7 +6,6 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDemoStop : ITypedProtobuf { - static CDemoStop ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoStopImpl(handle, isManuallyAllocated); - + static CDemoStop ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoStopImpl(handle, isManuallyAllocated); -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoStringTables.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoStringTables.cs index 14e05281d..a19aaafe0 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoStringTables.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoStringTables.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDemoStringTables : ITypedProtobuf { - static CDemoStringTables ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoStringTablesImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType Tables { get; } + static CDemoStringTables ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoStringTablesImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType Tables { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoStringTables_items_t.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoStringTables_items_t.cs index 4ddcf5683..d061c6906 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoStringTables_items_t.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoStringTables_items_t.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDemoStringTables_items_t : ITypedProtobuf { - static CDemoStringTables_items_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoStringTables_items_tImpl(handle, isManuallyAllocated); - - - public string Str { get; set; } - - - public byte[] Data { get; set; } + static CDemoStringTables_items_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoStringTables_items_tImpl(handle, isManuallyAllocated); -} + public string Str { get; set; } + public byte[] Data { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoStringTables_table_t.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoStringTables_table_t.cs index fb1e25a6e..aa87d33e1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoStringTables_table_t.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoStringTables_table_t.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDemoStringTables_table_t : ITypedProtobuf { - static CDemoStringTables_table_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoStringTables_table_tImpl(handle, isManuallyAllocated); - - - public string TableName { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Items { get; } - - - public IProtobufRepeatedFieldSubMessageType ItemsClientside { get; } - - - public int TableFlags { get; set; } + static CDemoStringTables_table_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoStringTables_table_tImpl(handle, isManuallyAllocated); -} + public string TableName { get; set; } + public IProtobufRepeatedFieldSubMessageType Items { get; } + public IProtobufRepeatedFieldSubMessageType ItemsClientside { get; } + public int TableFlags { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoSyncTick.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoSyncTick.cs index ec2fe3898..6efba69f8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoSyncTick.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoSyncTick.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,7 +6,6 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDemoSyncTick : ITypedProtobuf { - static CDemoSyncTick ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoSyncTickImpl(handle, isManuallyAllocated); - + static CDemoSyncTick ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoSyncTickImpl(handle, isManuallyAllocated); -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoUserCmd.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoUserCmd.cs index 06c6ea48e..b987b32af 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoUserCmd.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CDemoUserCmd.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CDemoUserCmd : ITypedProtobuf { - static CDemoUserCmd ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoUserCmdImpl(handle, isManuallyAllocated); - - - public int CmdNumber { get; set; } - - - public byte[] Data { get; set; } + static CDemoUserCmd ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CDemoUserCmdImpl(handle, isManuallyAllocated); -} + public int CmdNumber { get; set; } + public byte[] Data { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEconItemPreviewDataBlock.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEconItemPreviewDataBlock.cs index 716a3aee1..3e97e6eed 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEconItemPreviewDataBlock.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEconItemPreviewDataBlock.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,75 +6,29 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CEconItemPreviewDataBlock : ITypedProtobuf { - static CEconItemPreviewDataBlock ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CEconItemPreviewDataBlockImpl(handle, isManuallyAllocated); - - - public uint Accountid { get; set; } - - - public ulong Itemid { get; set; } - - - public uint Defindex { get; set; } - - - public uint Paintindex { get; set; } - - - public uint Rarity { get; set; } - - - public uint Quality { get; set; } - - - public uint Paintwear { get; set; } - - - public uint Paintseed { get; set; } - - - public uint Killeaterscoretype { get; set; } - - - public uint Killeatervalue { get; set; } - - - public string Customname { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Stickers { get; } - - - public uint Inventory { get; set; } - - - public uint Origin { get; set; } - - - public uint Questid { get; set; } - - - public uint Dropreason { get; set; } - - - public uint Musicindex { get; set; } - - - public int Entindex { get; set; } - - - public uint Petindex { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Keychains { get; } - - - public uint Style { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Variations { get; } - - - public uint UpgradeLevel { get; set; } - -} + static CEconItemPreviewDataBlock ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CEconItemPreviewDataBlockImpl(handle, isManuallyAllocated); + + public uint Accountid { get; set; } + public ulong Itemid { get; set; } + public uint Defindex { get; set; } + public uint Paintindex { get; set; } + public uint Rarity { get; set; } + public uint Quality { get; set; } + public uint Paintwear { get; set; } + public uint Paintseed { get; set; } + public uint Killeaterscoretype { get; set; } + public uint Killeatervalue { get; set; } + public string Customname { get; set; } + public IProtobufRepeatedFieldSubMessageType Stickers { get; } + public uint Inventory { get; set; } + public uint Origin { get; set; } + public uint Questid { get; set; } + public uint Dropreason { get; set; } + public uint Musicindex { get; set; } + public int Entindex { get; set; } + public uint Petindex { get; set; } + public IProtobufRepeatedFieldSubMessageType Keychains { get; } + public uint Style { get; set; } + public IProtobufRepeatedFieldSubMessageType Variations { get; } + public uint UpgradeLevel { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEconItemPreviewDataBlock_Sticker.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEconItemPreviewDataBlock_Sticker.cs index dd44d61a5..63cca16b0 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEconItemPreviewDataBlock_Sticker.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEconItemPreviewDataBlock_Sticker.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,42 +6,18 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CEconItemPreviewDataBlock_Sticker : ITypedProtobuf { - static CEconItemPreviewDataBlock_Sticker ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CEconItemPreviewDataBlock_StickerImpl(handle, isManuallyAllocated); - - - public uint Slot { get; set; } - - - public uint StickerId { get; set; } - - - public float Wear { get; set; } - - - public float Scale { get; set; } - - - public float Rotation { get; set; } - - - public uint TintId { get; set; } - - - public float OffsetX { get; set; } - - - public float OffsetY { get; set; } - - - public float OffsetZ { get; set; } - - - public uint Pattern { get; set; } - - - public uint HighlightReel { get; set; } - - - public uint WrappedSticker { get; set; } - -} + static CEconItemPreviewDataBlock_Sticker ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CEconItemPreviewDataBlock_StickerImpl(handle, isManuallyAllocated); + + public uint Slot { get; set; } + public uint StickerId { get; set; } + public float Wear { get; set; } + public float Scale { get; set; } + public float Rotation { get; set; } + public uint TintId { get; set; } + public float OffsetX { get; set; } + public float OffsetY { get; set; } + public float OffsetZ { get; set; } + public uint Pattern { get; set; } + public uint HighlightReel { get; set; } + public uint WrappedSticker { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEngineGotvSyncPacket.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEngineGotvSyncPacket.cs index 58b441e48..8c9916675 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEngineGotvSyncPacket.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEngineGotvSyncPacket.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,36 +6,16 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CEngineGotvSyncPacket : ITypedProtobuf { - static CEngineGotvSyncPacket ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CEngineGotvSyncPacketImpl(handle, isManuallyAllocated); - - - public ulong MatchId { get; set; } - - - public uint InstanceId { get; set; } - - - public uint Signupfragment { get; set; } - - - public uint Currentfragment { get; set; } - - - public float Tickrate { get; set; } - - - public uint Tick { get; set; } - - - public float Rtdelay { get; set; } - - - public float Rcvage { get; set; } - - - public float KeyframeInterval { get; set; } - - - public uint Cdndelay { get; set; } - -} + static CEngineGotvSyncPacket ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CEngineGotvSyncPacketImpl(handle, isManuallyAllocated); + + public ulong MatchId { get; set; } + public uint InstanceId { get; set; } + public uint Signupfragment { get; set; } + public uint Currentfragment { get; set; } + public float Tickrate { get; set; } + public uint Tick { get; set; } + public float Rtdelay { get; set; } + public float Rcvage { get; set; } + public float KeyframeInterval { get; set; } + public uint Cdndelay { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEntityMessageDoSpark.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEntityMessageDoSpark.cs index 403d3d6fc..89444ac58 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEntityMessageDoSpark.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEntityMessageDoSpark.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,30 +6,14 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CEntityMessageDoSpark : ITypedProtobuf { - static CEntityMessageDoSpark ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CEntityMessageDoSparkImpl(handle, isManuallyAllocated); - - - public Vector Origin { get; set; } - - - public int Entityindex { get; set; } - - - public float Radius { get; set; } - - - public uint Color { get; set; } - - - public uint Beams { get; set; } - - - public float Thick { get; set; } - - - public float Duration { get; set; } - - - public CEntityMsg EntityMsg { get; } - -} + static CEntityMessageDoSpark ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CEntityMessageDoSparkImpl(handle, isManuallyAllocated); + + public Vector Origin { get; set; } + public int Entityindex { get; set; } + public float Radius { get; set; } + public uint Color { get; set; } + public uint Beams { get; set; } + public float Thick { get; set; } + public float Duration { get; set; } + public CEntityMsg EntityMsg { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEntityMessageFixAngle.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEntityMessageFixAngle.cs index fb47c4143..4a50cc9f2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEntityMessageFixAngle.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEntityMessageFixAngle.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CEntityMessageFixAngle : ITypedProtobuf { - static CEntityMessageFixAngle ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CEntityMessageFixAngleImpl(handle, isManuallyAllocated); - - - public bool Relative { get; set; } - - - public QAngle Angle { get; set; } - - - public CEntityMsg EntityMsg { get; } + static CEntityMessageFixAngle ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CEntityMessageFixAngleImpl(handle, isManuallyAllocated); -} + public bool Relative { get; set; } + public QAngle Angle { get; set; } + public CEntityMsg EntityMsg { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEntityMessagePlayJingle.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEntityMessagePlayJingle.cs index de0f87575..ab3a8e112 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEntityMessagePlayJingle.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEntityMessagePlayJingle.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CEntityMessagePlayJingle : ITypedProtobuf { - static CEntityMessagePlayJingle ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CEntityMessagePlayJingleImpl(handle, isManuallyAllocated); - - - public CEntityMsg EntityMsg { get; } + static CEntityMessagePlayJingle ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CEntityMessagePlayJingleImpl(handle, isManuallyAllocated); -} + public CEntityMsg EntityMsg { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEntityMessagePropagateForce.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEntityMessagePropagateForce.cs index e1fff519b..8e3585726 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEntityMessagePropagateForce.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEntityMessagePropagateForce.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CEntityMessagePropagateForce : ITypedProtobuf { - static CEntityMessagePropagateForce ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CEntityMessagePropagateForceImpl(handle, isManuallyAllocated); - - - public Vector Impulse { get; set; } - - - public CEntityMsg EntityMsg { get; } + static CEntityMessagePropagateForce ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CEntityMessagePropagateForceImpl(handle, isManuallyAllocated); -} + public Vector Impulse { get; set; } + public CEntityMsg EntityMsg { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEntityMessageRemoveAllDecals.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEntityMessageRemoveAllDecals.cs index 007421bc4..863af9757 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEntityMessageRemoveAllDecals.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEntityMessageRemoveAllDecals.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CEntityMessageRemoveAllDecals : ITypedProtobuf { - static CEntityMessageRemoveAllDecals ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CEntityMessageRemoveAllDecalsImpl(handle, isManuallyAllocated); - - - public bool RemoveDecals { get; set; } - - - public CEntityMsg EntityMsg { get; } + static CEntityMessageRemoveAllDecals ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CEntityMessageRemoveAllDecalsImpl(handle, isManuallyAllocated); -} + public bool RemoveDecals { get; set; } + public CEntityMsg EntityMsg { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEntityMessageScreenOverlay.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEntityMessageScreenOverlay.cs index f5f345b75..4d8f5a98f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEntityMessageScreenOverlay.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEntityMessageScreenOverlay.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CEntityMessageScreenOverlay : ITypedProtobuf { - static CEntityMessageScreenOverlay ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CEntityMessageScreenOverlayImpl(handle, isManuallyAllocated); - - - public bool StartEffect { get; set; } - - - public CEntityMsg EntityMsg { get; } + static CEntityMessageScreenOverlay ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CEntityMessageScreenOverlayImpl(handle, isManuallyAllocated); -} + public bool StartEffect { get; set; } + public CEntityMsg EntityMsg { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEntityMsg.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEntityMsg.cs index b6560f908..e846ed81f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEntityMsg.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CEntityMsg.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CEntityMsg : ITypedProtobuf { - static CEntityMsg ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CEntityMsgImpl(handle, isManuallyAllocated); - - - public uint TargetEntity { get; set; } + static CEntityMsg ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CEntityMsgImpl(handle, isManuallyAllocated); -} + public uint TargetEntity { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGCStorePurchaseInit_LineItem.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGCStorePurchaseInit_LineItem.cs index 573e4a2b6..d4363a290 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGCStorePurchaseInit_LineItem.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGCStorePurchaseInit_LineItem.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,21 +6,11 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CGCStorePurchaseInit_LineItem : ITypedProtobuf { - static CGCStorePurchaseInit_LineItem ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CGCStorePurchaseInit_LineItemImpl(handle, isManuallyAllocated); - - - public uint ItemDefId { get; set; } - - - public uint Quantity { get; set; } - - - public ulong CostInLocalCurrency { get; set; } - - - public uint PurchaseType { get; set; } - - - public ulong SupplementalData { get; set; } - -} + static CGCStorePurchaseInit_LineItem ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CGCStorePurchaseInit_LineItemImpl(handle, isManuallyAllocated); + + public uint ItemDefId { get; set; } + public uint Quantity { get; set; } + public ulong CostInLocalCurrency { get; set; } + public uint PurchaseType { get; set; } + public ulong SupplementalData { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGCToGCMsgMasterAck.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGCToGCMsgMasterAck.cs index bd1c91add..ce79258ce 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGCToGCMsgMasterAck.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGCToGCMsgMasterAck.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CGCToGCMsgMasterAck : ITypedProtobuf { - static CGCToGCMsgMasterAck ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CGCToGCMsgMasterAckImpl(handle, isManuallyAllocated); - - - public uint DirIndex { get; set; } - - - public uint GcType { get; set; } + static CGCToGCMsgMasterAck ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CGCToGCMsgMasterAckImpl(handle, isManuallyAllocated); -} + public uint DirIndex { get; set; } + public uint GcType { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGCToGCMsgMasterAck_Response.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGCToGCMsgMasterAck_Response.cs index 5e94a2795..2e60b80c1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGCToGCMsgMasterAck_Response.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGCToGCMsgMasterAck_Response.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CGCToGCMsgMasterAck_Response : ITypedProtobuf { - static CGCToGCMsgMasterAck_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CGCToGCMsgMasterAck_ResponseImpl(handle, isManuallyAllocated); - - - public int Eresult { get; set; } + static CGCToGCMsgMasterAck_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CGCToGCMsgMasterAck_ResponseImpl(handle, isManuallyAllocated); -} + public int Eresult { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGCToGCMsgMasterStartupComplete.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGCToGCMsgMasterStartupComplete.cs index 057b50f9b..1bba93712 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGCToGCMsgMasterStartupComplete.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGCToGCMsgMasterStartupComplete.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,7 +6,6 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CGCToGCMsgMasterStartupComplete : ITypedProtobuf { - static CGCToGCMsgMasterStartupComplete ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CGCToGCMsgMasterStartupCompleteImpl(handle, isManuallyAllocated); - + static CGCToGCMsgMasterStartupComplete ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CGCToGCMsgMasterStartupCompleteImpl(handle, isManuallyAllocated); -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGCToGCMsgRouted.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGCToGCMsgRouted.cs index 200b52f36..2bcda3c03 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGCToGCMsgRouted.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGCToGCMsgRouted.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CGCToGCMsgRouted : ITypedProtobuf { - static CGCToGCMsgRouted ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CGCToGCMsgRoutedImpl(handle, isManuallyAllocated); - - - public uint MsgType { get; set; } - - - public ulong SenderId { get; set; } - - - public byte[] NetMessage { get; set; } - - - public uint Ip { get; set; } + static CGCToGCMsgRouted ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CGCToGCMsgRoutedImpl(handle, isManuallyAllocated); -} + public uint MsgType { get; set; } + public ulong SenderId { get; set; } + public byte[] NetMessage { get; set; } + public uint Ip { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGCToGCMsgRoutedReply.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGCToGCMsgRoutedReply.cs index 7b92aa436..0970b07e7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGCToGCMsgRoutedReply.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGCToGCMsgRoutedReply.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CGCToGCMsgRoutedReply : ITypedProtobuf { - static CGCToGCMsgRoutedReply ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CGCToGCMsgRoutedReplyImpl(handle, isManuallyAllocated); - - - public uint MsgType { get; set; } - - - public byte[] NetMessage { get; set; } + static CGCToGCMsgRoutedReply ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CGCToGCMsgRoutedReplyImpl(handle, isManuallyAllocated); -} + public uint MsgType { get; set; } + public byte[] NetMessage { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameInfo.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameInfo.cs index d68a6196c..53bb8a5b6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameInfo.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameInfo.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CGameInfo : ITypedProtobuf { - static CGameInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CGameInfoImpl(handle, isManuallyAllocated); - - - public CGameInfo_CDotaGameInfo Dota { get; } - - - public CGameInfo_CCSGameInfo Cs { get; } + static CGameInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CGameInfoImpl(handle, isManuallyAllocated); -} + public CGameInfo_CDotaGameInfo Dota { get; } + public CGameInfo_CCSGameInfo Cs { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameInfo_CCSGameInfo.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameInfo_CCSGameInfo.cs index 8a0941f00..762265fd1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameInfo_CCSGameInfo.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameInfo_CCSGameInfo.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CGameInfo_CCSGameInfo : ITypedProtobuf { - static CGameInfo_CCSGameInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CGameInfo_CCSGameInfoImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldValueType RoundStartTicks { get; } + static CGameInfo_CCSGameInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CGameInfo_CCSGameInfoImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldValueType RoundStartTicks { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameInfo_CDotaGameInfo.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameInfo_CDotaGameInfo.cs index a383676ed..788e04069 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameInfo_CDotaGameInfo.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameInfo_CDotaGameInfo.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,39 +6,17 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CGameInfo_CDotaGameInfo : ITypedProtobuf { - static CGameInfo_CDotaGameInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CGameInfo_CDotaGameInfoImpl(handle, isManuallyAllocated); - - - public ulong MatchId { get; set; } - - - public int GameMode { get; set; } - - - public int GameWinner { get; set; } - - - public IProtobufRepeatedFieldSubMessageType PlayerInfo { get; } - - - public uint Leagueid { get; set; } - - - public IProtobufRepeatedFieldSubMessageType PicksBans { get; } - - - public uint RadiantTeamId { get; set; } - - - public uint DireTeamId { get; set; } - - - public string RadiantTeamTag { get; set; } - - - public string DireTeamTag { get; set; } - - - public uint EndTime { get; set; } - -} + static CGameInfo_CDotaGameInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CGameInfo_CDotaGameInfoImpl(handle, isManuallyAllocated); + + public ulong MatchId { get; set; } + public int GameMode { get; set; } + public int GameWinner { get; set; } + public IProtobufRepeatedFieldSubMessageType PlayerInfo { get; } + public uint Leagueid { get; set; } + public IProtobufRepeatedFieldSubMessageType PicksBans { get; } + public uint RadiantTeamId { get; set; } + public uint DireTeamId { get; set; } + public string RadiantTeamTag { get; set; } + public string DireTeamTag { get; set; } + public uint EndTime { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameInfo_CDotaGameInfo_CHeroSelectEvent.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameInfo_CDotaGameInfo_CHeroSelectEvent.cs index 9ac761fc6..433501fe7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameInfo_CDotaGameInfo_CHeroSelectEvent.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameInfo_CDotaGameInfo_CHeroSelectEvent.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CGameInfo_CDotaGameInfo_CHeroSelectEvent : ITypedProtobuf { - static CGameInfo_CDotaGameInfo_CHeroSelectEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CGameInfo_CDotaGameInfo_CHeroSelectEventImpl(handle, isManuallyAllocated); - - - public bool IsPick { get; set; } - - - public uint Team { get; set; } - - - public int HeroId { get; set; } + static CGameInfo_CDotaGameInfo_CHeroSelectEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CGameInfo_CDotaGameInfo_CHeroSelectEventImpl(handle, isManuallyAllocated); -} + public bool IsPick { get; set; } + public uint Team { get; set; } + public int HeroId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameInfo_CDotaGameInfo_CPlayerInfo.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameInfo_CDotaGameInfo_CPlayerInfo.cs index 6798fa75a..2bc09163a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameInfo_CDotaGameInfo_CPlayerInfo.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameInfo_CDotaGameInfo_CPlayerInfo.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,21 +6,11 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CGameInfo_CDotaGameInfo_CPlayerInfo : ITypedProtobuf { - static CGameInfo_CDotaGameInfo_CPlayerInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CGameInfo_CDotaGameInfo_CPlayerInfoImpl(handle, isManuallyAllocated); - - - public string HeroName { get; set; } - - - public string PlayerName { get; set; } - - - public bool IsFakeClient { get; set; } - - - public ulong Steamid { get; set; } - - - public int GameTeam { get; set; } - -} + static CGameInfo_CDotaGameInfo_CPlayerInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CGameInfo_CDotaGameInfo_CPlayerInfoImpl(handle, isManuallyAllocated); + + public string HeroName { get; set; } + public string PlayerName { get; set; } + public bool IsFakeClient { get; set; } + public ulong Steamid { get; set; } + public int GameTeam { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameServers_AggregationQuery_Request.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameServers_AggregationQuery_Request.cs index cf1f2de05..572be1988 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameServers_AggregationQuery_Request.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameServers_AggregationQuery_Request.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CGameServers_AggregationQuery_Request : ITypedProtobuf { - static CGameServers_AggregationQuery_Request ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CGameServers_AggregationQuery_RequestImpl(handle, isManuallyAllocated); - - - public string Filter { get; set; } - - - public IProtobufRepeatedFieldValueType GroupFields { get; } + static CGameServers_AggregationQuery_Request ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CGameServers_AggregationQuery_RequestImpl(handle, isManuallyAllocated); -} + public string Filter { get; set; } + public IProtobufRepeatedFieldValueType GroupFields { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameServers_AggregationQuery_Response.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameServers_AggregationQuery_Response.cs index 1dd803659..208295bdd 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameServers_AggregationQuery_Response.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameServers_AggregationQuery_Response.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CGameServers_AggregationQuery_Response : ITypedProtobuf { - static CGameServers_AggregationQuery_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CGameServers_AggregationQuery_ResponseImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType Groups { get; } + static CGameServers_AggregationQuery_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CGameServers_AggregationQuery_ResponseImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType Groups { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameServers_AggregationQuery_Response_Group.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameServers_AggregationQuery_Response_Group.cs index a32c20757..5a762ad45 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameServers_AggregationQuery_Response_Group.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CGameServers_AggregationQuery_Response_Group.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,27 +6,13 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CGameServers_AggregationQuery_Response_Group : ITypedProtobuf { - static CGameServers_AggregationQuery_Response_Group ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CGameServers_AggregationQuery_Response_GroupImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldValueType GroupValues { get; } - - - public uint ServersEmpty { get; set; } - - - public uint ServersFull { get; set; } - - - public uint ServersTotal { get; set; } - - - public uint PlayersHumans { get; set; } - - - public uint PlayersBots { get; set; } - - - public uint PlayerCapacity { get; set; } - -} + static CGameServers_AggregationQuery_Response_Group ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CGameServers_AggregationQuery_Response_GroupImpl(handle, isManuallyAllocated); + + public IProtobufRepeatedFieldValueType GroupValues { get; } + public uint ServersEmpty { get; set; } + public uint ServersFull { get; set; } + public uint ServersTotal { get; set; } + public uint PlayersHumans { get; set; } + public uint PlayersBots { get; set; } + public uint PlayerCapacity { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CInButtonStatePB.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CInButtonStatePB.cs index b71d337d0..e580e785c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CInButtonStatePB.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CInButtonStatePB.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CInButtonStatePB : ITypedProtobuf { - static CInButtonStatePB ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CInButtonStatePBImpl(handle, isManuallyAllocated); - - - public ulong Buttonstate1 { get; set; } - - - public ulong Buttonstate2 { get; set; } - - - public ulong Buttonstate3 { get; set; } + static CInButtonStatePB ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CInButtonStatePBImpl(handle, isManuallyAllocated); -} + public ulong Buttonstate1 { get; set; } + public ulong Buttonstate2 { get; set; } + public ulong Buttonstate3 { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgAccountDetails.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgAccountDetails.cs index 6d7bf30cc..ca2f9d1ff 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgAccountDetails.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgAccountDetails.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,60 +6,24 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgAccountDetails : ITypedProtobuf { - static CMsgAccountDetails ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgAccountDetailsImpl(handle, isManuallyAllocated); - - - public bool Valid { get; set; } - - - public string AccountName { get; set; } - - - public bool PublicProfile { get; set; } - - - public bool PublicInventory { get; set; } - - - public bool VacBanned { get; set; } - - - public bool CyberCafe { get; set; } - - - public bool SchoolAccount { get; set; } - - - public bool FreeTrialAccount { get; set; } - - - public bool Subscribed { get; set; } - - - public bool LowViolence { get; set; } - - - public bool Limited { get; set; } - - - public bool Trusted { get; set; } - - - public uint Package { get; set; } - - - public uint TimeCached { get; set; } - - - public bool AccountLocked { get; set; } - - - public bool CommunityBanned { get; set; } - - - public bool TradeBanned { get; set; } - - - public bool EligibleForCommunityMarket { get; set; } - -} + static CMsgAccountDetails ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgAccountDetailsImpl(handle, isManuallyAllocated); + + public bool Valid { get; set; } + public string AccountName { get; set; } + public bool PublicProfile { get; set; } + public bool PublicInventory { get; set; } + public bool VacBanned { get; set; } + public bool CyberCafe { get; set; } + public bool SchoolAccount { get; set; } + public bool FreeTrialAccount { get; set; } + public bool Subscribed { get; set; } + public bool LowViolence { get; set; } + public bool Limited { get; set; } + public bool Trusted { get; set; } + public uint Package { get; set; } + public uint TimeCached { get; set; } + public bool AccountLocked { get; set; } + public bool CommunityBanned { get; set; } + public bool TradeBanned { get; set; } + public bool EligibleForCommunityMarket { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgAcknowledgeRentalExpiration.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgAcknowledgeRentalExpiration.cs index 002b4ea8d..9b43756d8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgAcknowledgeRentalExpiration.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgAcknowledgeRentalExpiration.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgAcknowledgeRentalExpiration : ITypedProtobuf { - static CMsgAcknowledgeRentalExpiration ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgAcknowledgeRentalExpirationImpl(handle, isManuallyAllocated); - - - public ulong CrateItemId { get; set; } + static CMsgAcknowledgeRentalExpiration ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgAcknowledgeRentalExpirationImpl(handle, isManuallyAllocated); -} + public ulong CrateItemId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgAdjustEquipSlot.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgAdjustEquipSlot.cs index 83f53008c..622a1f863 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgAdjustEquipSlot.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgAdjustEquipSlot.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgAdjustEquipSlot : ITypedProtobuf { - static CMsgAdjustEquipSlot ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgAdjustEquipSlotImpl(handle, isManuallyAllocated); - - - public uint ClassId { get; set; } - - - public uint SlotId { get; set; } - - - public ulong ItemId { get; set; } + static CMsgAdjustEquipSlot ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgAdjustEquipSlotImpl(handle, isManuallyAllocated); -} + public uint ClassId { get; set; } + public uint SlotId { get; set; } + public ulong ItemId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgAdjustEquipSlots.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgAdjustEquipSlots.cs index 6fa0da2c8..4f379f131 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgAdjustEquipSlots.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgAdjustEquipSlots.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgAdjustEquipSlots : ITypedProtobuf { - static CMsgAdjustEquipSlots ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgAdjustEquipSlotsImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType Slots { get; } - - - public uint ChangeNum { get; set; } + static CMsgAdjustEquipSlots ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgAdjustEquipSlotsImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType Slots { get; } + public uint ChangeNum { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgAdjustItemEquippedState.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgAdjustItemEquippedState.cs deleted file mode 100644 index c8f2b528a..000000000 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgAdjustItemEquippedState.cs +++ /dev/null @@ -1,24 +0,0 @@ - -using SwiftlyS2.Core.ProtobufDefinitions; -using SwiftlyS2.Shared.Natives; -using SwiftlyS2.Shared.NetMessages; - -namespace SwiftlyS2.Shared.ProtobufDefinitions; - -public interface CMsgAdjustItemEquippedState : ITypedProtobuf -{ - static CMsgAdjustItemEquippedState ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgAdjustItemEquippedStateImpl(handle, isManuallyAllocated); - - - public ulong ItemId { get; set; } - - - public uint NewClass { get; set; } - - - public uint NewSlot { get; set; } - - - public bool Swap { get; set; } - -} diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgAdjustItemEquippedStateMulti.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgAdjustItemEquippedStateMulti.cs deleted file mode 100644 index 26ccc2d03..000000000 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgAdjustItemEquippedStateMulti.cs +++ /dev/null @@ -1,21 +0,0 @@ - -using SwiftlyS2.Core.ProtobufDefinitions; -using SwiftlyS2.Shared.Natives; -using SwiftlyS2.Shared.NetMessages; - -namespace SwiftlyS2.Shared.ProtobufDefinitions; - -public interface CMsgAdjustItemEquippedStateMulti : ITypedProtobuf -{ - static CMsgAdjustItemEquippedStateMulti ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgAdjustItemEquippedStateMultiImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldValueType TEquips { get; } - - - public IProtobufRepeatedFieldValueType CtEquips { get; } - - - public IProtobufRepeatedFieldValueType NoteamEquips { get; } - -} diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgApplyEggEssence.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgApplyEggEssence.cs index 4e248e136..0f7f92489 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgApplyEggEssence.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgApplyEggEssence.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgApplyEggEssence : ITypedProtobuf { - static CMsgApplyEggEssence ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgApplyEggEssenceImpl(handle, isManuallyAllocated); - - - public ulong EssenceItemId { get; set; } - - - public ulong EggItemId { get; set; } + static CMsgApplyEggEssence ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgApplyEggEssenceImpl(handle, isManuallyAllocated); -} + public ulong EssenceItemId { get; set; } + public ulong EggItemId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgApplyPennantUpgrade.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgApplyPennantUpgrade.cs index 3c422f31b..4d483447d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgApplyPennantUpgrade.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgApplyPennantUpgrade.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgApplyPennantUpgrade : ITypedProtobuf { - static CMsgApplyPennantUpgrade ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgApplyPennantUpgradeImpl(handle, isManuallyAllocated); - - - public ulong UpgradeItemId { get; set; } - - - public ulong PennantItemId { get; set; } + static CMsgApplyPennantUpgrade ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgApplyPennantUpgradeImpl(handle, isManuallyAllocated); -} + public ulong UpgradeItemId { get; set; } + public ulong PennantItemId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgApplyStatTrakSwap.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgApplyStatTrakSwap.cs index c4b958cbf..2d06a8e5f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgApplyStatTrakSwap.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgApplyStatTrakSwap.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgApplyStatTrakSwap : ITypedProtobuf { - static CMsgApplyStatTrakSwap ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgApplyStatTrakSwapImpl(handle, isManuallyAllocated); - - - public ulong ToolItemId { get; set; } - - - public ulong Item1ItemId { get; set; } - - - public ulong Item2ItemId { get; set; } + static CMsgApplyStatTrakSwap ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgApplyStatTrakSwapImpl(handle, isManuallyAllocated); -} + public ulong ToolItemId { get; set; } + public ulong Item1ItemId { get; set; } + public ulong Item2ItemId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgApplySticker.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgApplySticker.cs index 902a62166..b0e309df1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgApplySticker.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgApplySticker.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,39 +6,17 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgApplySticker : ITypedProtobuf { - static CMsgApplySticker ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgApplyStickerImpl(handle, isManuallyAllocated); - - - public ulong StickerItemId { get; set; } - - - public ulong ItemItemId { get; set; } - - - public uint StickerSlot { get; set; } - - - public uint BaseitemDefidx { get; set; } - - - public float StickerWear { get; set; } - - - public float StickerRotation { get; set; } - - - public float StickerScale { get; set; } - - - public float StickerOffsetX { get; set; } - - - public float StickerOffsetY { get; set; } - - - public float StickerOffsetZ { get; set; } - - - public float StickerWearTarget { get; set; } - -} + static CMsgApplySticker ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgApplyStickerImpl(handle, isManuallyAllocated); + + public ulong StickerItemId { get; set; } + public ulong ItemItemId { get; set; } + public uint StickerSlot { get; set; } + public uint BaseitemDefidx { get; set; } + public float StickerWear { get; set; } + public float StickerRotation { get; set; } + public float StickerScale { get; set; } + public float StickerOffsetX { get; set; } + public float StickerOffsetY { get; set; } + public float StickerOffsetZ { get; set; } + public float StickerWearTarget { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgApplyStrangePart.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgApplyStrangePart.cs index 2da5b7046..4a34b6329 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgApplyStrangePart.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgApplyStrangePart.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgApplyStrangePart : ITypedProtobuf { - static CMsgApplyStrangePart ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgApplyStrangePartImpl(handle, isManuallyAllocated); - - - public ulong StrangePartItemId { get; set; } - - - public ulong ItemItemId { get; set; } + static CMsgApplyStrangePart ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgApplyStrangePartImpl(handle, isManuallyAllocated); -} + public ulong StrangePartItemId { get; set; } + public ulong ItemItemId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgCStrike15Welcome.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgCStrike15Welcome.cs index aaf2f943d..ed77ac373 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgCStrike15Welcome.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgCStrike15Welcome.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,27 +6,13 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgCStrike15Welcome : ITypedProtobuf { - static CMsgCStrike15Welcome ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgCStrike15WelcomeImpl(handle, isManuallyAllocated); - - - public uint StoreItemHash { get; set; } - - - public uint Timeplayedconsecutively { get; set; } - - - public uint TimeFirstPlayed { get; set; } - - - public uint LastTimePlayed { get; set; } - - - public uint LastIpAddress { get; set; } - - - public ulong Gscookieid { get; set; } - - - public ulong Uniqueid { get; set; } - -} + static CMsgCStrike15Welcome ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgCStrike15WelcomeImpl(handle, isManuallyAllocated); + + public uint StoreItemHash { get; set; } + public uint Timeplayedconsecutively { get; set; } + public uint TimeFirstPlayed { get; set; } + public uint LastTimePlayed { get; set; } + public uint LastIpAddress { get; set; } + public ulong Gscookieid { get; set; } + public ulong Uniqueid { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgCasketItem.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgCasketItem.cs index 724e6f7fe..5e38d46bb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgCasketItem.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgCasketItem.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgCasketItem : ITypedProtobuf { - static CMsgCasketItem ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgCasketItemImpl(handle, isManuallyAllocated); - - - public ulong CasketItemId { get; set; } - - - public ulong ItemItemId { get; set; } + static CMsgCasketItem ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgCasketItemImpl(handle, isManuallyAllocated); -} + public ulong CasketItemId { get; set; } + public ulong ItemItemId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgClearDecalsForEntityEvent.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgClearDecalsForEntityEvent.cs index fb889656f..8b8a73183 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgClearDecalsForEntityEvent.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgClearDecalsForEntityEvent.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgClearDecalsForEntityEvent : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 204; - - static string INetMessage.MessageName => "CMsgClearDecalsForEntityEvent"; - - static CMsgClearDecalsForEntityEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgClearDecalsForEntityEventImpl(handle, isManuallyAllocated); - - - public uint Flagstoclear { get; set; } + static int INetMessage.MessageId => 204; + static string INetMessage.MessageName => "CMsgClearDecalsForEntityEvent"; - public uint Entityhandle { get; set; } + static CMsgClearDecalsForEntityEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgClearDecalsForEntityEventImpl(handle, isManuallyAllocated); -} + public uint Flagstoclear { get; set; } + public uint Entityhandle { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgClearEntityDecalsEvent.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgClearEntityDecalsEvent.cs index 9bbfa72b9..560c423c1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgClearEntityDecalsEvent.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgClearEntityDecalsEvent.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgClearEntityDecalsEvent : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 203; - - static string INetMessage.MessageName => "CMsgClearEntityDecalsEvent"; - - static CMsgClearEntityDecalsEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgClearEntityDecalsEventImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 203; + static string INetMessage.MessageName => "CMsgClearEntityDecalsEvent"; - public uint Flagstoclear { get; set; } + static CMsgClearEntityDecalsEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgClearEntityDecalsEventImpl(handle, isManuallyAllocated); -} + public uint Flagstoclear { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgClearWorldDecalsEvent.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgClearWorldDecalsEvent.cs index 8e9a3dc54..e9a041325 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgClearWorldDecalsEvent.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgClearWorldDecalsEvent.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgClearWorldDecalsEvent : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 202; - - static string INetMessage.MessageName => "CMsgClearWorldDecalsEvent"; - - static CMsgClearWorldDecalsEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgClearWorldDecalsEventImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 202; + static string INetMessage.MessageName => "CMsgClearWorldDecalsEvent"; - public uint Flagstoclear { get; set; } + static CMsgClearWorldDecalsEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgClearWorldDecalsEventImpl(handle, isManuallyAllocated); -} + public uint Flagstoclear { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgClientHello.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgClientHello.cs index 170a41a73..d3d59994c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgClientHello.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgClientHello.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,33 +6,15 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgClientHello : ITypedProtobuf { - static CMsgClientHello ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgClientHelloImpl(handle, isManuallyAllocated); - - - public uint Version { get; set; } - - - public IProtobufRepeatedFieldSubMessageType SocacheHaveVersions { get; } - - - public uint ClientSessionNeed { get; set; } - - - public uint ClientLauncher { get; set; } - - - public uint PartnerSrcid { get; set; } - - - public uint PartnerAccountid { get; set; } - - - public uint PartnerAccountflags { get; set; } - - - public uint PartnerAccountbalance { get; set; } - - - public uint SteamLauncher { get; set; } - -} + static CMsgClientHello ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgClientHelloImpl(handle, isManuallyAllocated); + + public uint Version { get; set; } + public IProtobufRepeatedFieldSubMessageType SocacheHaveVersions { get; } + public uint ClientSessionNeed { get; set; } + public uint ClientLauncher { get; set; } + public uint PartnerSrcid { get; set; } + public uint PartnerAccountid { get; set; } + public uint PartnerAccountflags { get; set; } + public uint PartnerAccountbalance { get; set; } + public uint SteamLauncher { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgClientWelcome.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgClientWelcome.cs index 5ebece246..311a2525d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgClientWelcome.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgClientWelcome.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,39 +6,17 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgClientWelcome : ITypedProtobuf { - static CMsgClientWelcome ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgClientWelcomeImpl(handle, isManuallyAllocated); - - - public uint Version { get; set; } - - - public byte[] GameData { get; set; } - - - public IProtobufRepeatedFieldSubMessageType OutofdateSubscribedCaches { get; } - - - public IProtobufRepeatedFieldSubMessageType UptodateSubscribedCaches { get; } - - - public CMsgClientWelcome_Location Location { get; } - - - public byte[] GameData2 { get; set; } - - - public uint Rtime32GcWelcomeTimestamp { get; set; } - - - public uint Currency { get; set; } - - - public uint Balance { get; set; } - - - public string BalanceUrl { get; set; } - - - public string TxnCountryCode { get; set; } - -} + static CMsgClientWelcome ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgClientWelcomeImpl(handle, isManuallyAllocated); + + public uint Version { get; set; } + public byte[] GameData { get; set; } + public IProtobufRepeatedFieldSubMessageType OutofdateSubscribedCaches { get; } + public IProtobufRepeatedFieldSubMessageType UptodateSubscribedCaches { get; } + public CMsgClientWelcome_Location Location { get; } + public byte[] GameData2 { get; set; } + public uint Rtime32GcWelcomeTimestamp { get; set; } + public uint Currency { get; set; } + public uint Balance { get; set; } + public string BalanceUrl { get; set; } + public string TxnCountryCode { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgClientWelcome_Location.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgClientWelcome_Location.cs index 87190ef8d..9178a7d25 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgClientWelcome_Location.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgClientWelcome_Location.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgClientWelcome_Location : ITypedProtobuf { - static CMsgClientWelcome_Location ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgClientWelcome_LocationImpl(handle, isManuallyAllocated); - - - public float Latitude { get; set; } - - - public float Longitude { get; set; } - - - public string Country { get; set; } + static CMsgClientWelcome_Location ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgClientWelcome_LocationImpl(handle, isManuallyAllocated); -} + public float Latitude { get; set; } + public float Longitude { get; set; } + public string Country { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgConVarValue.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgConVarValue.cs index a54638894..bfb5507e4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgConVarValue.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgConVarValue.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgConVarValue : ITypedProtobuf { - static CMsgConVarValue ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgConVarValueImpl(handle, isManuallyAllocated); - - - public string Name { get; set; } - - - public string Value { get; set; } + static CMsgConVarValue ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgConVarValueImpl(handle, isManuallyAllocated); -} + public string Name { get; set; } + public string Value { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgConnectionStatus.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgConnectionStatus.cs index 0ca001a35..5342968b5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgConnectionStatus.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgConnectionStatus.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,24 +6,12 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgConnectionStatus : ITypedProtobuf { - static CMsgConnectionStatus ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgConnectionStatusImpl(handle, isManuallyAllocated); - - - public GCConnectionStatus Status { get; set; } - - - public uint ClientSessionNeed { get; set; } - - - public int QueuePosition { get; set; } - - - public int QueueSize { get; set; } - - - public int WaitSeconds { get; set; } - - - public int EstimatedWaitSecondsRemaining { get; set; } - -} + static CMsgConnectionStatus ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgConnectionStatusImpl(handle, isManuallyAllocated); + + public GCConnectionStatus Status { get; set; } + public uint ClientSessionNeed { get; set; } + public int QueuePosition { get; set; } + public int QueueSize { get; set; } + public int WaitSeconds { get; set; } + public int EstimatedWaitSecondsRemaining { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgConsumableExhausted.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgConsumableExhausted.cs index 2743fa836..f15799f45 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgConsumableExhausted.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgConsumableExhausted.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgConsumableExhausted : ITypedProtobuf { - static CMsgConsumableExhausted ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgConsumableExhaustedImpl(handle, isManuallyAllocated); - - - public int ItemDefId { get; set; } + static CMsgConsumableExhausted ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgConsumableExhaustedImpl(handle, isManuallyAllocated); -} + public int ItemDefId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgCsgoSteamUserStatChange.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgCsgoSteamUserStatChange.cs index ccff722df..911f24c66 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgCsgoSteamUserStatChange.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgCsgoSteamUserStatChange.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgCsgoSteamUserStatChange : ITypedProtobuf { - static CMsgCsgoSteamUserStatChange ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgCsgoSteamUserStatChangeImpl(handle, isManuallyAllocated); - - - public int Ecsgosteamuserstat { get; set; } - - - public int Delta { get; set; } - - - public bool Absolute { get; set; } + static CMsgCsgoSteamUserStatChange ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgCsgoSteamUserStatChangeImpl(handle, isManuallyAllocated); -} + public int Ecsgosteamuserstat { get; set; } + public int Delta { get; set; } + public bool Absolute { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgDevNewItemRequest.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgDevNewItemRequest.cs index c9e1f3d1f..df8c26d26 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgDevNewItemRequest.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgDevNewItemRequest.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgDevNewItemRequest : ITypedProtobuf { - static CMsgDevNewItemRequest ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgDevNewItemRequestImpl(handle, isManuallyAllocated); - - - public ulong Receiver { get; set; } - - - public CSOItemCriteria Criteria { get; } + static CMsgDevNewItemRequest ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgDevNewItemRequestImpl(handle, isManuallyAllocated); -} + public ulong Receiver { get; set; } + public CSOItemCriteria Criteria { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgEffectData.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgEffectData.cs index 7e4bca316..a95dd9c49 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgEffectData.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgEffectData.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,63 +6,25 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgEffectData : ITypedProtobuf { - static CMsgEffectData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgEffectDataImpl(handle, isManuallyAllocated); - - - public Vector Origin { get; set; } - - - public Vector Start { get; set; } - - - public Vector Normal { get; set; } - - - public QAngle Angles { get; set; } - - - public uint Entity { get; set; } - - - public uint Otherentity { get; set; } - - - public float Scale { get; set; } - - - public float Magnitude { get; set; } - - - public float Radius { get; set; } - - - public uint Surfaceprop { get; set; } - - - public ulong Effectindex { get; set; } - - - public uint Damagetype { get; set; } - - - public uint Material { get; set; } - - - public uint Hitbox { get; set; } - - - public uint Color { get; set; } - - - public uint Flags { get; set; } - - - public int Attachmentindex { get; set; } - - - public uint Effectname { get; set; } - - - public uint Attachmentname { get; set; } - -} + static CMsgEffectData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgEffectDataImpl(handle, isManuallyAllocated); + + public Vector Origin { get; set; } + public Vector Start { get; set; } + public Vector Normal { get; set; } + public QAngle Angles { get; set; } + public uint Entity { get; set; } + public uint Otherentity { get; set; } + public float Scale { get; set; } + public float Magnitude { get; set; } + public float Radius { get; set; } + public uint Surfaceprop { get; set; } + public ulong Effectindex { get; set; } + public uint Damagetype { get; set; } + public uint Material { get; set; } + public uint Hitbox { get; set; } + public uint Color { get; set; } + public uint Flags { get; set; } + public int Attachmentindex { get; set; } + public uint Effectname { get; set; } + public uint Attachmentname { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCBannedWord.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCBannedWord.cs index 90f6db55d..fc8606606 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCBannedWord.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCBannedWord.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCBannedWord : ITypedProtobuf { - static CMsgGCBannedWord ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCBannedWordImpl(handle, isManuallyAllocated); - - - public uint WordId { get; set; } - - - public GC_BannedWordType WordType { get; set; } - - - public string Word { get; set; } + static CMsgGCBannedWord ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCBannedWordImpl(handle, isManuallyAllocated); -} + public uint WordId { get; set; } + public GC_BannedWordType WordType { get; set; } + public string Word { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCBannedWordListRequest.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCBannedWordListRequest.cs index 55d522045..c0ce290c6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCBannedWordListRequest.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCBannedWordListRequest.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCBannedWordListRequest : ITypedProtobuf { - static CMsgGCBannedWordListRequest ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCBannedWordListRequestImpl(handle, isManuallyAllocated); - - - public uint BanListGroupId { get; set; } - - - public uint WordId { get; set; } + static CMsgGCBannedWordListRequest ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCBannedWordListRequestImpl(handle, isManuallyAllocated); -} + public uint BanListGroupId { get; set; } + public uint WordId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCBannedWordListResponse.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCBannedWordListResponse.cs index 952cb9d12..a6aae9aa0 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCBannedWordListResponse.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCBannedWordListResponse.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCBannedWordListResponse : ITypedProtobuf { - static CMsgGCBannedWordListResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCBannedWordListResponseImpl(handle, isManuallyAllocated); - - - public uint BanListGroupId { get; set; } - - - public IProtobufRepeatedFieldSubMessageType WordList { get; } + static CMsgGCBannedWordListResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCBannedWordListResponseImpl(handle, isManuallyAllocated); -} + public uint BanListGroupId { get; set; } + public IProtobufRepeatedFieldSubMessageType WordList { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_ClientDeepStats.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_ClientDeepStats.cs index 057875279..e4210844b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_ClientDeepStats.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_ClientDeepStats.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_ClientDeepStats : ITypedProtobuf { - static CMsgGCCStrike15_ClientDeepStats ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_ClientDeepStatsImpl(handle, isManuallyAllocated); - - - public uint AccountId { get; set; } - - - public CMsgGCCStrike15_ClientDeepStats_DeepStatsRange Range { get; } - - - public IProtobufRepeatedFieldSubMessageType Matches { get; } + static CMsgGCCStrike15_ClientDeepStats ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_ClientDeepStatsImpl(handle, isManuallyAllocated); -} + public uint AccountId { get; set; } + public CMsgGCCStrike15_ClientDeepStats_DeepStatsRange Range { get; } + public IProtobufRepeatedFieldSubMessageType Matches { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_ClientDeepStats_DeepStatsMatch.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_ClientDeepStats_DeepStatsMatch.cs index 7061371af..f4542beb7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_ClientDeepStats_DeepStatsMatch.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_ClientDeepStats_DeepStatsMatch.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_ClientDeepStats_DeepStatsMatch : ITypedProtobuf { - static CMsgGCCStrike15_ClientDeepStats_DeepStatsMatch ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_ClientDeepStats_DeepStatsMatchImpl(handle, isManuallyAllocated); - - - public DeepPlayerStatsEntry Player { get; } - - - public IProtobufRepeatedFieldSubMessageType Events { get; } + static CMsgGCCStrike15_ClientDeepStats_DeepStatsMatch ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_ClientDeepStats_DeepStatsMatchImpl(handle, isManuallyAllocated); -} + public DeepPlayerStatsEntry Player { get; } + public IProtobufRepeatedFieldSubMessageType Events { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_ClientDeepStats_DeepStatsRange.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_ClientDeepStats_DeepStatsRange.cs index c9d3123be..af3d2547c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_ClientDeepStats_DeepStatsRange.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_ClientDeepStats_DeepStatsRange.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_ClientDeepStats_DeepStatsRange : ITypedProtobuf { - static CMsgGCCStrike15_ClientDeepStats_DeepStatsRange ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_ClientDeepStats_DeepStatsRangeImpl(handle, isManuallyAllocated); - - - public uint Begin { get; set; } - - - public uint End { get; set; } - - - public bool Frozen { get; set; } + static CMsgGCCStrike15_ClientDeepStats_DeepStatsRange ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_ClientDeepStats_DeepStatsRangeImpl(handle, isManuallyAllocated); -} + public uint Begin { get; set; } + public uint End { get; set; } + public bool Frozen { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_GotvSyncPacket.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_GotvSyncPacket.cs index 78d191411..5ea2d330c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_GotvSyncPacket.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_GotvSyncPacket.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_GotvSyncPacket : ITypedProtobuf { - static CMsgGCCStrike15_GotvSyncPacket ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_GotvSyncPacketImpl(handle, isManuallyAllocated); - - - public CEngineGotvSyncPacket Data { get; } + static CMsgGCCStrike15_GotvSyncPacket ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_GotvSyncPacketImpl(handle, isManuallyAllocated); -} + public CEngineGotvSyncPacket Data { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_AccountPrivacySettings.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_AccountPrivacySettings.cs index 10af663e4..360bc0ecb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_AccountPrivacySettings.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_AccountPrivacySettings.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_AccountPrivacySettings : ITypedProtobuf { - static CMsgGCCStrike15_v2_AccountPrivacySettings ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_AccountPrivacySettingsImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType Settings { get; } + static CMsgGCCStrike15_v2_AccountPrivacySettings ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_AccountPrivacySettingsImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType Settings { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_AccountPrivacySettings_Setting.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_AccountPrivacySettings_Setting.cs index 38d682b7a..2360a451a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_AccountPrivacySettings_Setting.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_AccountPrivacySettings_Setting.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_AccountPrivacySettings_Setting : ITypedProtobuf { - static CMsgGCCStrike15_v2_AccountPrivacySettings_Setting ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_AccountPrivacySettings_SettingImpl(handle, isManuallyAllocated); - - - public uint SettingType { get; set; } - - - public uint SettingValue { get; set; } + static CMsgGCCStrike15_v2_AccountPrivacySettings_Setting ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_AccountPrivacySettings_SettingImpl(handle, isManuallyAllocated); -} + public uint SettingType { get; set; } + public uint SettingValue { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Account_RequestCoPlays.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Account_RequestCoPlays.cs index 85a29e44a..eb8fd7282 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Account_RequestCoPlays.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Account_RequestCoPlays.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_Account_RequestCoPlays : ITypedProtobuf { - static CMsgGCCStrike15_v2_Account_RequestCoPlays ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Account_RequestCoPlaysImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType Players { get; } - - - public uint Servertime { get; set; } + static CMsgGCCStrike15_v2_Account_RequestCoPlays ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Account_RequestCoPlaysImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType Players { get; } + public uint Servertime { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Account_RequestCoPlays_Player.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Account_RequestCoPlays_Player.cs index 428798b81..c8e9d071a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Account_RequestCoPlays_Player.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Account_RequestCoPlays_Player.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_Account_RequestCoPlays_Player : ITypedProtobuf { - static CMsgGCCStrike15_v2_Account_RequestCoPlays_Player ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Account_RequestCoPlays_PlayerImpl(handle, isManuallyAllocated); - - - public uint Accountid { get; set; } - - - public uint Rtcoplay { get; set; } - - - public bool Online { get; set; } + static CMsgGCCStrike15_v2_Account_RequestCoPlays_Player ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Account_RequestCoPlays_PlayerImpl(handle, isManuallyAllocated); -} + public uint Accountid { get; set; } + public uint Rtcoplay { get; set; } + public bool Online { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_AcknowledgePenalty.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_AcknowledgePenalty.cs index e80902b03..4f53d7e99 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_AcknowledgePenalty.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_AcknowledgePenalty.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_AcknowledgePenalty : ITypedProtobuf { - static CMsgGCCStrike15_v2_AcknowledgePenalty ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_AcknowledgePenaltyImpl(handle, isManuallyAllocated); - - - public int Acknowledged { get; set; } + static CMsgGCCStrike15_v2_AcknowledgePenalty ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_AcknowledgePenaltyImpl(handle, isManuallyAllocated); -} + public int Acknowledged { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_BetaEnrollment.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_BetaEnrollment.cs index e22eff4e3..ae9cac41e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_BetaEnrollment.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_BetaEnrollment.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_BetaEnrollment : ITypedProtobuf { - static CMsgGCCStrike15_v2_BetaEnrollment ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_BetaEnrollmentImpl(handle, isManuallyAllocated); - - - public uint Eresult { get; set; } + static CMsgGCCStrike15_v2_BetaEnrollment ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_BetaEnrollmentImpl(handle, isManuallyAllocated); -} + public uint Eresult { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequest.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequest.cs index c1581e9af..f34b200c3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequest.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequest.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequest : ITypedProtobuf { - static CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequest ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequestImpl(handle, isManuallyAllocated); - - - public ulong ParamS { get; set; } - - - public ulong ParamA { get; set; } - - - public ulong ParamD { get; set; } - - - public ulong ParamM { get; set; } + static CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequest ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequestImpl(handle, isManuallyAllocated); -} + public ulong ParamS { get; set; } + public ulong ParamA { get; set; } + public ulong ParamD { get; set; } + public ulong ParamM { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponse.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponse.cs index ba09a8687..2fcb01d50 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponse.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponse.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponse : ITypedProtobuf { - static CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponseImpl(handle, isManuallyAllocated); - - - public CEconItemPreviewDataBlock Iteminfo { get; } + static CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponseImpl(handle, isManuallyAllocated); -} + public CEconItemPreviewDataBlock Iteminfo { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin.cs index 23f9fbe15..5c79eb561 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin : ITypedProtobuf { - static CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoinImpl(handle, isManuallyAllocated); - - - public uint Defindex { get; set; } - - - public ulong Upgradeid { get; set; } - - - public uint Hours { get; set; } - - - public uint Prestigetime { get; set; } + static CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoinImpl(handle, isManuallyAllocated); -} + public uint Defindex { get; set; } + public ulong Upgradeid { get; set; } + public uint Hours { get; set; } + public uint Prestigetime { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Client2GCStreamUnlock.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Client2GCStreamUnlock.cs index 4c11482eb..c505bba38 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Client2GCStreamUnlock.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Client2GCStreamUnlock.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_Client2GCStreamUnlock : ITypedProtobuf { - static CMsgGCCStrike15_v2_Client2GCStreamUnlock ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Client2GCStreamUnlockImpl(handle, isManuallyAllocated); - - - public ulong Ticket { get; set; } - - - public int Os { get; set; } + static CMsgGCCStrike15_v2_Client2GCStreamUnlock ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Client2GCStreamUnlockImpl(handle, isManuallyAllocated); -} + public ulong Ticket { get; set; } + public int Os { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Client2GCTextMsg.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Client2GCTextMsg.cs index 9955773d3..917270f1c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Client2GCTextMsg.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Client2GCTextMsg.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_Client2GCTextMsg : ITypedProtobuf { - static CMsgGCCStrike15_v2_Client2GCTextMsg ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Client2GCTextMsgImpl(handle, isManuallyAllocated); - - - public uint Id { get; set; } - - - public IProtobufRepeatedFieldValueType Args { get; } + static CMsgGCCStrike15_v2_Client2GCTextMsg ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Client2GCTextMsgImpl(handle, isManuallyAllocated); -} + public uint Id { get; set; } + public IProtobufRepeatedFieldValueType Args { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Client2GcAckXPShopTracks.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Client2GcAckXPShopTracks.cs index 563a2b8f3..bbfa69002 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Client2GcAckXPShopTracks.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Client2GcAckXPShopTracks.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,7 +6,6 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_Client2GcAckXPShopTracks : ITypedProtobuf { - static CMsgGCCStrike15_v2_Client2GcAckXPShopTracks ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Client2GcAckXPShopTracksImpl(handle, isManuallyAllocated); - + static CMsgGCCStrike15_v2_Client2GcAckXPShopTracks ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Client2GcAckXPShopTracksImpl(handle, isManuallyAllocated); -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientAccountBalance.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientAccountBalance.cs index 197a7ad3c..bc8611497 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientAccountBalance.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientAccountBalance.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ClientAccountBalance : ITypedProtobuf { - static CMsgGCCStrike15_v2_ClientAccountBalance ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientAccountBalanceImpl(handle, isManuallyAllocated); - - - public ulong Amount { get; set; } - - - public string Url { get; set; } + static CMsgGCCStrike15_v2_ClientAccountBalance ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientAccountBalanceImpl(handle, isManuallyAllocated); -} + public ulong Amount { get; set; } + public string Url { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientAuthKeyCode.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientAuthKeyCode.cs index 4294416f3..3c21f3ed6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientAuthKeyCode.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientAuthKeyCode.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ClientAuthKeyCode : ITypedProtobuf { - static CMsgGCCStrike15_v2_ClientAuthKeyCode ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientAuthKeyCodeImpl(handle, isManuallyAllocated); - - - public uint Eventid { get; set; } - - - public string Code { get; set; } + static CMsgGCCStrike15_v2_ClientAuthKeyCode ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientAuthKeyCodeImpl(handle, isManuallyAllocated); -} + public uint Eventid { get; set; } + public string Code { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientCommendPlayer.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientCommendPlayer.cs index 6164a7c06..a19b21a45 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientCommendPlayer.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientCommendPlayer.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ClientCommendPlayer : ITypedProtobuf { - static CMsgGCCStrike15_v2_ClientCommendPlayer ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientCommendPlayerImpl(handle, isManuallyAllocated); - - - public uint AccountId { get; set; } - - - public ulong MatchId { get; set; } - - - public PlayerCommendationInfo Commendation { get; } - - - public uint Tokens { get; set; } + static CMsgGCCStrike15_v2_ClientCommendPlayer ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientCommendPlayerImpl(handle, isManuallyAllocated); -} + public uint AccountId { get; set; } + public ulong MatchId { get; set; } + public PlayerCommendationInfo Commendation { get; } + public uint Tokens { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientGCRankUpdate.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientGCRankUpdate.cs index 014c8caaf..0e711bdb1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientGCRankUpdate.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientGCRankUpdate.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ClientGCRankUpdate : ITypedProtobuf { - static CMsgGCCStrike15_v2_ClientGCRankUpdate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientGCRankUpdateImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType Rankings { get; } + static CMsgGCCStrike15_v2_ClientGCRankUpdate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientGCRankUpdateImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType Rankings { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientLogonFatalError.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientLogonFatalError.cs index 79cd116b7..51092e48e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientLogonFatalError.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientLogonFatalError.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ClientLogonFatalError : ITypedProtobuf { - static CMsgGCCStrike15_v2_ClientLogonFatalError ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientLogonFatalErrorImpl(handle, isManuallyAllocated); - - - public uint Errorcode { get; set; } - - - public string Message { get; set; } - - - public string Country { get; set; } + static CMsgGCCStrike15_v2_ClientLogonFatalError ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientLogonFatalErrorImpl(handle, isManuallyAllocated); -} + public uint Errorcode { get; set; } + public string Message { get; set; } + public string Country { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientNetworkConfig.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientNetworkConfig.cs index 528e3e395..d2337077f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientNetworkConfig.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientNetworkConfig.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ClientNetworkConfig : ITypedProtobuf { - static CMsgGCCStrike15_v2_ClientNetworkConfig ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientNetworkConfigImpl(handle, isManuallyAllocated); - - - public byte[] Data { get; set; } + static CMsgGCCStrike15_v2_ClientNetworkConfig ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientNetworkConfigImpl(handle, isManuallyAllocated); -} + public byte[] Data { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientPartyJoinRelay.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientPartyJoinRelay.cs index 022c2a1ae..50e483293 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientPartyJoinRelay.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientPartyJoinRelay.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ClientPartyJoinRelay : ITypedProtobuf { - static CMsgGCCStrike15_v2_ClientPartyJoinRelay ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientPartyJoinRelayImpl(handle, isManuallyAllocated); - - - public uint Accountid { get; set; } - - - public ulong Lobbyid { get; set; } + static CMsgGCCStrike15_v2_ClientPartyJoinRelay ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientPartyJoinRelayImpl(handle, isManuallyAllocated); -} + public uint Accountid { get; set; } + public ulong Lobbyid { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientPartyWarning.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientPartyWarning.cs index ad33c4f6c..10065e190 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientPartyWarning.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientPartyWarning.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ClientPartyWarning : ITypedProtobuf { - static CMsgGCCStrike15_v2_ClientPartyWarning ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientPartyWarningImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType Entries { get; } + static CMsgGCCStrike15_v2_ClientPartyWarning ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientPartyWarningImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType Entries { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientPartyWarning_Entry.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientPartyWarning_Entry.cs index b32351fde..d1296d5a2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientPartyWarning_Entry.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientPartyWarning_Entry.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ClientPartyWarning_Entry : ITypedProtobuf { - static CMsgGCCStrike15_v2_ClientPartyWarning_Entry ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientPartyWarning_EntryImpl(handle, isManuallyAllocated); - - - public uint Accountid { get; set; } - - - public uint Warntype { get; set; } + static CMsgGCCStrike15_v2_ClientPartyWarning_Entry ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientPartyWarning_EntryImpl(handle, isManuallyAllocated); -} + public uint Accountid { get; set; } + public uint Warntype { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientPerfReport.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientPerfReport.cs index 0f1ef2354..5a3fdcc5e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientPerfReport.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientPerfReport.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ClientPerfReport : ITypedProtobuf { - static CMsgGCCStrike15_v2_ClientPerfReport ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientPerfReportImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType Entries { get; } + static CMsgGCCStrike15_v2_ClientPerfReport ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientPerfReportImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType Entries { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientPerfReport_Entry.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientPerfReport_Entry.cs index 102c102d5..ee0ff8469 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientPerfReport_Entry.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientPerfReport_Entry.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,24 +6,12 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ClientPerfReport_Entry : ITypedProtobuf { - static CMsgGCCStrike15_v2_ClientPerfReport_Entry ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientPerfReport_EntryImpl(handle, isManuallyAllocated); - - - public uint Perfcounter { get; set; } - - - public uint Length { get; set; } - - - public byte[] Reference { get; set; } - - - public byte[] Actual { get; set; } - - - public uint Sourceid { get; set; } - - - public uint Status { get; set; } - -} + static CMsgGCCStrike15_v2_ClientPerfReport_Entry ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientPerfReport_EntryImpl(handle, isManuallyAllocated); + + public uint Perfcounter { get; set; } + public uint Length { get; set; } + public byte[] Reference { get; set; } + public byte[] Actual { get; set; } + public uint Sourceid { get; set; } + public uint Status { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientPlayerDecalSign.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientPlayerDecalSign.cs index 716c170e2..7f1adab72 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientPlayerDecalSign.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientPlayerDecalSign.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ClientPlayerDecalSign : ITypedProtobuf { - static CMsgGCCStrike15_v2_ClientPlayerDecalSign ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientPlayerDecalSignImpl(handle, isManuallyAllocated); - - - public PlayerDecalDigitalSignature Data { get; } - - - public ulong Itemid { get; set; } + static CMsgGCCStrike15_v2_ClientPlayerDecalSign ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientPlayerDecalSignImpl(handle, isManuallyAllocated); -} + public PlayerDecalDigitalSignature Data { get; } + public ulong Itemid { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientPollState.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientPollState.cs index daa6492fe..bde0b8b46 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientPollState.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientPollState.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ClientPollState : ITypedProtobuf { - static CMsgGCCStrike15_v2_ClientPollState ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientPollStateImpl(handle, isManuallyAllocated); - - - public uint Pollid { get; set; } - - - public IProtobufRepeatedFieldValueType Names { get; } - - - public IProtobufRepeatedFieldValueType Values { get; } + static CMsgGCCStrike15_v2_ClientPollState ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientPollStateImpl(handle, isManuallyAllocated); -} + public uint Pollid { get; set; } + public IProtobufRepeatedFieldValueType Names { get; } + public IProtobufRepeatedFieldValueType Values { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientReportPlayer.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientReportPlayer.cs index a024141c0..f3ac3fea9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientReportPlayer.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientReportPlayer.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,33 +6,15 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ClientReportPlayer : ITypedProtobuf { - static CMsgGCCStrike15_v2_ClientReportPlayer ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientReportPlayerImpl(handle, isManuallyAllocated); - - - public uint AccountId { get; set; } - - - public uint RptAimbot { get; set; } - - - public uint RptWallhack { get; set; } - - - public uint RptSpeedhack { get; set; } - - - public uint RptTeamharm { get; set; } - - - public uint RptTextabuse { get; set; } - - - public uint RptVoiceabuse { get; set; } - - - public ulong MatchId { get; set; } - - - public bool ReportFromDemo { get; set; } - -} + static CMsgGCCStrike15_v2_ClientReportPlayer ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientReportPlayerImpl(handle, isManuallyAllocated); + + public uint AccountId { get; set; } + public uint RptAimbot { get; set; } + public uint RptWallhack { get; set; } + public uint RptSpeedhack { get; set; } + public uint RptTeamharm { get; set; } + public uint RptTextabuse { get; set; } + public uint RptVoiceabuse { get; set; } + public ulong MatchId { get; set; } + public bool ReportFromDemo { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientReportResponse.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientReportResponse.cs index 67aa5c024..950a9174f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientReportResponse.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientReportResponse.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,24 +6,12 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ClientReportResponse : ITypedProtobuf { - static CMsgGCCStrike15_v2_ClientReportResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientReportResponseImpl(handle, isManuallyAllocated); - - - public ulong ConfirmationId { get; set; } - - - public uint AccountId { get; set; } - - - public uint ServerIp { get; set; } - - - public uint ResponseType { get; set; } - - - public uint ResponseResult { get; set; } - - - public uint Tokens { get; set; } - -} + static CMsgGCCStrike15_v2_ClientReportResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientReportResponseImpl(handle, isManuallyAllocated); + + public ulong ConfirmationId { get; set; } + public uint AccountId { get; set; } + public uint ServerIp { get; set; } + public uint ResponseType { get; set; } + public uint ResponseResult { get; set; } + public uint Tokens { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientReportServer.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientReportServer.cs index c3871f4d5..061658342 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientReportServer.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientReportServer.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,24 +6,12 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ClientReportServer : ITypedProtobuf { - static CMsgGCCStrike15_v2_ClientReportServer ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientReportServerImpl(handle, isManuallyAllocated); - - - public uint RptPoorperf { get; set; } - - - public uint RptAbusivemodels { get; set; } - - - public uint RptBadmotd { get; set; } - - - public uint RptListingabuse { get; set; } - - - public uint RptInventoryabuse { get; set; } - - - public ulong MatchId { get; set; } - -} + static CMsgGCCStrike15_v2_ClientReportServer ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientReportServerImpl(handle, isManuallyAllocated); + + public uint RptPoorperf { get; set; } + public uint RptAbusivemodels { get; set; } + public uint RptBadmotd { get; set; } + public uint RptListingabuse { get; set; } + public uint RptInventoryabuse { get; set; } + public ulong MatchId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientReportValidation.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientReportValidation.cs index a53d4d070..742786271 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientReportValidation.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientReportValidation.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,66 +6,26 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ClientReportValidation : ITypedProtobuf { - static CMsgGCCStrike15_v2_ClientReportValidation ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientReportValidationImpl(handle, isManuallyAllocated); - - - public string FileReport { get; set; } - - - public string CommandLine { get; set; } - - - public uint TotalFiles { get; set; } - - - public uint InternalError { get; set; } - - - public uint TrustTime { get; set; } - - - public uint CountPending { get; set; } - - - public uint CountCompleted { get; set; } - - - public uint ProcessId { get; set; } - - - public int Osversion { get; set; } - - - public uint Clientreportversion { get; set; } - - - public uint StatusId { get; set; } - - - public uint Diagnostic1 { get; set; } - - - public ulong Diagnostic2 { get; set; } - - - public ulong Diagnostic3 { get; set; } - - - public string LastLaunchData { get; set; } - - - public uint ReportCount { get; set; } - - - public ulong ClientTime { get; set; } - - - public ulong Diagnostic4 { get; set; } - - - public ulong Diagnostic5 { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Diagnostics { get; } - -} + static CMsgGCCStrike15_v2_ClientReportValidation ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientReportValidationImpl(handle, isManuallyAllocated); + + public string FileReport { get; set; } + public string CommandLine { get; set; } + public uint TotalFiles { get; set; } + public uint InternalError { get; set; } + public uint TrustTime { get; set; } + public uint CountPending { get; set; } + public uint CountCompleted { get; set; } + public uint ProcessId { get; set; } + public int Osversion { get; set; } + public uint Clientreportversion { get; set; } + public uint StatusId { get; set; } + public uint Diagnostic1 { get; set; } + public ulong Diagnostic2 { get; set; } + public ulong Diagnostic3 { get; set; } + public string LastLaunchData { get; set; } + public uint ReportCount { get; set; } + public ulong ClientTime { get; set; } + public ulong Diagnostic4 { get; set; } + public ulong Diagnostic5 { get; set; } + public IProtobufRepeatedFieldSubMessageType Diagnostics { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientRequestJoinFriendData.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientRequestJoinFriendData.cs index 40694386c..869bf8d64 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientRequestJoinFriendData.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientRequestJoinFriendData.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,24 +6,12 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ClientRequestJoinFriendData : ITypedProtobuf { - static CMsgGCCStrike15_v2_ClientRequestJoinFriendData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientRequestJoinFriendDataImpl(handle, isManuallyAllocated); - - - public uint Version { get; set; } - - - public uint AccountId { get; set; } - - - public uint JoinToken { get; set; } - - - public uint JoinIpp { get; set; } - - - public CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve Res { get; } - - - public string Errormsg { get; set; } - -} + static CMsgGCCStrike15_v2_ClientRequestJoinFriendData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientRequestJoinFriendDataImpl(handle, isManuallyAllocated); + + public uint Version { get; set; } + public uint AccountId { get; set; } + public uint JoinToken { get; set; } + public uint JoinIpp { get; set; } + public CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve Res { get; } + public string Errormsg { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientRequestJoinServerData.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientRequestJoinServerData.cs index 04c9507c7..749c075d6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientRequestJoinServerData.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientRequestJoinServerData.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,27 +6,13 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ClientRequestJoinServerData : ITypedProtobuf { - static CMsgGCCStrike15_v2_ClientRequestJoinServerData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientRequestJoinServerDataImpl(handle, isManuallyAllocated); - - - public uint Version { get; set; } - - - public uint AccountId { get; set; } - - - public ulong Serverid { get; set; } - - - public uint ServerIp { get; set; } - - - public uint ServerPort { get; set; } - - - public CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve Res { get; } - - - public string Errormsg { get; set; } - -} + static CMsgGCCStrike15_v2_ClientRequestJoinServerData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientRequestJoinServerDataImpl(handle, isManuallyAllocated); + + public uint Version { get; set; } + public uint AccountId { get; set; } + public ulong Serverid { get; set; } + public uint ServerIp { get; set; } + public uint ServerPort { get; set; } + public CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve Res { get; } + public string Errormsg { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientRequestOffers.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientRequestOffers.cs index 8959d3e73..98dcc45a4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientRequestOffers.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientRequestOffers.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,7 +6,6 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ClientRequestOffers : ITypedProtobuf { - static CMsgGCCStrike15_v2_ClientRequestOffers ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientRequestOffersImpl(handle, isManuallyAllocated); - + static CMsgGCCStrike15_v2_ClientRequestOffers ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientRequestOffersImpl(handle, isManuallyAllocated); -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientRequestPlayersProfile.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientRequestPlayersProfile.cs index 3dbd1bd29..e00d55300 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientRequestPlayersProfile.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientRequestPlayersProfile.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ClientRequestPlayersProfile : ITypedProtobuf { - static CMsgGCCStrike15_v2_ClientRequestPlayersProfile ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientRequestPlayersProfileImpl(handle, isManuallyAllocated); - - - public uint RequestIdDeprecated { get; set; } - - - public IProtobufRepeatedFieldValueType AccountIdsDeprecated { get; } - - - public uint AccountId { get; set; } - - - public uint RequestLevel { get; set; } + static CMsgGCCStrike15_v2_ClientRequestPlayersProfile ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientRequestPlayersProfileImpl(handle, isManuallyAllocated); -} + public uint RequestIdDeprecated { get; set; } + public IProtobufRepeatedFieldValueType AccountIdsDeprecated { get; } + public uint AccountId { get; set; } + public uint RequestLevel { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientRequestSouvenir.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientRequestSouvenir.cs index ab5f303f6..8f964919c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientRequestSouvenir.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientRequestSouvenir.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ClientRequestSouvenir : ITypedProtobuf { - static CMsgGCCStrike15_v2_ClientRequestSouvenir ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientRequestSouvenirImpl(handle, isManuallyAllocated); - - - public ulong Itemid { get; set; } - - - public ulong Matchid { get; set; } - - - public int Eventid { get; set; } + static CMsgGCCStrike15_v2_ClientRequestSouvenir ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientRequestSouvenirImpl(handle, isManuallyAllocated); -} + public ulong Itemid { get; set; } + public ulong Matchid { get; set; } + public int Eventid { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientRequestWatchInfoFriends.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientRequestWatchInfoFriends.cs index 31bdc1b34..26293a2bd 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientRequestWatchInfoFriends.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientRequestWatchInfoFriends.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,24 +6,12 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ClientRequestWatchInfoFriends : ITypedProtobuf { - static CMsgGCCStrike15_v2_ClientRequestWatchInfoFriends ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientRequestWatchInfoFriendsImpl(handle, isManuallyAllocated); - - - public uint RequestId { get; set; } - - - public IProtobufRepeatedFieldValueType AccountIds { get; } - - - public ulong Serverid { get; set; } - - - public ulong Matchid { get; set; } - - - public uint ClientLauncher { get; set; } - - - public IProtobufRepeatedFieldSubMessageType DataCenterPings { get; } - -} + static CMsgGCCStrike15_v2_ClientRequestWatchInfoFriends ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientRequestWatchInfoFriendsImpl(handle, isManuallyAllocated); + + public uint RequestId { get; set; } + public IProtobufRepeatedFieldValueType AccountIds { get; } + public ulong Serverid { get; set; } + public ulong Matchid { get; set; } + public uint ClientLauncher { get; set; } + public IProtobufRepeatedFieldSubMessageType DataCenterPings { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientSubmitSurveyVote.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientSubmitSurveyVote.cs index a26c4b389..21cc9578c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientSubmitSurveyVote.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientSubmitSurveyVote.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ClientSubmitSurveyVote : ITypedProtobuf { - static CMsgGCCStrike15_v2_ClientSubmitSurveyVote ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientSubmitSurveyVoteImpl(handle, isManuallyAllocated); - - - public uint SurveyId { get; set; } - - - public uint Vote { get; set; } + static CMsgGCCStrike15_v2_ClientSubmitSurveyVote ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientSubmitSurveyVoteImpl(handle, isManuallyAllocated); -} + public uint SurveyId { get; set; } + public uint Vote { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientToGCChat.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientToGCChat.cs index 7337fa9b0..9f06fcf14 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientToGCChat.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientToGCChat.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ClientToGCChat : ITypedProtobuf { - static CMsgGCCStrike15_v2_ClientToGCChat ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientToGCChatImpl(handle, isManuallyAllocated); - - - public ulong MatchId { get; set; } - - - public string Text { get; set; } + static CMsgGCCStrike15_v2_ClientToGCChat ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientToGCChatImpl(handle, isManuallyAllocated); -} + public ulong MatchId { get; set; } + public string Text { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientToGCRequestElevate.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientToGCRequestElevate.cs index 118d19706..c8d66e202 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientToGCRequestElevate.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientToGCRequestElevate.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ClientToGCRequestElevate : ITypedProtobuf { - static CMsgGCCStrike15_v2_ClientToGCRequestElevate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientToGCRequestElevateImpl(handle, isManuallyAllocated); - - - public uint Stage { get; set; } + static CMsgGCCStrike15_v2_ClientToGCRequestElevate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientToGCRequestElevateImpl(handle, isManuallyAllocated); -} + public uint Stage { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientToGCRequestTicket.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientToGCRequestTicket.cs index 56c1e7ddf..d1b9f6ed0 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientToGCRequestTicket.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientToGCRequestTicket.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ClientToGCRequestTicket : ITypedProtobuf { - static CMsgGCCStrike15_v2_ClientToGCRequestTicket ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientToGCRequestTicketImpl(handle, isManuallyAllocated); - - - public ulong AuthorizedSteamId { get; set; } - - - public uint AuthorizedPublicIp { get; set; } - - - public ulong GameserverSteamId { get; set; } - - - public string GameserverSdrRouting { get; set; } + static CMsgGCCStrike15_v2_ClientToGCRequestTicket ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientToGCRequestTicketImpl(handle, isManuallyAllocated); -} + public ulong AuthorizedSteamId { get; set; } + public uint AuthorizedPublicIp { get; set; } + public ulong GameserverSteamId { get; set; } + public string GameserverSdrRouting { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientVarValueNotificationInfo.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientVarValueNotificationInfo.cs index dbc89d610..9387b939a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientVarValueNotificationInfo.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ClientVarValueNotificationInfo.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,21 +6,11 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ClientVarValueNotificationInfo : ITypedProtobuf { - static CMsgGCCStrike15_v2_ClientVarValueNotificationInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientVarValueNotificationInfoImpl(handle, isManuallyAllocated); - - - public string ValueName { get; set; } - - - public int ValueInt { get; set; } - - - public uint ServerAddr { get; set; } - - - public uint ServerPort { get; set; } - - - public IProtobufRepeatedFieldValueType ChokedBlocks { get; } - -} + static CMsgGCCStrike15_v2_ClientVarValueNotificationInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ClientVarValueNotificationInfoImpl(handle, isManuallyAllocated); + + public string ValueName { get; set; } + public int ValueInt { get; set; } + public uint ServerAddr { get; set; } + public uint ServerPort { get; set; } + public IProtobufRepeatedFieldValueType ChokedBlocks { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Fantasy.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Fantasy.cs index a1100d0df..d3f45211a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Fantasy.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Fantasy.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_Fantasy : ITypedProtobuf { - static CMsgGCCStrike15_v2_Fantasy ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_FantasyImpl(handle, isManuallyAllocated); - - - public uint EventId { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Teams { get; } + static CMsgGCCStrike15_v2_Fantasy ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_FantasyImpl(handle, isManuallyAllocated); -} + public uint EventId { get; set; } + public IProtobufRepeatedFieldSubMessageType Teams { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Fantasy_FantasySlot.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Fantasy_FantasySlot.cs index 638a67331..2ac4d30d4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Fantasy_FantasySlot.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Fantasy_FantasySlot.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_Fantasy_FantasySlot : ITypedProtobuf { - static CMsgGCCStrike15_v2_Fantasy_FantasySlot ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Fantasy_FantasySlotImpl(handle, isManuallyAllocated); - - - public int Type { get; set; } - - - public int Pick { get; set; } - - - public ulong Itemid { get; set; } + static CMsgGCCStrike15_v2_Fantasy_FantasySlot ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Fantasy_FantasySlotImpl(handle, isManuallyAllocated); -} + public int Type { get; set; } + public int Pick { get; set; } + public ulong Itemid { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Fantasy_FantasyTeam.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Fantasy_FantasyTeam.cs index 1a72f9821..37b1ff8b4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Fantasy_FantasyTeam.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Fantasy_FantasyTeam.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_Fantasy_FantasyTeam : ITypedProtobuf { - static CMsgGCCStrike15_v2_Fantasy_FantasyTeam ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Fantasy_FantasyTeamImpl(handle, isManuallyAllocated); - - - public int Sectionid { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Slots { get; } + static CMsgGCCStrike15_v2_Fantasy_FantasyTeam ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Fantasy_FantasyTeamImpl(handle, isManuallyAllocated); -} + public int Sectionid { get; set; } + public IProtobufRepeatedFieldSubMessageType Slots { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ClientInitSystem.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ClientInitSystem.cs index 972806808..af9a547ce 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ClientInitSystem.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ClientInitSystem.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,33 +6,15 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_GC2ClientInitSystem : ITypedProtobuf { - static CMsgGCCStrike15_v2_GC2ClientInitSystem ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_GC2ClientInitSystemImpl(handle, isManuallyAllocated); - - - public bool Load { get; set; } - - - public string Name { get; set; } - - - public string Outputname { get; set; } - - - public byte[] KeyData { get; set; } - - - public byte[] ShaHash { get; set; } - - - public int Cookie { get; set; } - - - public string Manifest { get; set; } - - - public byte[] SystemPackage { get; set; } - - - public bool LoadSystem { get; set; } - -} + static CMsgGCCStrike15_v2_GC2ClientInitSystem ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_GC2ClientInitSystemImpl(handle, isManuallyAllocated); + + public bool Load { get; set; } + public string Name { get; set; } + public string Outputname { get; set; } + public byte[] KeyData { get; set; } + public byte[] ShaHash { get; set; } + public int Cookie { get; set; } + public string Manifest { get; set; } + public byte[] SystemPackage { get; set; } + public bool LoadSystem { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ClientInitSystem_Response.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ClientInitSystem_Response.cs index d9251bbb6..e5df577fa 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ClientInitSystem_Response.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ClientInitSystem_Response.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,36 +6,16 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_GC2ClientInitSystem_Response : ITypedProtobuf { - static CMsgGCCStrike15_v2_GC2ClientInitSystem_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_GC2ClientInitSystem_ResponseImpl(handle, isManuallyAllocated); - - - public bool Success { get; set; } - - - public string Diagnostic { get; set; } - - - public byte[] ShaHash { get; set; } - - - public int Response { get; set; } - - - public int ErrorCode1 { get; set; } - - - public int ErrorCode2 { get; set; } - - - public long Handle { get; set; } - - - public EInitSystemResult EinitResult { get; set; } - - - public int AuxSystem1 { get; set; } - - - public int AuxSystem2 { get; set; } - -} + static CMsgGCCStrike15_v2_GC2ClientInitSystem_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_GC2ClientInitSystem_ResponseImpl(handle, isManuallyAllocated); + + public bool Success { get; set; } + public string Diagnostic { get; set; } + public byte[] ShaHash { get; set; } + public int Response { get; set; } + public int ErrorCode1 { get; set; } + public int ErrorCode2 { get; set; } + public long Handle { get; set; } + public EInitSystemResult EinitResult { get; set; } + public int AuxSystem1 { get; set; } + public int AuxSystem2 { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ClientNotifyXPShop.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ClientNotifyXPShop.cs index ce576dfe8..1840199a6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ClientNotifyXPShop.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ClientNotifyXPShop.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_GC2ClientNotifyXPShop : ITypedProtobuf { - static CMsgGCCStrike15_v2_GC2ClientNotifyXPShop ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_GC2ClientNotifyXPShopImpl(handle, isManuallyAllocated); - - - public CSOAccountXpShop Prematch { get; } - - - public CSOAccountXpShop Postmatch { get; } - - - public uint CurrentXp { get; set; } - - - public uint CurrentLevel { get; set; } + static CMsgGCCStrike15_v2_GC2ClientNotifyXPShop ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_GC2ClientNotifyXPShopImpl(handle, isManuallyAllocated); -} + public CSOAccountXpShop Prematch { get; } + public CSOAccountXpShop Postmatch { get; } + public uint CurrentXp { get; set; } + public uint CurrentLevel { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ClientRefuseSecureMode.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ClientRefuseSecureMode.cs index 92c1bd50f..070ddc6b9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ClientRefuseSecureMode.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ClientRefuseSecureMode.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,33 +6,15 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_GC2ClientRefuseSecureMode : ITypedProtobuf { - static CMsgGCCStrike15_v2_GC2ClientRefuseSecureMode ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_GC2ClientRefuseSecureModeImpl(handle, isManuallyAllocated); - - - public string FileReport { get; set; } - - - public bool OfferInsecureMode { get; set; } - - - public bool OfferSecureMode { get; set; } - - - public bool ShowUnsignedUi { get; set; } - - - public bool KickUser { get; set; } - - - public bool ShowTrustedUi { get; set; } - - - public bool ShowWarningNotTrusted { get; set; } - - - public bool ShowWarningNotTrusted2 { get; set; } - - - public string FilesPreventedTrusted { get; set; } - -} + static CMsgGCCStrike15_v2_GC2ClientRefuseSecureMode ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_GC2ClientRefuseSecureModeImpl(handle, isManuallyAllocated); + + public string FileReport { get; set; } + public bool OfferInsecureMode { get; set; } + public bool OfferSecureMode { get; set; } + public bool ShowUnsignedUi { get; set; } + public bool KickUser { get; set; } + public bool ShowTrustedUi { get; set; } + public bool ShowWarningNotTrusted { get; set; } + public bool ShowWarningNotTrusted2 { get; set; } + public string FilesPreventedTrusted { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ClientRequestValidation.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ClientRequestValidation.cs index 54c648a5c..e76fbedaa 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ClientRequestValidation.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ClientRequestValidation.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_GC2ClientRequestValidation : ITypedProtobuf { - static CMsgGCCStrike15_v2_GC2ClientRequestValidation ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_GC2ClientRequestValidationImpl(handle, isManuallyAllocated); - - - public bool FullReport { get; set; } - - - public string Module { get; set; } + static CMsgGCCStrike15_v2_GC2ClientRequestValidation ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_GC2ClientRequestValidationImpl(handle, isManuallyAllocated); -} + public bool FullReport { get; set; } + public string Module { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ClientTextMsg.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ClientTextMsg.cs index d98d60fae..d3b0556c5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ClientTextMsg.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ClientTextMsg.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_GC2ClientTextMsg : ITypedProtobuf { - static CMsgGCCStrike15_v2_GC2ClientTextMsg ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_GC2ClientTextMsgImpl(handle, isManuallyAllocated); - - - public uint Id { get; set; } - - - public uint Type { get; set; } - - - public byte[] Payload { get; set; } + static CMsgGCCStrike15_v2_GC2ClientTextMsg ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_GC2ClientTextMsgImpl(handle, isManuallyAllocated); -} + public uint Id { get; set; } + public uint Type { get; set; } + public byte[] Payload { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ClientTournamentInfo.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ClientTournamentInfo.cs index 958677be0..c2971bb4a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ClientTournamentInfo.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ClientTournamentInfo.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_GC2ClientTournamentInfo : ITypedProtobuf { - static CMsgGCCStrike15_v2_GC2ClientTournamentInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_GC2ClientTournamentInfoImpl(handle, isManuallyAllocated); - - - public uint Eventid { get; set; } - - - public uint Stageid { get; set; } - - - public uint GameType { get; set; } - - - public IProtobufRepeatedFieldValueType Teamids { get; } + static CMsgGCCStrike15_v2_GC2ClientTournamentInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_GC2ClientTournamentInfoImpl(handle, isManuallyAllocated); -} + public uint Eventid { get; set; } + public uint Stageid { get; set; } + public uint GameType { get; set; } + public IProtobufRepeatedFieldValueType Teamids { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ServerReservationUpdate.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ServerReservationUpdate.cs index 923226710..d10a0deae 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ServerReservationUpdate.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GC2ServerReservationUpdate.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_GC2ServerReservationUpdate : ITypedProtobuf { - static CMsgGCCStrike15_v2_GC2ServerReservationUpdate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_GC2ServerReservationUpdateImpl(handle, isManuallyAllocated); - - - public uint ViewersExternalTotal { get; set; } - - - public uint ViewersExternalSteam { get; set; } + static CMsgGCCStrike15_v2_GC2ServerReservationUpdate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_GC2ServerReservationUpdateImpl(handle, isManuallyAllocated); -} + public uint ViewersExternalTotal { get; set; } + public uint ViewersExternalSteam { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GCToClientChat.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GCToClientChat.cs index cc64131df..c36669a0a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GCToClientChat.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GCToClientChat.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_GCToClientChat : ITypedProtobuf { - static CMsgGCCStrike15_v2_GCToClientChat ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_GCToClientChatImpl(handle, isManuallyAllocated); - - - public uint AccountId { get; set; } - - - public string Text { get; set; } + static CMsgGCCStrike15_v2_GCToClientChat ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_GCToClientChatImpl(handle, isManuallyAllocated); -} + public uint AccountId { get; set; } + public string Text { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GetEventFavorites_Request.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GetEventFavorites_Request.cs index 7ada62d7a..e63d14d16 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GetEventFavorites_Request.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GetEventFavorites_Request.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_GetEventFavorites_Request : ITypedProtobuf { - static CMsgGCCStrike15_v2_GetEventFavorites_Request ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_GetEventFavorites_RequestImpl(handle, isManuallyAllocated); - - - public bool AllEvents { get; set; } + static CMsgGCCStrike15_v2_GetEventFavorites_Request ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_GetEventFavorites_RequestImpl(handle, isManuallyAllocated); -} + public bool AllEvents { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GetEventFavorites_Response.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GetEventFavorites_Response.cs index e5fed13fc..f4fc77743 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GetEventFavorites_Response.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GetEventFavorites_Response.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_GetEventFavorites_Response : ITypedProtobuf { - static CMsgGCCStrike15_v2_GetEventFavorites_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_GetEventFavorites_ResponseImpl(handle, isManuallyAllocated); - - - public bool AllEvents { get; set; } - - - public string JsonFavorites { get; set; } - - - public string JsonFeatured { get; set; } + static CMsgGCCStrike15_v2_GetEventFavorites_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_GetEventFavorites_ResponseImpl(handle, isManuallyAllocated); -} + public bool AllEvents { get; set; } + public string JsonFavorites { get; set; } + public string JsonFeatured { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GiftsLeaderboardRequest.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GiftsLeaderboardRequest.cs index 969e45004..fdd7c2a25 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GiftsLeaderboardRequest.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GiftsLeaderboardRequest.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,7 +6,6 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_GiftsLeaderboardRequest : ITypedProtobuf { - static CMsgGCCStrike15_v2_GiftsLeaderboardRequest ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_GiftsLeaderboardRequestImpl(handle, isManuallyAllocated); - + static CMsgGCCStrike15_v2_GiftsLeaderboardRequest ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_GiftsLeaderboardRequestImpl(handle, isManuallyAllocated); -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GiftsLeaderboardResponse.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GiftsLeaderboardResponse.cs index 3d6c49120..0914c07a8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GiftsLeaderboardResponse.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GiftsLeaderboardResponse.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,21 +6,11 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_GiftsLeaderboardResponse : ITypedProtobuf { - static CMsgGCCStrike15_v2_GiftsLeaderboardResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_GiftsLeaderboardResponseImpl(handle, isManuallyAllocated); - - - public uint Servertime { get; set; } - - - public uint TimePeriodSeconds { get; set; } - - - public uint TotalGiftsGiven { get; set; } - - - public uint TotalGivers { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Entries { get; } - -} + static CMsgGCCStrike15_v2_GiftsLeaderboardResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_GiftsLeaderboardResponseImpl(handle, isManuallyAllocated); + + public uint Servertime { get; set; } + public uint TimePeriodSeconds { get; set; } + public uint TotalGiftsGiven { get; set; } + public uint TotalGivers { get; set; } + public IProtobufRepeatedFieldSubMessageType Entries { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GiftsLeaderboardResponse_GiftLeaderboardEntry.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GiftsLeaderboardResponse_GiftLeaderboardEntry.cs index 27c0e08e4..3aa2d244d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GiftsLeaderboardResponse_GiftLeaderboardEntry.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_GiftsLeaderboardResponse_GiftLeaderboardEntry.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_GiftsLeaderboardResponse_GiftLeaderboardEntry : ITypedProtobuf { - static CMsgGCCStrike15_v2_GiftsLeaderboardResponse_GiftLeaderboardEntry ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_GiftsLeaderboardResponse_GiftLeaderboardEntryImpl(handle, isManuallyAllocated); - - - public uint Accountid { get; set; } - - - public uint Gifts { get; set; } + static CMsgGCCStrike15_v2_GiftsLeaderboardResponse_GiftLeaderboardEntry ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_GiftsLeaderboardResponse_GiftLeaderboardEntryImpl(handle, isManuallyAllocated); -} + public uint Accountid { get; set; } + public uint Gifts { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchEndRewardDropsNotification.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchEndRewardDropsNotification.cs index 0ab6d5d63..e45a4afcd 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchEndRewardDropsNotification.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchEndRewardDropsNotification.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_MatchEndRewardDropsNotification : ITypedProtobuf { - static CMsgGCCStrike15_v2_MatchEndRewardDropsNotification ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchEndRewardDropsNotificationImpl(handle, isManuallyAllocated); - - - public CEconItemPreviewDataBlock Iteminfo { get; } + static CMsgGCCStrike15_v2_MatchEndRewardDropsNotification ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchEndRewardDropsNotificationImpl(handle, isManuallyAllocated); -} + public CEconItemPreviewDataBlock Iteminfo { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchEndRunRewardDrops.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchEndRunRewardDrops.cs index 1d5116b7c..ef57f5378 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchEndRunRewardDrops.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchEndRunRewardDrops.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_MatchEndRunRewardDrops : ITypedProtobuf { - static CMsgGCCStrike15_v2_MatchEndRunRewardDrops ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchEndRunRewardDropsImpl(handle, isManuallyAllocated); - - - public CMsgGCCStrike15_v2_MatchmakingServerReservationResponse Serverinfo { get; } - - - public CMsgGC_ServerQuestUpdateData MatchEndQuestData { get; } + static CMsgGCCStrike15_v2_MatchEndRunRewardDrops ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchEndRunRewardDropsImpl(handle, isManuallyAllocated); -} + public CMsgGCCStrike15_v2_MatchmakingServerReservationResponse Serverinfo { get; } + public CMsgGC_ServerQuestUpdateData MatchEndQuestData { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchList.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchList.cs index 1b629dde7..4af5ffc89 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchList.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchList.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,24 +6,12 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_MatchList : ITypedProtobuf { - static CMsgGCCStrike15_v2_MatchList ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchListImpl(handle, isManuallyAllocated); - - - public uint Msgrequestid { get; set; } - - - public uint Accountid { get; set; } - - - public uint Servertime { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Matches { get; } - - - public IProtobufRepeatedFieldSubMessageType Streams { get; } - - - public CDataGCCStrike15_v2_TournamentInfo Tournamentinfo { get; } - -} + static CMsgGCCStrike15_v2_MatchList ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchListImpl(handle, isManuallyAllocated); + + public uint Msgrequestid { get; set; } + public uint Accountid { get; set; } + public uint Servertime { get; set; } + public IProtobufRepeatedFieldSubMessageType Matches { get; } + public IProtobufRepeatedFieldSubMessageType Streams { get; } + public CDataGCCStrike15_v2_TournamentInfo Tournamentinfo { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchListRequestCurrentLiveGames.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchListRequestCurrentLiveGames.cs index 33383b69c..7ca070e00 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchListRequestCurrentLiveGames.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchListRequestCurrentLiveGames.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,7 +6,6 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_MatchListRequestCurrentLiveGames : ITypedProtobuf { - static CMsgGCCStrike15_v2_MatchListRequestCurrentLiveGames ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchListRequestCurrentLiveGamesImpl(handle, isManuallyAllocated); - + static CMsgGCCStrike15_v2_MatchListRequestCurrentLiveGames ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchListRequestCurrentLiveGamesImpl(handle, isManuallyAllocated); -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchListRequestFullGameInfo.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchListRequestFullGameInfo.cs index 376b97ba4..cc60f0752 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchListRequestFullGameInfo.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchListRequestFullGameInfo.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_MatchListRequestFullGameInfo : ITypedProtobuf { - static CMsgGCCStrike15_v2_MatchListRequestFullGameInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchListRequestFullGameInfoImpl(handle, isManuallyAllocated); - - - public ulong Matchid { get; set; } - - - public ulong Outcomeid { get; set; } - - - public uint Token { get; set; } + static CMsgGCCStrike15_v2_MatchListRequestFullGameInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchListRequestFullGameInfoImpl(handle, isManuallyAllocated); -} + public ulong Matchid { get; set; } + public ulong Outcomeid { get; set; } + public uint Token { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchListRequestLiveGameForUser.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchListRequestLiveGameForUser.cs index 7c623825f..17f128dc1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchListRequestLiveGameForUser.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchListRequestLiveGameForUser.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_MatchListRequestLiveGameForUser : ITypedProtobuf { - static CMsgGCCStrike15_v2_MatchListRequestLiveGameForUser ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchListRequestLiveGameForUserImpl(handle, isManuallyAllocated); - - - public uint Accountid { get; set; } + static CMsgGCCStrike15_v2_MatchListRequestLiveGameForUser ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchListRequestLiveGameForUserImpl(handle, isManuallyAllocated); -} + public uint Accountid { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchListRequestRecentUserGames.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchListRequestRecentUserGames.cs index b3079e36a..816515a95 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchListRequestRecentUserGames.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchListRequestRecentUserGames.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_MatchListRequestRecentUserGames : ITypedProtobuf { - static CMsgGCCStrike15_v2_MatchListRequestRecentUserGames ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchListRequestRecentUserGamesImpl(handle, isManuallyAllocated); - - - public uint Accountid { get; set; } + static CMsgGCCStrike15_v2_MatchListRequestRecentUserGames ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchListRequestRecentUserGamesImpl(handle, isManuallyAllocated); -} + public uint Accountid { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchListRequestTournamentGames.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchListRequestTournamentGames.cs index f7d860bf2..b8fd7a871 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchListRequestTournamentGames.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchListRequestTournamentGames.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_MatchListRequestTournamentGames : ITypedProtobuf { - static CMsgGCCStrike15_v2_MatchListRequestTournamentGames ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchListRequestTournamentGamesImpl(handle, isManuallyAllocated); - - - public int Eventid { get; set; } + static CMsgGCCStrike15_v2_MatchListRequestTournamentGames ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchListRequestTournamentGamesImpl(handle, isManuallyAllocated); -} + public int Eventid { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchListTournamentOperatorMgmt.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchListTournamentOperatorMgmt.cs index 3a8c84ab7..33b0aa586 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchListTournamentOperatorMgmt.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchListTournamentOperatorMgmt.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_MatchListTournamentOperatorMgmt : ITypedProtobuf { - static CMsgGCCStrike15_v2_MatchListTournamentOperatorMgmt ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchListTournamentOperatorMgmtImpl(handle, isManuallyAllocated); - - - public int Eventid { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Matches { get; } - - - public uint Accountid { get; set; } + static CMsgGCCStrike15_v2_MatchListTournamentOperatorMgmt ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchListTournamentOperatorMgmtImpl(handle, isManuallyAllocated); -} + public int Eventid { get; set; } + public IProtobufRepeatedFieldSubMessageType Matches { get; } + public uint Accountid { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingClient2GCHello.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingClient2GCHello.cs index 9f731aef1..50b0bc6b0 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingClient2GCHello.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingClient2GCHello.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,7 +6,6 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_MatchmakingClient2GCHello : ITypedProtobuf { - static CMsgGCCStrike15_v2_MatchmakingClient2GCHello ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingClient2GCHelloImpl(handle, isManuallyAllocated); - + static CMsgGCCStrike15_v2_MatchmakingClient2GCHello ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingClient2GCHelloImpl(handle, isManuallyAllocated); -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingClient2ServerPing.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingClient2ServerPing.cs index 651a14d38..c0246b297 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingClient2ServerPing.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingClient2ServerPing.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,33 +6,15 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_MatchmakingClient2ServerPing : ITypedProtobuf { - static CMsgGCCStrike15_v2_MatchmakingClient2ServerPing ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingClient2ServerPingImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType Gameserverpings { get; } - - - public int OffsetIndex { get; set; } - - - public int FinalBatch { get; set; } - - - public IProtobufRepeatedFieldSubMessageType DataCenterPings { get; } - - - public uint MaxPing { get; set; } - - - public uint TestToken { get; set; } - - - public byte[] SearchKey { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Notes { get; } - - - public string DebugMessage { get; set; } - -} + static CMsgGCCStrike15_v2_MatchmakingClient2ServerPing ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingClient2ServerPingImpl(handle, isManuallyAllocated); + + public IProtobufRepeatedFieldSubMessageType Gameserverpings { get; } + public int OffsetIndex { get; set; } + public int FinalBatch { get; set; } + public IProtobufRepeatedFieldSubMessageType DataCenterPings { get; } + public uint MaxPing { get; set; } + public uint TestToken { get; set; } + public byte[] SearchKey { get; set; } + public IProtobufRepeatedFieldSubMessageType Notes { get; } + public string DebugMessage { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ClientAbandon.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ClientAbandon.cs index fdea75201..0d218c161 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ClientAbandon.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ClientAbandon.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_MatchmakingGC2ClientAbandon : ITypedProtobuf { - static CMsgGCCStrike15_v2_MatchmakingGC2ClientAbandon ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingGC2ClientAbandonImpl(handle, isManuallyAllocated); - - - public uint AccountId { get; set; } - - - public CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve AbandonedMatch { get; } - - - public uint PenaltySeconds { get; set; } - - - public uint PenaltyReason { get; set; } + static CMsgGCCStrike15_v2_MatchmakingGC2ClientAbandon ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingGC2ClientAbandonImpl(handle, isManuallyAllocated); -} + public uint AccountId { get; set; } + public CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve AbandonedMatch { get; } + public uint PenaltySeconds { get; set; } + public uint PenaltyReason { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ClientHello.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ClientHello.cs index 4e56644c1..1db94b47c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ClientHello.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ClientHello.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,66 +6,26 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_MatchmakingGC2ClientHello : ITypedProtobuf { - static CMsgGCCStrike15_v2_MatchmakingGC2ClientHello ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingGC2ClientHelloImpl(handle, isManuallyAllocated); - - - public uint AccountId { get; set; } - - - public CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve Ongoingmatch { get; } - - - public GlobalStatistics GlobalStats { get; } - - - public uint PenaltySeconds { get; set; } - - - public uint PenaltyReason { get; set; } - - - public int VacBanned { get; set; } - - - public PlayerRankingInfo Ranking { get; } - - - public PlayerCommendationInfo Commendation { get; } - - - public PlayerMedalsInfo Medals { get; } - - - public TournamentEvent MyCurrentEvent { get; } - - - public IProtobufRepeatedFieldSubMessageType MyCurrentEventTeams { get; } - - - public TournamentTeam MyCurrentTeam { get; } - - - public IProtobufRepeatedFieldSubMessageType MyCurrentEventStages { get; } - - - public uint SurveyVote { get; set; } - - - public AccountActivity Activity { get; } - - - public int PlayerLevel { get; set; } - - - public int PlayerCurXp { get; set; } - - - public int PlayerXpBonusFlags { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Rankings { get; } - - - public ulong Owcaseid { get; set; } - -} + static CMsgGCCStrike15_v2_MatchmakingGC2ClientHello ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingGC2ClientHelloImpl(handle, isManuallyAllocated); + + public uint AccountId { get; set; } + public CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve Ongoingmatch { get; } + public GlobalStatistics GlobalStats { get; } + public uint PenaltySeconds { get; set; } + public uint PenaltyReason { get; set; } + public int VacBanned { get; set; } + public PlayerRankingInfo Ranking { get; } + public PlayerCommendationInfo Commendation { get; } + public PlayerMedalsInfo Medals { get; } + public TournamentEvent MyCurrentEvent { get; } + public IProtobufRepeatedFieldSubMessageType MyCurrentEventTeams { get; } + public TournamentTeam MyCurrentTeam { get; } + public IProtobufRepeatedFieldSubMessageType MyCurrentEventStages { get; } + public uint SurveyVote { get; set; } + public AccountActivity Activity { get; } + public int PlayerLevel { get; set; } + public int PlayerCurXp { get; set; } + public int PlayerXpBonusFlags { get; set; } + public IProtobufRepeatedFieldSubMessageType Rankings { get; } + public ulong Owcaseid { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve.cs index eb2e85a09..54d9203e3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,33 +6,15 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve : ITypedProtobuf { - static CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingGC2ClientReserveImpl(handle, isManuallyAllocated); - - - public ulong Serverid { get; set; } - - - public uint DirectUdpIp { get; set; } - - - public uint DirectUdpPort { get; set; } - - - public ulong Reservationid { get; set; } - - - public CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve Reservation { get; } - - - public string Map { get; set; } - - - public string ServerAddress { get; set; } - - - public DataCenterPing GsPing { get; } - - - public uint GsLocationId { get; set; } - -} + static CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingGC2ClientReserveImpl(handle, isManuallyAllocated); + + public ulong Serverid { get; set; } + public uint DirectUdpIp { get; set; } + public uint DirectUdpPort { get; set; } + public ulong Reservationid { get; set; } + public CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve Reservation { get; } + public string Map { get; set; } + public string ServerAddress { get; set; } + public DataCenterPing GsPing { get; } + public uint GsLocationId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStats.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStats.cs index c56b087a7..3b7fe8100 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStats.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStats.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,21 +6,11 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStats : ITypedProtobuf { - static CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStats ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStatsImpl(handle, isManuallyAllocated); - - - public uint GsLocationId { get; set; } - - - public uint DataCenterId { get; set; } - - - public uint NumLockedIn { get; set; } - - - public uint NumFoundNearby { get; set; } - - - public uint NoteLevel { get; set; } - -} + static CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStats ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingGC2ClientSearchStatsImpl(handle, isManuallyAllocated); + + public uint GsLocationId { get; set; } + public uint DataCenterId { get; set; } + public uint NumLockedIn { get; set; } + public uint NumFoundNearby { get; set; } + public uint NoteLevel { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate.cs index 77caec4a6..be041a5a9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,54 +6,22 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate : ITypedProtobuf { - static CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdateImpl(handle, isManuallyAllocated); - - - public int Matchmaking { get; set; } - - - public IProtobufRepeatedFieldValueType WaitingAccountIdSessions { get; } - - - public string Error { get; set; } - - - public IProtobufRepeatedFieldValueType OngoingmatchAccountIdSessions { get; } - - - public GlobalStatistics GlobalStats { get; } - - - public IProtobufRepeatedFieldValueType FailpingAccountIdSessions { get; } - - - public IProtobufRepeatedFieldValueType PenaltyAccountIdSessions { get; } - - - public IProtobufRepeatedFieldValueType FailreadyAccountIdSessions { get; } - - - public IProtobufRepeatedFieldValueType VacbannedAccountIdSessions { get; } - - - public IpAddressMask ServerIpaddressMask { get; } - - - public IProtobufRepeatedFieldSubMessageType Notes { get; } - - - public IProtobufRepeatedFieldValueType PenaltyAccountIdSessionsGreen { get; } - - - public IProtobufRepeatedFieldValueType InsufficientlevelSessions { get; } - - - public IProtobufRepeatedFieldValueType VsncheckAccountIdSessions { get; } - - - public IProtobufRepeatedFieldValueType LauncherMismatchSessions { get; } - - - public IProtobufRepeatedFieldValueType InsecureAccountIdSessions { get; } - -} + static CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdateImpl(handle, isManuallyAllocated); + + public int Matchmaking { get; set; } + public IProtobufRepeatedFieldValueType WaitingAccountIdSessions { get; } + public string Error { get; set; } + public IProtobufRepeatedFieldValueType OngoingmatchAccountIdSessions { get; } + public GlobalStatistics GlobalStats { get; } + public IProtobufRepeatedFieldValueType FailpingAccountIdSessions { get; } + public IProtobufRepeatedFieldValueType PenaltyAccountIdSessions { get; } + public IProtobufRepeatedFieldValueType FailreadyAccountIdSessions { get; } + public IProtobufRepeatedFieldValueType VacbannedAccountIdSessions { get; } + public IpAddressMask ServerIpaddressMask { get; } + public IProtobufRepeatedFieldSubMessageType Notes { get; } + public IProtobufRepeatedFieldValueType PenaltyAccountIdSessionsGreen { get; } + public IProtobufRepeatedFieldValueType InsufficientlevelSessions { get; } + public IProtobufRepeatedFieldValueType VsncheckAccountIdSessions { get; } + public IProtobufRepeatedFieldValueType LauncherMismatchSessions { get; } + public IProtobufRepeatedFieldValueType InsecureAccountIdSessions { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate_Note.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate_Note.cs index 5cae3d44a..80e913cba 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate_Note.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate_Note.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate_Note : ITypedProtobuf { - static CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate_Note ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate_NoteImpl(handle, isManuallyAllocated); - - - public int Type { get; set; } - - - public int RegionId { get; set; } - - - public float RegionR { get; set; } - - - public float Distance { get; set; } + static CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate_Note ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate_NoteImpl(handle, isManuallyAllocated); -} + public int Type { get; set; } + public int RegionId { get; set; } + public float RegionR { get; set; } + public float Distance { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirm.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirm.cs index cd01b8cc0..633ec5f4b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirm.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirm.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirm : ITypedProtobuf { - static CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirm ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirmImpl(handle, isManuallyAllocated); - - - public uint Token { get; set; } - - - public uint Stamp { get; set; } - - - public ulong Exchange { get; set; } - - - public uint Retry { get; set; } + static CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirm ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirmImpl(handle, isManuallyAllocated); -} + public uint Token { get; set; } + public uint Stamp { get; set; } + public ulong Exchange { get; set; } + public uint Retry { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve.cs index d713d43db..9d7f017e7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,69 +6,27 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve : ITypedProtobuf { - static CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingGC2ServerReserveImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldValueType AccountIds { get; } - - - public uint GameType { get; set; } - - - public ulong MatchId { get; set; } - - - public uint ServerVersion { get; set; } - - - public uint Flags { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Rankings { get; } - - - public ulong EncryptionKey { get; set; } - - - public ulong EncryptionKeyPub { get; set; } - - - public IProtobufRepeatedFieldValueType PartyIds { get; } - - - public IProtobufRepeatedFieldSubMessageType Whitelist { get; } - - - public ulong TvMasterSteamid { get; set; } - - - public TournamentEvent TournamentEvent { get; } - - - public IProtobufRepeatedFieldSubMessageType TournamentTeams { get; } - - - public IProtobufRepeatedFieldValueType TournamentCastersAccountIds { get; } - - - public ulong TvRelaySteamid { get; set; } - - - public CPreMatchInfoData PreMatchData { get; } - - - public uint TvControl { get; set; } - - - public IProtobufRepeatedFieldSubMessageType OpVarValues { get; } - - - public uint SocacheControl { get; set; } - - - public IProtobufRepeatedFieldValueType TeammateColors { get; } - - - public uint MatchIdAdditional { get; set; } - -} + static CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingGC2ServerReserveImpl(handle, isManuallyAllocated); + + public IProtobufRepeatedFieldValueType AccountIds { get; } + public uint GameType { get; set; } + public ulong MatchId { get; set; } + public uint ServerVersion { get; set; } + public uint Flags { get; set; } + public IProtobufRepeatedFieldSubMessageType Rankings { get; } + public ulong EncryptionKey { get; set; } + public ulong EncryptionKeyPub { get; set; } + public IProtobufRepeatedFieldValueType PartyIds { get; } + public IProtobufRepeatedFieldSubMessageType Whitelist { get; } + public ulong TvMasterSteamid { get; set; } + public TournamentEvent TournamentEvent { get; } + public IProtobufRepeatedFieldSubMessageType TournamentTeams { get; } + public IProtobufRepeatedFieldValueType TournamentCastersAccountIds { get; } + public ulong TvRelaySteamid { get; set; } + public CPreMatchInfoData PreMatchData { get; } + public uint TvControl { get; set; } + public IProtobufRepeatedFieldSubMessageType OpVarValues { get; } + public uint SocacheControl { get; set; } + public IProtobufRepeatedFieldValueType TeammateColors { get; } + public uint MatchIdAdditional { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdate.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdate.cs index 2270a36aa..520ebff00 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdate.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdate.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdate : ITypedProtobuf { - static CMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdateImpl(handle, isManuallyAllocated); - - - public string MainPostUrl { get; set; } + static CMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdateImpl(handle, isManuallyAllocated); -} + public string MainPostUrl { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingServerReservationResponse.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingServerReservationResponse.cs index d4ca799ac..a60d67f10 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingServerReservationResponse.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingServerReservationResponse.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,63 +6,25 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_MatchmakingServerReservationResponse : ITypedProtobuf { - static CMsgGCCStrike15_v2_MatchmakingServerReservationResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingServerReservationResponseImpl(handle, isManuallyAllocated); - - - public ulong Reservationid { get; set; } - - - public CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve Reservation { get; } - - - public string Map { get; set; } - - - public ulong GcReservationSent { get; set; } - - - public uint ServerVersion { get; set; } - - - public ServerHltvInfo TvInfo { get; } - - - public IProtobufRepeatedFieldValueType RewardPlayerAccounts { get; } - - - public IProtobufRepeatedFieldValueType IdlePlayerAccounts { get; } - - - public uint RewardItemAttrDefIdx { get; set; } - - - public uint RewardItemAttrValue { get; set; } - - - public uint RewardItemAttrRewardIdx { get; set; } - - - public uint RewardDropList { get; set; } - - - public string TournamentTag { get; set; } - - - public uint LegacySteamdatagramPort { get; set; } - - - public uint SteamdatagramRouting { get; set; } - - - public uint TestToken { get; set; } - - - public uint Flags { get; set; } - - - public uint SystemLoad { get; set; } - - - public uint CpusOnline { get; set; } - -} + static CMsgGCCStrike15_v2_MatchmakingServerReservationResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingServerReservationResponseImpl(handle, isManuallyAllocated); + + public ulong Reservationid { get; set; } + public CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve Reservation { get; } + public string Map { get; set; } + public ulong GcReservationSent { get; set; } + public uint ServerVersion { get; set; } + public ServerHltvInfo TvInfo { get; } + public IProtobufRepeatedFieldValueType RewardPlayerAccounts { get; } + public IProtobufRepeatedFieldValueType IdlePlayerAccounts { get; } + public uint RewardItemAttrDefIdx { get; set; } + public uint RewardItemAttrValue { get; set; } + public uint RewardItemAttrRewardIdx { get; set; } + public uint RewardDropList { get; set; } + public string TournamentTag { get; set; } + public uint LegacySteamdatagramPort { get; set; } + public uint SteamdatagramRouting { get; set; } + public uint TestToken { get; set; } + public uint Flags { get; set; } + public uint SystemLoad { get; set; } + public uint CpusOnline { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingServerRoundStats.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingServerRoundStats.cs index d0f1ab307..824675210 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingServerRoundStats.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingServerRoundStats.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,102 +6,38 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_MatchmakingServerRoundStats : ITypedProtobuf { - static CMsgGCCStrike15_v2_MatchmakingServerRoundStats ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingServerRoundStatsImpl(handle, isManuallyAllocated); - - - public ulong Reservationid { get; set; } - - - public CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve Reservation { get; } - - - public string Map { get; set; } - - - public int Round { get; set; } - - - public IProtobufRepeatedFieldValueType Kills { get; } - - - public IProtobufRepeatedFieldValueType Assists { get; } - - - public IProtobufRepeatedFieldValueType Deaths { get; } - - - public IProtobufRepeatedFieldValueType Scores { get; } - - - public IProtobufRepeatedFieldValueType Pings { get; } - - - public int RoundResult { get; set; } - - - public int MatchResult { get; set; } - - - public IProtobufRepeatedFieldValueType TeamScores { get; } - - - public CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirm Confirm { get; } - - - public int ReservationStage { get; set; } - - - public int MatchDuration { get; set; } - - - public IProtobufRepeatedFieldValueType EnemyKills { get; } - - - public IProtobufRepeatedFieldValueType EnemyHeadshots { get; } - - - public IProtobufRepeatedFieldValueType Enemy3ks { get; } - - - public IProtobufRepeatedFieldValueType Enemy4ks { get; } - - - public IProtobufRepeatedFieldValueType Enemy5ks { get; } - - - public IProtobufRepeatedFieldValueType Mvps { get; } - - - public uint SpectatorsCount { get; set; } - - - public uint SpectatorsCountTv { get; set; } - - - public uint SpectatorsCountLnk { get; set; } - - - public IProtobufRepeatedFieldValueType EnemyKillsAgg { get; } - - - public CMsgGCCStrike15_v2_MatchmakingServerRoundStats_DropInfo DropInfo { get; } - - - public bool BSwitchedTeams { get; set; } - - - public IProtobufRepeatedFieldValueType Enemy2ks { get; } - - - public IProtobufRepeatedFieldValueType PlayerSpawned { get; } - - - public IProtobufRepeatedFieldValueType TeamSpawnCount { get; } - - - public uint MaxRounds { get; set; } - - - public int MapId { get; set; } - -} + static CMsgGCCStrike15_v2_MatchmakingServerRoundStats ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingServerRoundStatsImpl(handle, isManuallyAllocated); + + public ulong Reservationid { get; set; } + public CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve Reservation { get; } + public string Map { get; set; } + public int Round { get; set; } + public IProtobufRepeatedFieldValueType Kills { get; } + public IProtobufRepeatedFieldValueType Assists { get; } + public IProtobufRepeatedFieldValueType Deaths { get; } + public IProtobufRepeatedFieldValueType Scores { get; } + public IProtobufRepeatedFieldValueType Pings { get; } + public int RoundResult { get; set; } + public int MatchResult { get; set; } + public IProtobufRepeatedFieldValueType TeamScores { get; } + public CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirm Confirm { get; } + public int ReservationStage { get; set; } + public int MatchDuration { get; set; } + public IProtobufRepeatedFieldValueType EnemyKills { get; } + public IProtobufRepeatedFieldValueType EnemyHeadshots { get; } + public IProtobufRepeatedFieldValueType Enemy3ks { get; } + public IProtobufRepeatedFieldValueType Enemy4ks { get; } + public IProtobufRepeatedFieldValueType Enemy5ks { get; } + public IProtobufRepeatedFieldValueType Mvps { get; } + public uint SpectatorsCount { get; set; } + public uint SpectatorsCountTv { get; set; } + public uint SpectatorsCountLnk { get; set; } + public IProtobufRepeatedFieldValueType EnemyKillsAgg { get; } + public CMsgGCCStrike15_v2_MatchmakingServerRoundStats_DropInfo DropInfo { get; } + public bool BSwitchedTeams { get; set; } + public IProtobufRepeatedFieldValueType Enemy2ks { get; } + public IProtobufRepeatedFieldValueType PlayerSpawned { get; } + public IProtobufRepeatedFieldValueType TeamSpawnCount { get; } + public uint MaxRounds { get; set; } + public int MapId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingServerRoundStats_DropInfo.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingServerRoundStats_DropInfo.cs index afd4dda3f..41e1fe253 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingServerRoundStats_DropInfo.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingServerRoundStats_DropInfo.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_MatchmakingServerRoundStats_DropInfo : ITypedProtobuf { - static CMsgGCCStrike15_v2_MatchmakingServerRoundStats_DropInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingServerRoundStats_DropInfoImpl(handle, isManuallyAllocated); - - - public uint AccountMvp { get; set; } + static CMsgGCCStrike15_v2_MatchmakingServerRoundStats_DropInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingServerRoundStats_DropInfoImpl(handle, isManuallyAllocated); -} + public uint AccountMvp { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingStart.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingStart.cs index edf1a10cf..b6029a85d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingStart.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingStart.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,30 +6,14 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_MatchmakingStart : ITypedProtobuf { - static CMsgGCCStrike15_v2_MatchmakingStart ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingStartImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldValueType AccountIds { get; } - - - public uint GameType { get; set; } - - - public string TicketData { get; set; } - - - public uint ClientVersion { get; set; } - - - public TournamentMatchSetup TournamentMatch { get; } - - - public bool PrimeOnly { get; set; } - - - public uint TvControl { get; set; } - - - public ulong LobbyId { get; set; } - -} + static CMsgGCCStrike15_v2_MatchmakingStart ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingStartImpl(handle, isManuallyAllocated); + + public IProtobufRepeatedFieldValueType AccountIds { get; } + public uint GameType { get; set; } + public string TicketData { get; set; } + public uint ClientVersion { get; set; } + public TournamentMatchSetup TournamentMatch { get; } + public bool PrimeOnly { get; set; } + public uint TvControl { get; set; } + public ulong LobbyId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingStop.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingStop.cs index 36d5f148d..e820920a5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingStop.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_MatchmakingStop.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_MatchmakingStop : ITypedProtobuf { - static CMsgGCCStrike15_v2_MatchmakingStop ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingStopImpl(handle, isManuallyAllocated); - - - public int Abandon { get; set; } + static CMsgGCCStrike15_v2_MatchmakingStop ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_MatchmakingStopImpl(handle, isManuallyAllocated); -} + public int Abandon { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Party_Invite.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Party_Invite.cs index cd72bc6c6..6db075b5a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Party_Invite.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Party_Invite.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_Party_Invite : ITypedProtobuf { - static CMsgGCCStrike15_v2_Party_Invite ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Party_InviteImpl(handle, isManuallyAllocated); - - - public uint Accountid { get; set; } - - - public uint Lobbyid { get; set; } + static CMsgGCCStrike15_v2_Party_Invite ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Party_InviteImpl(handle, isManuallyAllocated); -} + public uint Accountid { get; set; } + public uint Lobbyid { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Party_Register.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Party_Register.cs index 739d908d1..472f811b1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Party_Register.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Party_Register.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,33 +6,15 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_Party_Register : ITypedProtobuf { - static CMsgGCCStrike15_v2_Party_Register ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Party_RegisterImpl(handle, isManuallyAllocated); - - - public uint Id { get; set; } - - - public uint Ver { get; set; } - - - public uint Apr { get; set; } - - - public uint Ark { get; set; } - - - public uint Nby { get; set; } - - - public uint Grp { get; set; } - - - public uint Slots { get; set; } - - - public uint Launcher { get; set; } - - - public uint GameType { get; set; } - -} + static CMsgGCCStrike15_v2_Party_Register ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Party_RegisterImpl(handle, isManuallyAllocated); + + public uint Id { get; set; } + public uint Ver { get; set; } + public uint Apr { get; set; } + public uint Ark { get; set; } + public uint Nby { get; set; } + public uint Grp { get; set; } + public uint Slots { get; set; } + public uint Launcher { get; set; } + public uint GameType { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Party_Search.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Party_Search.cs index d9ef2d5aa..e857ab4c0 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Party_Search.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Party_Search.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,24 +6,12 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_Party_Search : ITypedProtobuf { - static CMsgGCCStrike15_v2_Party_Search ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Party_SearchImpl(handle, isManuallyAllocated); - - - public uint Ver { get; set; } - - - public uint Apr { get; set; } - - - public uint Ark { get; set; } - - - public IProtobufRepeatedFieldValueType Grps { get; } - - - public uint Launcher { get; set; } - - - public uint GameType { get; set; } - -} + static CMsgGCCStrike15_v2_Party_Search ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Party_SearchImpl(handle, isManuallyAllocated); + + public uint Ver { get; set; } + public uint Apr { get; set; } + public uint Ark { get; set; } + public IProtobufRepeatedFieldValueType Grps { get; } + public uint Launcher { get; set; } + public uint GameType { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Party_SearchResults.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Party_SearchResults.cs index 2c962cd75..935fcbbbe 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Party_SearchResults.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Party_SearchResults.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_Party_SearchResults : ITypedProtobuf { - static CMsgGCCStrike15_v2_Party_SearchResults ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Party_SearchResultsImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType Entries { get; } + static CMsgGCCStrike15_v2_Party_SearchResults ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Party_SearchResultsImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType Entries { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Party_SearchResults_Entry.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Party_SearchResults_Entry.cs index 4c101398f..c1800ac74 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Party_SearchResults_Entry.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Party_SearchResults_Entry.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,27 +6,13 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_Party_SearchResults_Entry : ITypedProtobuf { - static CMsgGCCStrike15_v2_Party_SearchResults_Entry ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Party_SearchResults_EntryImpl(handle, isManuallyAllocated); - - - public uint Id { get; set; } - - - public uint Grp { get; set; } - - - public uint GameType { get; set; } - - - public uint Apr { get; set; } - - - public uint Ark { get; set; } - - - public uint Loc { get; set; } - - - public uint Accountid { get; set; } - -} + static CMsgGCCStrike15_v2_Party_SearchResults_Entry ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Party_SearchResults_EntryImpl(handle, isManuallyAllocated); + + public uint Id { get; set; } + public uint Grp { get; set; } + public uint GameType { get; set; } + public uint Apr { get; set; } + public uint Ark { get; set; } + public uint Loc { get; set; } + public uint Accountid { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment.cs index 645189f99..2abaec31d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,39 +6,17 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment : ITypedProtobuf { - static CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignmentImpl(handle, isManuallyAllocated); - - - public ulong Caseid { get; set; } - - - public string Caseurl { get; set; } - - - public uint Verdict { get; set; } - - - public uint Timestamp { get; set; } - - - public uint Throttleseconds { get; set; } - - - public uint Suspectid { get; set; } - - - public uint Fractionid { get; set; } - - - public uint Numrounds { get; set; } - - - public uint Fractionrounds { get; set; } - - - public int Streakconvictions { get; set; } - - - public uint Reason { get; set; } - -} + static CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignmentImpl(handle, isManuallyAllocated); + + public ulong Caseid { get; set; } + public string Caseurl { get; set; } + public uint Verdict { get; set; } + public uint Timestamp { get; set; } + public uint Throttleseconds { get; set; } + public uint Suspectid { get; set; } + public uint Fractionid { get; set; } + public uint Numrounds { get; set; } + public uint Fractionrounds { get; set; } + public int Streakconvictions { get; set; } + public uint Reason { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_PlayerOverwatchCaseStatus.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_PlayerOverwatchCaseStatus.cs index 910f6d4dc..f42ec18f6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_PlayerOverwatchCaseStatus.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_PlayerOverwatchCaseStatus.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_PlayerOverwatchCaseStatus : ITypedProtobuf { - static CMsgGCCStrike15_v2_PlayerOverwatchCaseStatus ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_PlayerOverwatchCaseStatusImpl(handle, isManuallyAllocated); - - - public ulong Caseid { get; set; } - - - public uint Statusid { get; set; } + static CMsgGCCStrike15_v2_PlayerOverwatchCaseStatus ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_PlayerOverwatchCaseStatusImpl(handle, isManuallyAllocated); -} + public ulong Caseid { get; set; } + public uint Statusid { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_PlayerOverwatchCaseUpdate.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_PlayerOverwatchCaseUpdate.cs index 66637ded7..dc678f4c3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_PlayerOverwatchCaseUpdate.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_PlayerOverwatchCaseUpdate.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,30 +6,14 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_PlayerOverwatchCaseUpdate : ITypedProtobuf { - static CMsgGCCStrike15_v2_PlayerOverwatchCaseUpdate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_PlayerOverwatchCaseUpdateImpl(handle, isManuallyAllocated); - - - public ulong Caseid { get; set; } - - - public uint Suspectid { get; set; } - - - public uint Fractionid { get; set; } - - - public uint RptAimbot { get; set; } - - - public uint RptWallhack { get; set; } - - - public uint RptSpeedhack { get; set; } - - - public uint RptTeamharm { get; set; } - - - public uint Reason { get; set; } - -} + static CMsgGCCStrike15_v2_PlayerOverwatchCaseUpdate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_PlayerOverwatchCaseUpdateImpl(handle, isManuallyAllocated); + + public ulong Caseid { get; set; } + public uint Suspectid { get; set; } + public uint Fractionid { get; set; } + public uint RptAimbot { get; set; } + public uint RptWallhack { get; set; } + public uint RptSpeedhack { get; set; } + public uint RptTeamharm { get; set; } + public uint Reason { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_PlayersProfile.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_PlayersProfile.cs index bcb140d8e..96c469692 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_PlayersProfile.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_PlayersProfile.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_PlayersProfile : ITypedProtobuf { - static CMsgGCCStrike15_v2_PlayersProfile ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_PlayersProfileImpl(handle, isManuallyAllocated); - - - public uint RequestId { get; set; } - - - public IProtobufRepeatedFieldSubMessageType AccountProfiles { get; } + static CMsgGCCStrike15_v2_PlayersProfile ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_PlayersProfileImpl(handle, isManuallyAllocated); -} + public uint RequestId { get; set; } + public IProtobufRepeatedFieldSubMessageType AccountProfiles { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Predictions.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Predictions.cs index 3eb97971f..75ef9f790 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Predictions.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Predictions.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_Predictions : ITypedProtobuf { - static CMsgGCCStrike15_v2_Predictions ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_PredictionsImpl(handle, isManuallyAllocated); - - - public uint EventId { get; set; } - - - public IProtobufRepeatedFieldSubMessageType GroupMatchTeamPicks { get; } + static CMsgGCCStrike15_v2_Predictions ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_PredictionsImpl(handle, isManuallyAllocated); -} + public uint EventId { get; set; } + public IProtobufRepeatedFieldSubMessageType GroupMatchTeamPicks { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Predictions_GroupMatchTeamPick.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Predictions_GroupMatchTeamPick.cs index 6a694f919..ce084af92 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Predictions_GroupMatchTeamPick.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Predictions_GroupMatchTeamPick.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,21 +6,11 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_Predictions_GroupMatchTeamPick : ITypedProtobuf { - static CMsgGCCStrike15_v2_Predictions_GroupMatchTeamPick ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Predictions_GroupMatchTeamPickImpl(handle, isManuallyAllocated); - - - public int Sectionid { get; set; } - - - public int Groupid { get; set; } - - - public int Index { get; set; } - - - public int Teamid { get; set; } - - - public ulong Itemid { get; set; } - -} + static CMsgGCCStrike15_v2_Predictions_GroupMatchTeamPick ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Predictions_GroupMatchTeamPickImpl(handle, isManuallyAllocated); + + public int Sectionid { get; set; } + public int Groupid { get; set; } + public int Index { get; set; } + public int Teamid { get; set; } + public ulong Itemid { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_PremierSeasonSummary.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_PremierSeasonSummary.cs index f70ef6441..55b8b966a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_PremierSeasonSummary.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_PremierSeasonSummary.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_PremierSeasonSummary : ITypedProtobuf { - static CMsgGCCStrike15_v2_PremierSeasonSummary ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_PremierSeasonSummaryImpl(handle, isManuallyAllocated); - - - public uint AccountId { get; set; } - - - public uint SeasonId { get; set; } - - - public IProtobufRepeatedFieldSubMessageType DataPerWeek { get; } - - - public IProtobufRepeatedFieldSubMessageType DataPerMap { get; } + static CMsgGCCStrike15_v2_PremierSeasonSummary ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_PremierSeasonSummaryImpl(handle, isManuallyAllocated); -} + public uint AccountId { get; set; } + public uint SeasonId { get; set; } + public IProtobufRepeatedFieldSubMessageType DataPerWeek { get; } + public IProtobufRepeatedFieldSubMessageType DataPerMap { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerMap.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerMap.cs index b0e1f749f..a56d634ce 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerMap.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerMap.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,45 +6,19 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerMap : ITypedProtobuf { - static CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerMap ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerMapImpl(handle, isManuallyAllocated); - - - public uint MapId { get; set; } - - - public uint Wins { get; set; } - - - public uint Ties { get; set; } - - - public uint Losses { get; set; } - - - public uint Rounds { get; set; } - - - public uint Kills { get; set; } - - - public uint Headshots { get; set; } - - - public uint Assists { get; set; } - - - public uint Deaths { get; set; } - - - public uint Mvps { get; set; } - - - public uint Rounds3k { get; set; } - - - public uint Rounds4k { get; set; } - - - public uint Rounds5k { get; set; } - -} + static CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerMap ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerMapImpl(handle, isManuallyAllocated); + + public uint MapId { get; set; } + public uint Wins { get; set; } + public uint Ties { get; set; } + public uint Losses { get; set; } + public uint Rounds { get; set; } + public uint Kills { get; set; } + public uint Headshots { get; set; } + public uint Assists { get; set; } + public uint Deaths { get; set; } + public uint Mvps { get; set; } + public uint Rounds3k { get; set; } + public uint Rounds4k { get; set; } + public uint Rounds5k { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerWeek.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerWeek.cs index b771e0de5..3030b1503 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerWeek.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerWeek.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerWeek : ITypedProtobuf { - static CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerWeek ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerWeekImpl(handle, isManuallyAllocated); - - - public ulong WeekId { get; set; } - - - public uint RankId { get; set; } - - - public uint MatchesPlayed { get; set; } + static CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerWeek ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_PremierSeasonSummary_DataPerWeekImpl(handle, isManuallyAllocated); -} + public ulong WeekId { get; set; } + public uint RankId { get; set; } + public uint MatchesPlayed { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Server2GCClientValidate.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Server2GCClientValidate.cs index 1c1451953..793a57b9e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Server2GCClientValidate.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_Server2GCClientValidate.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_Server2GCClientValidate : ITypedProtobuf { - static CMsgGCCStrike15_v2_Server2GCClientValidate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Server2GCClientValidateImpl(handle, isManuallyAllocated); - - - public uint Accountid { get; set; } + static CMsgGCCStrike15_v2_Server2GCClientValidate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_Server2GCClientValidateImpl(handle, isManuallyAllocated); -} + public uint Accountid { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ServerNotificationForUserPenalty.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ServerNotificationForUserPenalty.cs index 4bbae187e..4d177b747 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ServerNotificationForUserPenalty.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ServerNotificationForUserPenalty.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ServerNotificationForUserPenalty : ITypedProtobuf { - static CMsgGCCStrike15_v2_ServerNotificationForUserPenalty ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ServerNotificationForUserPenaltyImpl(handle, isManuallyAllocated); - - - public uint AccountId { get; set; } - - - public uint Reason { get; set; } - - - public uint Seconds { get; set; } - - - public bool CommunicationCooldown { get; set; } + static CMsgGCCStrike15_v2_ServerNotificationForUserPenalty ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ServerNotificationForUserPenaltyImpl(handle, isManuallyAllocated); -} + public uint AccountId { get; set; } + public uint Reason { get; set; } + public uint Seconds { get; set; } + public bool CommunicationCooldown { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ServerVarValueNotificationInfo.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ServerVarValueNotificationInfo.cs index 1f8dc1002..70d26b291 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ServerVarValueNotificationInfo.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_ServerVarValueNotificationInfo.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_ServerVarValueNotificationInfo : ITypedProtobuf { - static CMsgGCCStrike15_v2_ServerVarValueNotificationInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ServerVarValueNotificationInfoImpl(handle, isManuallyAllocated); - - - public uint Accountid { get; set; } - - - public IProtobufRepeatedFieldValueType Viewangles { get; } - - - public uint Type { get; set; } - - - public IProtobufRepeatedFieldValueType Userdata { get; } + static CMsgGCCStrike15_v2_ServerVarValueNotificationInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_ServerVarValueNotificationInfoImpl(handle, isManuallyAllocated); -} + public uint Accountid { get; set; } + public IProtobufRepeatedFieldValueType Viewangles { get; } + public uint Type { get; set; } + public IProtobufRepeatedFieldValueType Userdata { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_SetEventFavorite.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_SetEventFavorite.cs index aa5ef11e9..935a99fd9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_SetEventFavorite.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_SetEventFavorite.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_SetEventFavorite : ITypedProtobuf { - static CMsgGCCStrike15_v2_SetEventFavorite ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_SetEventFavoriteImpl(handle, isManuallyAllocated); - - - public ulong Eventid { get; set; } - - - public bool IsFavorite { get; set; } + static CMsgGCCStrike15_v2_SetEventFavorite ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_SetEventFavoriteImpl(handle, isManuallyAllocated); -} + public ulong Eventid { get; set; } + public bool IsFavorite { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeName.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeName.cs index 896d7752c..2a265cb81 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeName.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeName.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeName : ITypedProtobuf { - static CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeName ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeNameImpl(handle, isManuallyAllocated); - - - public string LeaderboardSafeName { get; set; } + static CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeName ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeNameImpl(handle, isManuallyAllocated); -} + public string LeaderboardSafeName { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_WatchInfoUsers.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_WatchInfoUsers.cs index a945a0426..cbf0703ea 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_WatchInfoUsers.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCStrike15_v2_WatchInfoUsers.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCStrike15_v2_WatchInfoUsers : ITypedProtobuf { - static CMsgGCCStrike15_v2_WatchInfoUsers ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_WatchInfoUsersImpl(handle, isManuallyAllocated); - - - public uint RequestId { get; set; } - - - public IProtobufRepeatedFieldValueType AccountIds { get; } - - - public IProtobufRepeatedFieldSubMessageType WatchableMatchInfos { get; } - - - public uint ExtendedTimeout { get; set; } + static CMsgGCCStrike15_v2_WatchInfoUsers ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCStrike15_v2_WatchInfoUsersImpl(handle, isManuallyAllocated); -} + public uint RequestId { get; set; } + public IProtobufRepeatedFieldValueType AccountIds { get; } + public IProtobufRepeatedFieldSubMessageType WatchableMatchInfos { get; } + public uint ExtendedTimeout { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCClientDisplayNotification.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCClientDisplayNotification.cs index 15270a915..3e744a4b7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCClientDisplayNotification.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCClientDisplayNotification.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCClientDisplayNotification : ITypedProtobuf { - static CMsgGCClientDisplayNotification ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCClientDisplayNotificationImpl(handle, isManuallyAllocated); - - - public string NotificationTitleLocalizationKey { get; set; } - - - public string NotificationBodyLocalizationKey { get; set; } - - - public IProtobufRepeatedFieldValueType BodySubstringKeys { get; } - - - public IProtobufRepeatedFieldValueType BodySubstringValues { get; } + static CMsgGCClientDisplayNotification ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCClientDisplayNotificationImpl(handle, isManuallyAllocated); -} + public string NotificationTitleLocalizationKey { get; set; } + public string NotificationBodyLocalizationKey { get; set; } + public IProtobufRepeatedFieldValueType BodySubstringKeys { get; } + public IProtobufRepeatedFieldValueType BodySubstringValues { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCClientVersionUpdated.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCClientVersionUpdated.cs index bdcf1684f..fe4c7eb4c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCClientVersionUpdated.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCClientVersionUpdated.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCClientVersionUpdated : ITypedProtobuf { - static CMsgGCClientVersionUpdated ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCClientVersionUpdatedImpl(handle, isManuallyAllocated); - - - public uint ClientVersion { get; set; } + static CMsgGCClientVersionUpdated ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCClientVersionUpdatedImpl(handle, isManuallyAllocated); -} + public uint ClientVersion { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCollectItem.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCollectItem.cs index 9ac3528eb..26dfe69f8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCollectItem.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCollectItem.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCollectItem : ITypedProtobuf { - static CMsgGCCollectItem ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCollectItemImpl(handle, isManuallyAllocated); - - - public ulong CollectionItemId { get; set; } - - - public ulong SubjectItemId { get; set; } + static CMsgGCCollectItem ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCollectItemImpl(handle, isManuallyAllocated); -} + public ulong CollectionItemId { get; set; } + public ulong SubjectItemId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCstrike15_v2_ClientRedeemFreeReward.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCstrike15_v2_ClientRedeemFreeReward.cs index 61a81b3ec..34592fb5e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCstrike15_v2_ClientRedeemFreeReward.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCstrike15_v2_ClientRedeemFreeReward.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCstrike15_v2_ClientRedeemFreeReward : ITypedProtobuf { - static CMsgGCCstrike15_v2_ClientRedeemFreeReward ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCstrike15_v2_ClientRedeemFreeRewardImpl(handle, isManuallyAllocated); - - - public uint GenerationTime { get; set; } - - - public uint RedeemableBalance { get; set; } - - - public IProtobufRepeatedFieldValueType Items { get; } + static CMsgGCCstrike15_v2_ClientRedeemFreeReward ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCstrike15_v2_ClientRedeemFreeRewardImpl(handle, isManuallyAllocated); -} + public uint GenerationTime { get; set; } + public uint RedeemableBalance { get; set; } + public IProtobufRepeatedFieldValueType Items { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCstrike15_v2_ClientRedeemMissionReward.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCstrike15_v2_ClientRedeemMissionReward.cs index 3cd62eea3..feffc20c2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCstrike15_v2_ClientRedeemMissionReward.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCstrike15_v2_ClientRedeemMissionReward.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,21 +6,11 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCstrike15_v2_ClientRedeemMissionReward : ITypedProtobuf { - static CMsgGCCstrike15_v2_ClientRedeemMissionReward ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCstrike15_v2_ClientRedeemMissionRewardImpl(handle, isManuallyAllocated); - - - public uint CampaignId { get; set; } - - - public uint RedeemId { get; set; } - - - public uint RedeemableBalance { get; set; } - - - public uint ExpectedCost { get; set; } - - - public int BidControl { get; set; } - -} + static CMsgGCCstrike15_v2_ClientRedeemMissionReward ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCstrike15_v2_ClientRedeemMissionRewardImpl(handle, isManuallyAllocated); + + public uint CampaignId { get; set; } + public uint RedeemId { get; set; } + public uint RedeemableBalance { get; set; } + public uint ExpectedCost { get; set; } + public int BidControl { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCstrike15_v2_GC2ServerNotifyXPRewarded.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCstrike15_v2_GC2ServerNotifyXPRewarded.cs index 96f6c3ab5..27334baf5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCstrike15_v2_GC2ServerNotifyXPRewarded.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCCstrike15_v2_GC2ServerNotifyXPRewarded.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,36 +6,16 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCCstrike15_v2_GC2ServerNotifyXPRewarded : ITypedProtobuf { - static CMsgGCCstrike15_v2_GC2ServerNotifyXPRewarded ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCstrike15_v2_GC2ServerNotifyXPRewardedImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType XpProgressData { get; } - - - public uint AccountId { get; set; } - - - public uint CurrentXp { get; set; } - - - public uint CurrentLevel { get; set; } - - - public uint UpgradedDefidx { get; set; } - - - public uint OperationPointsAwarded { get; set; } - - - public uint FreeRewards { get; set; } - - - public uint XpTrailRemaining { get; set; } - - - public int XpTrailXpNeeded { get; set; } - - - public uint XpTrailLevel { get; set; } - -} + static CMsgGCCstrike15_v2_GC2ServerNotifyXPRewarded ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCCstrike15_v2_GC2ServerNotifyXPRewardedImpl(handle, isManuallyAllocated); + + public IProtobufRepeatedFieldSubMessageType XpProgressData { get; } + public uint AccountId { get; set; } + public uint CurrentXp { get; set; } + public uint CurrentLevel { get; set; } + public uint UpgradedDefidx { get; set; } + public uint OperationPointsAwarded { get; set; } + public uint FreeRewards { get; set; } + public uint XpTrailRemaining { get; set; } + public int XpTrailXpNeeded { get; set; } + public uint XpTrailLevel { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCDev_SchemaReservationRequest.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCDev_SchemaReservationRequest.cs index 37a11a443..46403c46d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCDev_SchemaReservationRequest.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCDev_SchemaReservationRequest.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCDev_SchemaReservationRequest : ITypedProtobuf { - static CMsgGCDev_SchemaReservationRequest ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCDev_SchemaReservationRequestImpl(handle, isManuallyAllocated); - - - public string SchemaTypename { get; set; } - - - public string InstanceName { get; set; } - - - public ulong Context { get; set; } - - - public ulong Id { get; set; } + static CMsgGCDev_SchemaReservationRequest ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCDev_SchemaReservationRequestImpl(handle, isManuallyAllocated); -} + public string SchemaTypename { get; set; } + public string InstanceName { get; set; } + public ulong Context { get; set; } + public ulong Id { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCError.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCError.cs index 9929f7aa8..d1b4fcc09 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCError.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCError.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCError : ITypedProtobuf { - static CMsgGCError ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCErrorImpl(handle, isManuallyAllocated); - - - public string ErrorText { get; set; } + static CMsgGCError ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCErrorImpl(handle, isManuallyAllocated); -} + public string ErrorText { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCGiftedItems.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCGiftedItems.cs index d14216e88..8fa11b458 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCGiftedItems.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCGiftedItems.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,21 +6,11 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCGiftedItems : ITypedProtobuf { - static CMsgGCGiftedItems ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCGiftedItemsImpl(handle, isManuallyAllocated); - - - public uint Accountid { get; set; } - - - public uint Giftdefindex { get; set; } - - - public uint MaxGiftsPossible { get; set; } - - - public uint NumEligibleRecipients { get; set; } - - - public IProtobufRepeatedFieldValueType RecipientsAccountids { get; } - -} + static CMsgGCGiftedItems ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCGiftedItemsImpl(handle, isManuallyAllocated); + + public uint Accountid { get; set; } + public uint Giftdefindex { get; set; } + public uint MaxGiftsPossible { get; set; } + public uint NumEligibleRecipients { get; set; } + public IProtobufRepeatedFieldValueType RecipientsAccountids { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCHAccountPhoneNumberChange.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCHAccountPhoneNumberChange.cs index 99b55cd4d..af570de08 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCHAccountPhoneNumberChange.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCHAccountPhoneNumberChange.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,21 +6,11 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCHAccountPhoneNumberChange : ITypedProtobuf { - static CMsgGCHAccountPhoneNumberChange ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCHAccountPhoneNumberChangeImpl(handle, isManuallyAllocated); - - - public ulong Steamid { get; set; } - - - public uint Appid { get; set; } - - - public ulong PhoneId { get; set; } - - - public bool IsVerified { get; set; } - - - public bool IsIdentifying { get; set; } - -} + static CMsgGCHAccountPhoneNumberChange ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCHAccountPhoneNumberChangeImpl(handle, isManuallyAllocated); + + public ulong Steamid { get; set; } + public uint Appid { get; set; } + public ulong PhoneId { get; set; } + public bool IsVerified { get; set; } + public bool IsIdentifying { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCHInviteUserToLobby.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCHInviteUserToLobby.cs index 760991ccb..5cc115106 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCHInviteUserToLobby.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCHInviteUserToLobby.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCHInviteUserToLobby : ITypedProtobuf { - static CMsgGCHInviteUserToLobby ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCHInviteUserToLobbyImpl(handle, isManuallyAllocated); - - - public ulong Steamid { get; set; } - - - public uint Appid { get; set; } - - - public ulong SteamidInvited { get; set; } - - - public ulong SteamidLobby { get; set; } + static CMsgGCHInviteUserToLobby ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCHInviteUserToLobbyImpl(handle, isManuallyAllocated); -} + public ulong Steamid { get; set; } + public uint Appid { get; set; } + public ulong SteamidInvited { get; set; } + public ulong SteamidLobby { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCHRecurringSubscriptionStatusChange.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCHRecurringSubscriptionStatusChange.cs index 6309d7883..5ce58f786 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCHRecurringSubscriptionStatusChange.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCHRecurringSubscriptionStatusChange.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCHRecurringSubscriptionStatusChange : ITypedProtobuf { - static CMsgGCHRecurringSubscriptionStatusChange ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCHRecurringSubscriptionStatusChangeImpl(handle, isManuallyAllocated); - - - public ulong Steamid { get; set; } - - - public uint Appid { get; set; } - - - public ulong Agreementid { get; set; } - - - public bool Active { get; set; } + static CMsgGCHRecurringSubscriptionStatusChange ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCHRecurringSubscriptionStatusChangeImpl(handle, isManuallyAllocated); -} + public ulong Steamid { get; set; } + public uint Appid { get; set; } + public ulong Agreementid { get; set; } + public bool Active { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCHVacVerificationChange.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCHVacVerificationChange.cs index 83b222de7..3ec91f863 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCHVacVerificationChange.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCHVacVerificationChange.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCHVacVerificationChange : ITypedProtobuf { - static CMsgGCHVacVerificationChange ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCHVacVerificationChangeImpl(handle, isManuallyAllocated); - - - public ulong Steamid { get; set; } - - - public uint Appid { get; set; } - - - public bool IsVerified { get; set; } + static CMsgGCHVacVerificationChange ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCHVacVerificationChangeImpl(handle, isManuallyAllocated); -} + public ulong Steamid { get; set; } + public uint Appid { get; set; } + public bool IsVerified { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCIncrementKillCountResponse.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCIncrementKillCountResponse.cs index 17a49158a..255718e36 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCIncrementKillCountResponse.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCIncrementKillCountResponse.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCIncrementKillCountResponse : ITypedProtobuf { - static CMsgGCIncrementKillCountResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCIncrementKillCountResponseImpl(handle, isManuallyAllocated); - - - public uint KillerAccountId { get; set; } - - - public uint NumKills { get; set; } - - - public uint ItemDef { get; set; } - - - public uint LevelType { get; set; } + static CMsgGCIncrementKillCountResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCIncrementKillCountResponseImpl(handle, isManuallyAllocated); -} + public uint KillerAccountId { get; set; } + public uint NumKills { get; set; } + public uint ItemDef { get; set; } + public uint LevelType { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCItemCustomizationNotification.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCItemCustomizationNotification.cs index dd2b565f0..41bfed070 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCItemCustomizationNotification.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCItemCustomizationNotification.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCItemCustomizationNotification : ITypedProtobuf { - static CMsgGCItemCustomizationNotification ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCItemCustomizationNotificationImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldValueType ItemId { get; } - - - public uint Request { get; set; } - - - public IProtobufRepeatedFieldValueType ExtraData { get; } + static CMsgGCItemCustomizationNotification ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCItemCustomizationNotificationImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldValueType ItemId { get; } + public uint Request { get; set; } + public IProtobufRepeatedFieldValueType ExtraData { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCItemPreviewItemBoughtNotification.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCItemPreviewItemBoughtNotification.cs index 64a150867..00320e224 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCItemPreviewItemBoughtNotification.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCItemPreviewItemBoughtNotification.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCItemPreviewItemBoughtNotification : ITypedProtobuf { - static CMsgGCItemPreviewItemBoughtNotification ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCItemPreviewItemBoughtNotificationImpl(handle, isManuallyAllocated); - - - public uint ItemDefIndex { get; set; } + static CMsgGCItemPreviewItemBoughtNotification ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCItemPreviewItemBoughtNotificationImpl(handle, isManuallyAllocated); -} + public uint ItemDefIndex { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCMultiplexMessage.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCMultiplexMessage.cs index ed267edca..dab384b15 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCMultiplexMessage.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCMultiplexMessage.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCMultiplexMessage : ITypedProtobuf { - static CMsgGCMultiplexMessage ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCMultiplexMessageImpl(handle, isManuallyAllocated); - - - public uint Msgtype { get; set; } - - - public byte[] Payload { get; set; } - - - public IProtobufRepeatedFieldValueType Steamids { get; } - - - public bool Replytogc { get; set; } + static CMsgGCMultiplexMessage ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCMultiplexMessageImpl(handle, isManuallyAllocated); -} + public uint Msgtype { get; set; } + public byte[] Payload { get; set; } + public IProtobufRepeatedFieldValueType Steamids { get; } + public bool Replytogc { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCMultiplexMessage_Response.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCMultiplexMessage_Response.cs index ca6a8c4ee..87781da61 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCMultiplexMessage_Response.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCMultiplexMessage_Response.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCMultiplexMessage_Response : ITypedProtobuf { - static CMsgGCMultiplexMessage_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCMultiplexMessage_ResponseImpl(handle, isManuallyAllocated); - - - public uint Msgtype { get; set; } + static CMsgGCMultiplexMessage_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCMultiplexMessage_ResponseImpl(handle, isManuallyAllocated); -} + public uint Msgtype { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCNameItemNotification.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCNameItemNotification.cs index d9972a64a..4b2cb84c5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCNameItemNotification.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCNameItemNotification.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCNameItemNotification : ITypedProtobuf { - static CMsgGCNameItemNotification ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCNameItemNotificationImpl(handle, isManuallyAllocated); - - - public ulong PlayerSteamid { get; set; } - - - public uint ItemDefIndex { get; set; } - - - public string ItemNameCustom { get; set; } + static CMsgGCNameItemNotification ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCNameItemNotificationImpl(handle, isManuallyAllocated); -} + public ulong PlayerSteamid { get; set; } + public uint ItemDefIndex { get; set; } + public string ItemNameCustom { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCReportAbuse.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCReportAbuse.cs index 7f23f7fa7..b3ff08d27 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCReportAbuse.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCReportAbuse.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,27 +6,13 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCReportAbuse : ITypedProtobuf { - static CMsgGCReportAbuse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCReportAbuseImpl(handle, isManuallyAllocated); - - - public ulong TargetSteamId { get; set; } - - - public string Description { get; set; } - - - public ulong Gid { get; set; } - - - public uint AbuseType { get; set; } - - - public uint ContentType { get; set; } - - - public uint TargetGameServerIp { get; set; } - - - public uint TargetGameServerPort { get; set; } - -} + static CMsgGCReportAbuse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCReportAbuseImpl(handle, isManuallyAllocated); + + public ulong TargetSteamId { get; set; } + public string Description { get; set; } + public ulong Gid { get; set; } + public uint AbuseType { get; set; } + public uint ContentType { get; set; } + public uint TargetGameServerIp { get; set; } + public uint TargetGameServerPort { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCReportAbuseResponse.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCReportAbuseResponse.cs index 8be601e6a..b0b0f8c47 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCReportAbuseResponse.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCReportAbuseResponse.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCReportAbuseResponse : ITypedProtobuf { - static CMsgGCReportAbuseResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCReportAbuseResponseImpl(handle, isManuallyAllocated); - - - public ulong TargetSteamId { get; set; } - - - public uint Result { get; set; } - - - public string ErrorMessage { get; set; } + static CMsgGCReportAbuseResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCReportAbuseResponseImpl(handle, isManuallyAllocated); -} + public ulong TargetSteamId { get; set; } + public uint Result { get; set; } + public string ErrorMessage { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCRequestAnnouncements.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCRequestAnnouncements.cs index fc792bdcb..45716a578 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCRequestAnnouncements.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCRequestAnnouncements.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,7 +6,6 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCRequestAnnouncements : ITypedProtobuf { - static CMsgGCRequestAnnouncements ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCRequestAnnouncementsImpl(handle, isManuallyAllocated); - + static CMsgGCRequestAnnouncements ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCRequestAnnouncementsImpl(handle, isManuallyAllocated); -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCRequestAnnouncementsResponse.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCRequestAnnouncementsResponse.cs index 30c1d8e91..bc4be758d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCRequestAnnouncementsResponse.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCRequestAnnouncementsResponse.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCRequestAnnouncementsResponse : ITypedProtobuf { - static CMsgGCRequestAnnouncementsResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCRequestAnnouncementsResponseImpl(handle, isManuallyAllocated); - - - public string AnnouncementTitle { get; set; } - - - public string Announcement { get; set; } - - - public string NextmatchTitle { get; set; } - - - public string Nextmatch { get; set; } + static CMsgGCRequestAnnouncementsResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCRequestAnnouncementsResponseImpl(handle, isManuallyAllocated); -} + public string AnnouncementTitle { get; set; } + public string Announcement { get; set; } + public string NextmatchTitle { get; set; } + public string Nextmatch { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCRequestSessionIP.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCRequestSessionIP.cs index 784a871bd..7bb0cb655 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCRequestSessionIP.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCRequestSessionIP.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCRequestSessionIP : ITypedProtobuf { - static CMsgGCRequestSessionIP ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCRequestSessionIPImpl(handle, isManuallyAllocated); - - - public ulong Steamid { get; set; } + static CMsgGCRequestSessionIP ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCRequestSessionIPImpl(handle, isManuallyAllocated); -} + public ulong Steamid { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCRequestSessionIPResponse.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCRequestSessionIPResponse.cs index 4a04ce9df..f36b6c38c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCRequestSessionIPResponse.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCRequestSessionIPResponse.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCRequestSessionIPResponse : ITypedProtobuf { - static CMsgGCRequestSessionIPResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCRequestSessionIPResponseImpl(handle, isManuallyAllocated); - - - public uint Ip { get; set; } + static CMsgGCRequestSessionIPResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCRequestSessionIPResponseImpl(handle, isManuallyAllocated); -} + public uint Ip { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCServerVersionUpdated.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCServerVersionUpdated.cs index 67992147a..b62c9f284 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCServerVersionUpdated.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCServerVersionUpdated.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCServerVersionUpdated : ITypedProtobuf { - static CMsgGCServerVersionUpdated ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCServerVersionUpdatedImpl(handle, isManuallyAllocated); - - - public uint ServerVersion { get; set; } + static CMsgGCServerVersionUpdated ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCServerVersionUpdatedImpl(handle, isManuallyAllocated); -} + public uint ServerVersion { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCShowItemsPickedUp.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCShowItemsPickedUp.cs index eee6d73b6..65e6ec5ab 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCShowItemsPickedUp.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCShowItemsPickedUp.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCShowItemsPickedUp : ITypedProtobuf { - static CMsgGCShowItemsPickedUp ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCShowItemsPickedUpImpl(handle, isManuallyAllocated); - - - public ulong PlayerSteamid { get; set; } + static CMsgGCShowItemsPickedUp ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCShowItemsPickedUpImpl(handle, isManuallyAllocated); -} + public ulong PlayerSteamid { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCStorePurchaseCancel.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCStorePurchaseCancel.cs index d0ae13a4a..463dbd16f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCStorePurchaseCancel.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCStorePurchaseCancel.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCStorePurchaseCancel : ITypedProtobuf { - static CMsgGCStorePurchaseCancel ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCStorePurchaseCancelImpl(handle, isManuallyAllocated); - - - public ulong TxnId { get; set; } + static CMsgGCStorePurchaseCancel ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCStorePurchaseCancelImpl(handle, isManuallyAllocated); -} + public ulong TxnId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCStorePurchaseCancelResponse.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCStorePurchaseCancelResponse.cs index 67a7f9f42..95c30233f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCStorePurchaseCancelResponse.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCStorePurchaseCancelResponse.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCStorePurchaseCancelResponse : ITypedProtobuf { - static CMsgGCStorePurchaseCancelResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCStorePurchaseCancelResponseImpl(handle, isManuallyAllocated); - - - public uint Result { get; set; } + static CMsgGCStorePurchaseCancelResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCStorePurchaseCancelResponseImpl(handle, isManuallyAllocated); -} + public uint Result { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCStorePurchaseFinalize.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCStorePurchaseFinalize.cs index 18f7ff491..da71f1895 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCStorePurchaseFinalize.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCStorePurchaseFinalize.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCStorePurchaseFinalize : ITypedProtobuf { - static CMsgGCStorePurchaseFinalize ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCStorePurchaseFinalizeImpl(handle, isManuallyAllocated); - - - public ulong TxnId { get; set; } + static CMsgGCStorePurchaseFinalize ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCStorePurchaseFinalizeImpl(handle, isManuallyAllocated); -} + public ulong TxnId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCStorePurchaseFinalizeResponse.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCStorePurchaseFinalizeResponse.cs index d309a5574..73b503401 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCStorePurchaseFinalizeResponse.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCStorePurchaseFinalizeResponse.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCStorePurchaseFinalizeResponse : ITypedProtobuf { - static CMsgGCStorePurchaseFinalizeResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCStorePurchaseFinalizeResponseImpl(handle, isManuallyAllocated); - - - public uint Result { get; set; } - - - public IProtobufRepeatedFieldValueType ItemIds { get; } + static CMsgGCStorePurchaseFinalizeResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCStorePurchaseFinalizeResponseImpl(handle, isManuallyAllocated); -} + public uint Result { get; set; } + public IProtobufRepeatedFieldValueType ItemIds { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCStorePurchaseInit.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCStorePurchaseInit.cs index bda884571..b5a884ee8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCStorePurchaseInit.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCStorePurchaseInit.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCStorePurchaseInit : ITypedProtobuf { - static CMsgGCStorePurchaseInit ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCStorePurchaseInitImpl(handle, isManuallyAllocated); - - - public string Country { get; set; } - - - public int Language { get; set; } - - - public int Currency { get; set; } - - - public IProtobufRepeatedFieldSubMessageType LineItems { get; } + static CMsgGCStorePurchaseInit ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCStorePurchaseInitImpl(handle, isManuallyAllocated); -} + public string Country { get; set; } + public int Language { get; set; } + public int Currency { get; set; } + public IProtobufRepeatedFieldSubMessageType LineItems { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCStorePurchaseInitResponse.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCStorePurchaseInitResponse.cs index 1c682a1cb..e7a2b5a13 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCStorePurchaseInitResponse.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCStorePurchaseInitResponse.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCStorePurchaseInitResponse : ITypedProtobuf { - static CMsgGCStorePurchaseInitResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCStorePurchaseInitResponseImpl(handle, isManuallyAllocated); - - - public int Result { get; set; } - - - public ulong TxnId { get; set; } - - - public string Url { get; set; } - - - public IProtobufRepeatedFieldValueType ItemIds { get; } + static CMsgGCStorePurchaseInitResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCStorePurchaseInitResponseImpl(handle, isManuallyAllocated); -} + public int Result { get; set; } + public ulong TxnId { get; set; } + public string Url { get; set; } + public IProtobufRepeatedFieldValueType ItemIds { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToClientSteamDatagramTicket.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToClientSteamDatagramTicket.cs index 150ed7c09..a2f286685 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToClientSteamDatagramTicket.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToClientSteamDatagramTicket.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCToClientSteamDatagramTicket : ITypedProtobuf { - static CMsgGCToClientSteamDatagramTicket ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCToClientSteamDatagramTicketImpl(handle, isManuallyAllocated); - - - public byte[] SerializedTicket { get; set; } + static CMsgGCToClientSteamDatagramTicket ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCToClientSteamDatagramTicketImpl(handle, isManuallyAllocated); -} + public byte[] SerializedTicket { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCBannedWordListBroadcast.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCBannedWordListBroadcast.cs index c95541b34..b2a57c4ee 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCBannedWordListBroadcast.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCBannedWordListBroadcast.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCToGCBannedWordListBroadcast : ITypedProtobuf { - static CMsgGCToGCBannedWordListBroadcast ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCToGCBannedWordListBroadcastImpl(handle, isManuallyAllocated); - - - public CMsgGCBannedWordListResponse Broadcast { get; } + static CMsgGCToGCBannedWordListBroadcast ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCToGCBannedWordListBroadcastImpl(handle, isManuallyAllocated); -} + public CMsgGCBannedWordListResponse Broadcast { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCBannedWordListUpdated.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCBannedWordListUpdated.cs index b068b1a01..68308d90e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCBannedWordListUpdated.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCBannedWordListUpdated.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCToGCBannedWordListUpdated : ITypedProtobuf { - static CMsgGCToGCBannedWordListUpdated ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCToGCBannedWordListUpdatedImpl(handle, isManuallyAllocated); - - - public uint GroupId { get; set; } + static CMsgGCToGCBannedWordListUpdated ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCToGCBannedWordListUpdatedImpl(handle, isManuallyAllocated); -} + public uint GroupId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCBroadcastConsoleCommand.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCBroadcastConsoleCommand.cs index a548a4332..b05ad3915 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCBroadcastConsoleCommand.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCBroadcastConsoleCommand.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCToGCBroadcastConsoleCommand : ITypedProtobuf { - static CMsgGCToGCBroadcastConsoleCommand ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCToGCBroadcastConsoleCommandImpl(handle, isManuallyAllocated); - - - public string ConCommand { get; set; } + static CMsgGCToGCBroadcastConsoleCommand ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCToGCBroadcastConsoleCommandImpl(handle, isManuallyAllocated); -} + public string ConCommand { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCDirtyMultipleSDOCache.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCDirtyMultipleSDOCache.cs index f9ee92bcb..8f7d5694d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCDirtyMultipleSDOCache.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCDirtyMultipleSDOCache.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCToGCDirtyMultipleSDOCache : ITypedProtobuf { - static CMsgGCToGCDirtyMultipleSDOCache ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCToGCDirtyMultipleSDOCacheImpl(handle, isManuallyAllocated); - - - public uint SdoType { get; set; } - - - public IProtobufRepeatedFieldValueType KeyUint64 { get; } + static CMsgGCToGCDirtyMultipleSDOCache ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCToGCDirtyMultipleSDOCacheImpl(handle, isManuallyAllocated); -} + public uint SdoType { get; set; } + public IProtobufRepeatedFieldValueType KeyUint64 { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCDirtySDOCache.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCDirtySDOCache.cs index eb38082ab..22f273c85 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCDirtySDOCache.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCDirtySDOCache.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCToGCDirtySDOCache : ITypedProtobuf { - static CMsgGCToGCDirtySDOCache ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCToGCDirtySDOCacheImpl(handle, isManuallyAllocated); - - - public uint SdoType { get; set; } - - - public ulong KeyUint64 { get; set; } + static CMsgGCToGCDirtySDOCache ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCToGCDirtySDOCacheImpl(handle, isManuallyAllocated); -} + public uint SdoType { get; set; } + public ulong KeyUint64 { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCIsTrustedServer.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCIsTrustedServer.cs index 61d7df4ad..ec61c3d98 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCIsTrustedServer.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCIsTrustedServer.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCToGCIsTrustedServer : ITypedProtobuf { - static CMsgGCToGCIsTrustedServer ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCToGCIsTrustedServerImpl(handle, isManuallyAllocated); - - - public ulong SteamId { get; set; } + static CMsgGCToGCIsTrustedServer ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCToGCIsTrustedServerImpl(handle, isManuallyAllocated); -} + public ulong SteamId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCIsTrustedServerResponse.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCIsTrustedServerResponse.cs index c71591fdb..9bed89248 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCIsTrustedServerResponse.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCIsTrustedServerResponse.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCToGCIsTrustedServerResponse : ITypedProtobuf { - static CMsgGCToGCIsTrustedServerResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCToGCIsTrustedServerResponseImpl(handle, isManuallyAllocated); - - - public bool IsTrusted { get; set; } + static CMsgGCToGCIsTrustedServerResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCToGCIsTrustedServerResponseImpl(handle, isManuallyAllocated); -} + public bool IsTrusted { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCRequestPassportItemGrant.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCRequestPassportItemGrant.cs index 32e532256..d0db9b21e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCRequestPassportItemGrant.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCRequestPassportItemGrant.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCToGCRequestPassportItemGrant : ITypedProtobuf { - static CMsgGCToGCRequestPassportItemGrant ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCToGCRequestPassportItemGrantImpl(handle, isManuallyAllocated); - - - public ulong SteamId { get; set; } - - - public uint LeagueId { get; set; } - - - public int RewardFlag { get; set; } + static CMsgGCToGCRequestPassportItemGrant ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCToGCRequestPassportItemGrantImpl(handle, isManuallyAllocated); -} + public ulong SteamId { get; set; } + public uint LeagueId { get; set; } + public int RewardFlag { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCUpdateSQLKeyValue.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCUpdateSQLKeyValue.cs index 5ca3bbd16..0b6bb08ef 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCUpdateSQLKeyValue.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCUpdateSQLKeyValue.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCToGCUpdateSQLKeyValue : ITypedProtobuf { - static CMsgGCToGCUpdateSQLKeyValue ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCToGCUpdateSQLKeyValueImpl(handle, isManuallyAllocated); - - - public string KeyName { get; set; } + static CMsgGCToGCUpdateSQLKeyValue ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCToGCUpdateSQLKeyValueImpl(handle, isManuallyAllocated); -} + public string KeyName { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCWebAPIAccountChanged.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCWebAPIAccountChanged.cs index 35389d8b2..136e3f4ec 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCWebAPIAccountChanged.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCToGCWebAPIAccountChanged.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,7 +6,6 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCToGCWebAPIAccountChanged : ITypedProtobuf { - static CMsgGCToGCWebAPIAccountChanged ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCToGCWebAPIAccountChangedImpl(handle, isManuallyAllocated); - + static CMsgGCToGCWebAPIAccountChanged ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCToGCWebAPIAccountChangedImpl(handle, isManuallyAllocated); -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCUpdateSessionIP.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCUpdateSessionIP.cs index 7fb13058a..52ab717a9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCUpdateSessionIP.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCUpdateSessionIP.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCUpdateSessionIP : ITypedProtobuf { - static CMsgGCUpdateSessionIP ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCUpdateSessionIPImpl(handle, isManuallyAllocated); - - - public ulong Steamid { get; set; } - - - public uint Ip { get; set; } + static CMsgGCUpdateSessionIP ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCUpdateSessionIPImpl(handle, isManuallyAllocated); -} + public ulong Steamid { get; set; } + public uint Ip { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCUserTrackTimePlayedConsecutively.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCUserTrackTimePlayedConsecutively.cs index 0b057c9c3..bc6b9d159 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCUserTrackTimePlayedConsecutively.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGCUserTrackTimePlayedConsecutively.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGCUserTrackTimePlayedConsecutively : ITypedProtobuf { - static CMsgGCUserTrackTimePlayedConsecutively ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCUserTrackTimePlayedConsecutivelyImpl(handle, isManuallyAllocated); - - - public uint State { get; set; } + static CMsgGCUserTrackTimePlayedConsecutively ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGCUserTrackTimePlayedConsecutivelyImpl(handle, isManuallyAllocated); -} + public uint State { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGC_GlobalGame_Play.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGC_GlobalGame_Play.cs index 5e4ef0e6d..726173cfb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGC_GlobalGame_Play.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGC_GlobalGame_Play.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGC_GlobalGame_Play : ITypedProtobuf { - static CMsgGC_GlobalGame_Play ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGC_GlobalGame_PlayImpl(handle, isManuallyAllocated); - - - public ulong Ticket { get; set; } - - - public uint Gametimems { get; set; } - - - public uint Msperpoint { get; set; } + static CMsgGC_GlobalGame_Play ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGC_GlobalGame_PlayImpl(handle, isManuallyAllocated); -} + public ulong Ticket { get; set; } + public uint Gametimems { get; set; } + public uint Msperpoint { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGC_GlobalGame_Subscribe.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGC_GlobalGame_Subscribe.cs index 8f50712a4..338075b8d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGC_GlobalGame_Subscribe.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGC_GlobalGame_Subscribe.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGC_GlobalGame_Subscribe : ITypedProtobuf { - static CMsgGC_GlobalGame_Subscribe ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGC_GlobalGame_SubscribeImpl(handle, isManuallyAllocated); - - - public ulong Ticket { get; set; } + static CMsgGC_GlobalGame_Subscribe ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGC_GlobalGame_SubscribeImpl(handle, isManuallyAllocated); -} + public ulong Ticket { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGC_GlobalGame_Unsubscribe.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGC_GlobalGame_Unsubscribe.cs index 86bf261e4..807853cc6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGC_GlobalGame_Unsubscribe.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGC_GlobalGame_Unsubscribe.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGC_GlobalGame_Unsubscribe : ITypedProtobuf { - static CMsgGC_GlobalGame_Unsubscribe ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGC_GlobalGame_UnsubscribeImpl(handle, isManuallyAllocated); - - - public int Timeleft { get; set; } + static CMsgGC_GlobalGame_Unsubscribe ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGC_GlobalGame_UnsubscribeImpl(handle, isManuallyAllocated); -} + public int Timeleft { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGC_ServerQuestUpdateData.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGC_ServerQuestUpdateData.cs index df0f6763a..32fd6aafd 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGC_ServerQuestUpdateData.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGC_ServerQuestUpdateData.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,21 +6,11 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGC_ServerQuestUpdateData : ITypedProtobuf { - static CMsgGC_ServerQuestUpdateData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGC_ServerQuestUpdateDataImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType PlayerQuestData { get; } - - - public byte[] BinaryData { get; set; } - - - public uint MmGameMode { get; set; } - - - public ScoreLeaderboardData Missionlbsdata { get; } - - - public uint Flags { get; set; } - -} + static CMsgGC_ServerQuestUpdateData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGC_ServerQuestUpdateDataImpl(handle, isManuallyAllocated); + + public IProtobufRepeatedFieldSubMessageType PlayerQuestData { get; } + public byte[] BinaryData { get; set; } + public uint MmGameMode { get; set; } + public ScoreLeaderboardData Missionlbsdata { get; } + public uint Flags { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGameServerInfo.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGameServerInfo.cs index bac4384d4..09923354d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGameServerInfo.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgGameServerInfo.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,60 +6,24 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgGameServerInfo : ITypedProtobuf { - static CMsgGameServerInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGameServerInfoImpl(handle, isManuallyAllocated); - - - public uint ServerPublicIpAddr { get; set; } - - - public uint ServerPrivateIpAddr { get; set; } - - - public uint ServerPort { get; set; } - - - public uint ServerTvPort { get; set; } - - - public string ServerKey { get; set; } - - - public bool ServerHibernation { get; set; } - - - public CMsgGameServerInfo_ServerType ServerType { get; set; } - - - public uint ServerRegion { get; set; } - - - public float ServerLoadavg { get; set; } - - - public float ServerTvBroadcastTime { get; set; } - - - public float ServerGameTime { get; set; } - - - public ulong ServerRelayConnectedSteamId { get; set; } - - - public uint RelaySlotsMax { get; set; } - - - public int RelaysConnected { get; set; } - - - public int RelayClientsConnected { get; set; } - - - public ulong RelayedGameServerSteamId { get; set; } - - - public uint ParentRelayCount { get; set; } - - - public ulong TvSecretCode { get; set; } - -} + static CMsgGameServerInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgGameServerInfoImpl(handle, isManuallyAllocated); + + public uint ServerPublicIpAddr { get; set; } + public uint ServerPrivateIpAddr { get; set; } + public uint ServerPort { get; set; } + public uint ServerTvPort { get; set; } + public string ServerKey { get; set; } + public bool ServerHibernation { get; set; } + public CMsgGameServerInfo_ServerType ServerType { get; set; } + public uint ServerRegion { get; set; } + public float ServerLoadavg { get; set; } + public float ServerTvBroadcastTime { get; set; } + public float ServerGameTime { get; set; } + public ulong ServerRelayConnectedSteamId { get; set; } + public uint RelaySlotsMax { get; set; } + public int RelaysConnected { get; set; } + public int RelayClientsConnected { get; set; } + public ulong RelayedGameServerSteamId { get; set; } + public uint ParentRelayCount { get; set; } + public ulong TvSecretCode { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgIPCAddress.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgIPCAddress.cs index a0fff32f5..c278d04fa 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgIPCAddress.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgIPCAddress.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgIPCAddress : ITypedProtobuf { - static CMsgIPCAddress ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgIPCAddressImpl(handle, isManuallyAllocated); - - - public ulong ComputerGuid { get; set; } - - - public uint ProcessId { get; set; } + static CMsgIPCAddress ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgIPCAddressImpl(handle, isManuallyAllocated); -} + public ulong ComputerGuid { get; set; } + public uint ProcessId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgIncrementKillCountAttribute.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgIncrementKillCountAttribute.cs index 8156d7c2f..d3f9e1c55 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgIncrementKillCountAttribute.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgIncrementKillCountAttribute.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,21 +6,11 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgIncrementKillCountAttribute : ITypedProtobuf { - static CMsgIncrementKillCountAttribute ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgIncrementKillCountAttributeImpl(handle, isManuallyAllocated); - - - public uint KillerAccountId { get; set; } - - - public uint VictimAccountId { get; set; } - - - public ulong ItemId { get; set; } - - - public uint EventType { get; set; } - - - public uint Amount { get; set; } - -} + static CMsgIncrementKillCountAttribute ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgIncrementKillCountAttributeImpl(handle, isManuallyAllocated); + + public uint KillerAccountId { get; set; } + public uint VictimAccountId { get; set; } + public ulong ItemId { get; set; } + public uint EventType { get; set; } + public uint Amount { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgInvitationCreated.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgInvitationCreated.cs index f67035c43..41b65b9e2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgInvitationCreated.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgInvitationCreated.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgInvitationCreated : ITypedProtobuf { - static CMsgInvitationCreated ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgInvitationCreatedImpl(handle, isManuallyAllocated); - - - public ulong GroupId { get; set; } - - - public ulong SteamId { get; set; } + static CMsgInvitationCreated ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgInvitationCreatedImpl(handle, isManuallyAllocated); -} + public ulong GroupId { get; set; } + public ulong SteamId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgInviteToParty.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgInviteToParty.cs index 3b04c6063..fd9ab0037 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgInviteToParty.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgInviteToParty.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgInviteToParty : ITypedProtobuf { - static CMsgInviteToParty ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgInviteToPartyImpl(handle, isManuallyAllocated); - - - public ulong SteamId { get; set; } - - - public uint ClientVersion { get; set; } - - - public uint TeamInvite { get; set; } + static CMsgInviteToParty ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgInviteToPartyImpl(handle, isManuallyAllocated); -} + public ulong SteamId { get; set; } + public uint ClientVersion { get; set; } + public uint TeamInvite { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgItemAcknowledged.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgItemAcknowledged.cs index e60d26c85..b69641234 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgItemAcknowledged.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgItemAcknowledged.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgItemAcknowledged : ITypedProtobuf { - static CMsgItemAcknowledged ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgItemAcknowledgedImpl(handle, isManuallyAllocated); - - - public CEconItemPreviewDataBlock Iteminfo { get; } + static CMsgItemAcknowledged ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgItemAcknowledgedImpl(handle, isManuallyAllocated); -} + public CEconItemPreviewDataBlock Iteminfo { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgItemAcknowledged__DEPRECATED.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgItemAcknowledged__DEPRECATED.cs index e064a4a29..f29850a47 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgItemAcknowledged__DEPRECATED.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgItemAcknowledged__DEPRECATED.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,27 +6,13 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgItemAcknowledged__DEPRECATED : ITypedProtobuf { - static CMsgItemAcknowledged__DEPRECATED ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgItemAcknowledged__DEPRECATEDImpl(handle, isManuallyAllocated); - - - public uint AccountId { get; set; } - - - public uint Inventory { get; set; } - - - public uint DefIndex { get; set; } - - - public uint Quality { get; set; } - - - public uint Rarity { get; set; } - - - public uint Origin { get; set; } - - - public ulong ItemId { get; set; } - -} + static CMsgItemAcknowledged__DEPRECATED ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgItemAcknowledged__DEPRECATEDImpl(handle, isManuallyAllocated); + + public uint AccountId { get; set; } + public uint Inventory { get; set; } + public uint DefIndex { get; set; } + public uint Quality { get; set; } + public uint Rarity { get; set; } + public uint Origin { get; set; } + public ulong ItemId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgKickFromParty.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgKickFromParty.cs index 29062c90f..ee5e1b4c2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgKickFromParty.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgKickFromParty.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgKickFromParty : ITypedProtobuf { - static CMsgKickFromParty ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgKickFromPartyImpl(handle, isManuallyAllocated); - - - public ulong SteamId { get; set; } + static CMsgKickFromParty ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgKickFromPartyImpl(handle, isManuallyAllocated); -} + public ulong SteamId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgLANServerAvailable.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgLANServerAvailable.cs index 79a3a80fa..35272425a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgLANServerAvailable.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgLANServerAvailable.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgLANServerAvailable : ITypedProtobuf { - static CMsgLANServerAvailable ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgLANServerAvailableImpl(handle, isManuallyAllocated); - - - public ulong LobbyId { get; set; } + static CMsgLANServerAvailable ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgLANServerAvailableImpl(handle, isManuallyAllocated); -} + public ulong LobbyId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgLeaveParty.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgLeaveParty.cs index e8658dbb0..4e7a28980 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgLeaveParty.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgLeaveParty.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,7 +6,6 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgLeaveParty : ITypedProtobuf { - static CMsgLeaveParty ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgLeavePartyImpl(handle, isManuallyAllocated); - + static CMsgLeaveParty ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgLeavePartyImpl(handle, isManuallyAllocated); -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgLegacySource1ClientWelcome.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgLegacySource1ClientWelcome.cs index 95adc5a98..0012bc7f5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgLegacySource1ClientWelcome.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgLegacySource1ClientWelcome.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,39 +6,17 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgLegacySource1ClientWelcome : ITypedProtobuf { - static CMsgLegacySource1ClientWelcome ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgLegacySource1ClientWelcomeImpl(handle, isManuallyAllocated); - - - public uint Version { get; set; } - - - public byte[] GameData { get; set; } - - - public IProtobufRepeatedFieldSubMessageType OutofdateSubscribedCaches { get; } - - - public IProtobufRepeatedFieldSubMessageType UptodateSubscribedCaches { get; } - - - public CMsgLegacySource1ClientWelcome_Location Location { get; } - - - public byte[] GameData2 { get; set; } - - - public uint Rtime32GcWelcomeTimestamp { get; set; } - - - public uint Currency { get; set; } - - - public uint Balance { get; set; } - - - public string BalanceUrl { get; set; } - - - public string TxnCountryCode { get; set; } - -} + static CMsgLegacySource1ClientWelcome ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgLegacySource1ClientWelcomeImpl(handle, isManuallyAllocated); + + public uint Version { get; set; } + public byte[] GameData { get; set; } + public IProtobufRepeatedFieldSubMessageType OutofdateSubscribedCaches { get; } + public IProtobufRepeatedFieldSubMessageType UptodateSubscribedCaches { get; } + public CMsgLegacySource1ClientWelcome_Location Location { get; } + public byte[] GameData2 { get; set; } + public uint Rtime32GcWelcomeTimestamp { get; set; } + public uint Currency { get; set; } + public uint Balance { get; set; } + public string BalanceUrl { get; set; } + public string TxnCountryCode { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgLegacySource1ClientWelcome_Location.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgLegacySource1ClientWelcome_Location.cs index 028ea422d..1d31cc4d3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgLegacySource1ClientWelcome_Location.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgLegacySource1ClientWelcome_Location.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgLegacySource1ClientWelcome_Location : ITypedProtobuf { - static CMsgLegacySource1ClientWelcome_Location ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgLegacySource1ClientWelcome_LocationImpl(handle, isManuallyAllocated); - - - public float Latitude { get; set; } - - - public float Longitude { get; set; } - - - public string Country { get; set; } + static CMsgLegacySource1ClientWelcome_Location ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgLegacySource1ClientWelcome_LocationImpl(handle, isManuallyAllocated); -} + public float Latitude { get; set; } + public float Longitude { get; set; } + public string Country { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgModifyItemAttribute.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgModifyItemAttribute.cs index b5c5b1134..e344b2982 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgModifyItemAttribute.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgModifyItemAttribute.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgModifyItemAttribute : ITypedProtobuf { - static CMsgModifyItemAttribute ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgModifyItemAttributeImpl(handle, isManuallyAllocated); - - - public ulong ItemId { get; set; } - - - public uint AttrDefidx { get; set; } - - - public uint AttrValue { get; set; } + static CMsgModifyItemAttribute ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgModifyItemAttributeImpl(handle, isManuallyAllocated); -} + public ulong ItemId { get; set; } + public uint AttrDefidx { get; set; } + public uint AttrValue { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgOpenCrate.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgOpenCrate.cs index d557d217d..8ada6cc8d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgOpenCrate.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgOpenCrate.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgOpenCrate : ITypedProtobuf { - static CMsgOpenCrate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgOpenCrateImpl(handle, isManuallyAllocated); - - - public ulong ToolItemId { get; set; } - - - public ulong SubjectItemId { get; set; } - - - public bool ForRental { get; set; } - - - public uint PointsRemaining { get; set; } + static CMsgOpenCrate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgOpenCrateImpl(handle, isManuallyAllocated); -} + public ulong ToolItemId { get; set; } + public ulong SubjectItemId { get; set; } + public bool ForRental { get; set; } + public uint PointsRemaining { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgPartyInviteResponse.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgPartyInviteResponse.cs index 7a52b4422..ac932288a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgPartyInviteResponse.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgPartyInviteResponse.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgPartyInviteResponse : ITypedProtobuf { - static CMsgPartyInviteResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgPartyInviteResponseImpl(handle, isManuallyAllocated); - - - public ulong PartyId { get; set; } - - - public bool Accept { get; set; } - - - public uint ClientVersion { get; set; } - - - public uint TeamInvite { get; set; } + static CMsgPartyInviteResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgPartyInviteResponseImpl(handle, isManuallyAllocated); -} + public ulong PartyId { get; set; } + public bool Accept { get; set; } + public uint ClientVersion { get; set; } + public uint TeamInvite { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgPlaceDecalEvent.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgPlaceDecalEvent.cs index 9869f6b31..e3b72047b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgPlaceDecalEvent.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgPlaceDecalEvent.cs @@ -1,56 +1,28 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgPlaceDecalEvent : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 201; - - static string INetMessage.MessageName => "CMsgPlaceDecalEvent"; - - static CMsgPlaceDecalEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgPlaceDecalEventImpl(handle, isManuallyAllocated); - - - public Vector Position { get; set; } - - - public Vector Normal { get; set; } - - - public Vector Saxis { get; set; } - - - public int Boneindex { get; set; } - - - public int Triangleindex { get; set; } - - - public uint Flags { get; set; } - - - public uint Color { get; set; } - - - public int RandomSeed { get; set; } - - - public uint DecalGroupName { get; set; } - - - public float SizeOverride { get; set; } - - - public uint Entityhandle { get; set; } - - - public ulong MaterialId { get; set; } - - - public uint SequenceName { get; set; } - -} + static int INetMessage.MessageId => 201; + + static string INetMessage.MessageName => "CMsgPlaceDecalEvent"; + + static CMsgPlaceDecalEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgPlaceDecalEventImpl(handle, isManuallyAllocated); + + public Vector Position { get; set; } + public Vector Normal { get; set; } + public Vector Saxis { get; set; } + public int Boneindex { get; set; } + public int Triangleindex { get; set; } + public uint Flags { get; set; } + public uint Color { get; set; } + public int RandomSeed { get; set; } + public uint DecalGroupName { get; set; } + public float SizeOverride { get; set; } + public uint Entityhandle { get; set; } + public ulong MaterialId { get; set; } + public uint SequenceName { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgPlayerBulletHit.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgPlayerBulletHit.cs index 4bea242ab..84c7c5d99 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgPlayerBulletHit.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgPlayerBulletHit.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,27 +6,13 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgPlayerBulletHit : ITypedProtobuf { - static CMsgPlayerBulletHit ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgPlayerBulletHitImpl(handle, isManuallyAllocated); - - - public int AttackerSlot { get; set; } - - - public int VictimSlot { get; set; } - - - public Vector VictimPos { get; set; } - - - public int HitGroup { get; set; } - - - public int Damage { get; set; } - - - public int PenetrationCount { get; set; } - - - public bool IsKill { get; set; } - -} + static CMsgPlayerBulletHit ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgPlayerBulletHitImpl(handle, isManuallyAllocated); + + public int AttackerSlot { get; set; } + public int VictimSlot { get; set; } + public Vector VictimPos { get; set; } + public int HitGroup { get; set; } + public int Damage { get; set; } + public int PenetrationCount { get; set; } + public bool IsKill { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgPlayerInfo.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgPlayerInfo.cs index a43ac229e..680a9a085 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgPlayerInfo.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgPlayerInfo.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,24 +6,12 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgPlayerInfo : ITypedProtobuf { - static CMsgPlayerInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgPlayerInfoImpl(handle, isManuallyAllocated); - - - public string Name { get; set; } - - - public ulong Xuid { get; set; } - - - public int Userid { get; set; } - - - public ulong Steamid { get; set; } - - - public bool Fakeplayer { get; set; } - - - public bool Ishltv { get; set; } - -} + static CMsgPlayerInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgPlayerInfoImpl(handle, isManuallyAllocated); + + public string Name { get; set; } + public ulong Xuid { get; set; } + public int Userid { get; set; } + public ulong Steamid { get; set; } + public bool Fakeplayer { get; set; } + public bool Ishltv { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgProtoBufHeader.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgProtoBufHeader.cs new file mode 100644 index 000000000..f5895989e --- /dev/null +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgProtoBufHeader.cs @@ -0,0 +1,22 @@ +using SwiftlyS2.Core.ProtobufDefinitions; +using SwiftlyS2.Shared.Natives; +using SwiftlyS2.Shared.NetMessages; + +namespace SwiftlyS2.Shared.ProtobufDefinitions; + +public interface CMsgProtoBufHeader : ITypedProtobuf +{ + static CMsgProtoBufHeader ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgProtoBufHeaderImpl(handle, isManuallyAllocated); + + public ulong ClientSteamId { get; set; } + public int ClientSessionId { get; set; } + public uint SourceAppId { get; set; } + public ulong JobIdSource { get; set; } + public ulong JobIdTarget { get; set; } + public string TargetJobName { get; set; } + public int Eresult { get; set; } + public string ErrorMessage { get; set; } + public uint Ip { get; set; } + public GCProtoBufMsgSrc GcMsgSrc { get; set; } + public uint GcDirIndexSource { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgQAngle.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgQAngle.cs index 02dd9afc0..2e7a6a095 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgQAngle.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgQAngle.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgQAngle : ITypedProtobuf { - static CMsgQAngle ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgQAngleImpl(handle, isManuallyAllocated); - - - public float X { get; set; } - - - public float Y { get; set; } - - - public float Z { get; set; } + static CMsgQAngle ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgQAngleImpl(handle, isManuallyAllocated); -} + public float X { get; set; } + public float Y { get; set; } + public float Z { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgQuaternion.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgQuaternion.cs index 31ec39718..c18ff1e93 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgQuaternion.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgQuaternion.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgQuaternion : ITypedProtobuf { - static CMsgQuaternion ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgQuaternionImpl(handle, isManuallyAllocated); - - - public float X { get; set; } - - - public float Y { get; set; } - - - public float Z { get; set; } - - - public float W { get; set; } + static CMsgQuaternion ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgQuaternionImpl(handle, isManuallyAllocated); -} + public float X { get; set; } + public float Y { get; set; } + public float Z { get; set; } + public float W { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgRGBA.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgRGBA.cs index 344af3209..d5b557923 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgRGBA.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgRGBA.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgRGBA : ITypedProtobuf { - static CMsgRGBA ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgRGBAImpl(handle, isManuallyAllocated); - - - public int R { get; set; } - - - public int G { get; set; } - - - public int B { get; set; } - - - public int A { get; set; } + static CMsgRGBA ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgRGBAImpl(handle, isManuallyAllocated); -} + public int R { get; set; } + public int G { get; set; } + public int B { get; set; } + public int A { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgRecurringMissionSchema.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgRecurringMissionSchema.cs index e04657895..cf6982f1f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgRecurringMissionSchema.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgRecurringMissionSchema.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgRecurringMissionSchema : ITypedProtobuf { - static CMsgRecurringMissionSchema ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgRecurringMissionSchemaImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType Missions { get; } + static CMsgRecurringMissionSchema ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgRecurringMissionSchemaImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType Missions { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgRecurringMissionSchema_MissionTemplateList.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgRecurringMissionSchema_MissionTemplateList.cs index b7dc81205..602b17bbc 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgRecurringMissionSchema_MissionTemplateList.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgRecurringMissionSchema_MissionTemplateList.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgRecurringMissionSchema_MissionTemplateList : ITypedProtobuf { - static CMsgRecurringMissionSchema_MissionTemplateList ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgRecurringMissionSchema_MissionTemplateListImpl(handle, isManuallyAllocated); - - - public uint Period { get; set; } - - - public IProtobufRepeatedFieldValueType MissionTemplates { get; } + static CMsgRecurringMissionSchema_MissionTemplateList ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgRecurringMissionSchema_MissionTemplateListImpl(handle, isManuallyAllocated); -} + public uint Period { get; set; } + public IProtobufRepeatedFieldValueType MissionTemplates { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgReplayUploadedToYouTube.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgReplayUploadedToYouTube.cs index 1b4fce9ba..c8783daa3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgReplayUploadedToYouTube.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgReplayUploadedToYouTube.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgReplayUploadedToYouTube : ITypedProtobuf { - static CMsgReplayUploadedToYouTube ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgReplayUploadedToYouTubeImpl(handle, isManuallyAllocated); - - - public string YoutubeUrl { get; set; } - - - public string YoutubeAccountName { get; set; } - - - public ulong SessionId { get; set; } + static CMsgReplayUploadedToYouTube ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgReplayUploadedToYouTubeImpl(handle, isManuallyAllocated); -} + public string YoutubeUrl { get; set; } + public string YoutubeAccountName { get; set; } + public ulong SessionId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgReplicateConVars.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgReplicateConVars.cs index 02a5ef8da..d8577d5c7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgReplicateConVars.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgReplicateConVars.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgReplicateConVars : ITypedProtobuf { - static CMsgReplicateConVars ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgReplicateConVarsImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType Convars { get; } + static CMsgReplicateConVars ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgReplicateConVarsImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType Convars { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgRequestInventoryRefresh.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgRequestInventoryRefresh.cs index f2d303768..7c22b3e81 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgRequestInventoryRefresh.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgRequestInventoryRefresh.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,7 +6,6 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgRequestInventoryRefresh : ITypedProtobuf { - static CMsgRequestInventoryRefresh ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgRequestInventoryRefreshImpl(handle, isManuallyAllocated); - + static CMsgRequestInventoryRefresh ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgRequestInventoryRefreshImpl(handle, isManuallyAllocated); -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgRequestRecurringMissionSchedule.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgRequestRecurringMissionSchedule.cs index 450a7c68a..77ab9f8f5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgRequestRecurringMissionSchedule.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgRequestRecurringMissionSchedule.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,7 +6,6 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgRequestRecurringMissionSchedule : ITypedProtobuf { - static CMsgRequestRecurringMissionSchedule ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgRequestRecurringMissionScheduleImpl(handle, isManuallyAllocated); - + static CMsgRequestRecurringMissionSchedule ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgRequestRecurringMissionScheduleImpl(handle, isManuallyAllocated); -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSDONoMemcached.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSDONoMemcached.cs index cf00f6b23..304823a60 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSDONoMemcached.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSDONoMemcached.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,7 +6,6 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgSDONoMemcached : ITypedProtobuf { - static CMsgSDONoMemcached ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSDONoMemcachedImpl(handle, isManuallyAllocated); - + static CMsgSDONoMemcached ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSDONoMemcachedImpl(handle, isManuallyAllocated); -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOCacheHaveVersion.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOCacheHaveVersion.cs index d5ee484cb..55b48b520 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOCacheHaveVersion.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOCacheHaveVersion.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgSOCacheHaveVersion : ITypedProtobuf { - static CMsgSOCacheHaveVersion ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSOCacheHaveVersionImpl(handle, isManuallyAllocated); - - - public CMsgSOIDOwner Soid { get; } - - - public ulong Version { get; set; } + static CMsgSOCacheHaveVersion ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSOCacheHaveVersionImpl(handle, isManuallyAllocated); -} + public CMsgSOIDOwner Soid { get; } + public ulong Version { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOCacheSubscribed.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOCacheSubscribed.cs index 4953bb427..d77832fe9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOCacheSubscribed.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOCacheSubscribed.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgSOCacheSubscribed : ITypedProtobuf { - static CMsgSOCacheSubscribed ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSOCacheSubscribedImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType Objects { get; } - - - public ulong Version { get; set; } - - - public CMsgSOIDOwner OwnerSoid { get; } + static CMsgSOCacheSubscribed ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSOCacheSubscribedImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType Objects { get; } + public ulong Version { get; set; } + public CMsgSOIDOwner OwnerSoid { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOCacheSubscribed_SubscribedType.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOCacheSubscribed_SubscribedType.cs index 1b76dfa40..84744de50 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOCacheSubscribed_SubscribedType.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOCacheSubscribed_SubscribedType.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgSOCacheSubscribed_SubscribedType : ITypedProtobuf { - static CMsgSOCacheSubscribed_SubscribedType ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSOCacheSubscribed_SubscribedTypeImpl(handle, isManuallyAllocated); - - - public int TypeId { get; set; } - - - public IProtobufRepeatedFieldValueType ObjectData { get; } + static CMsgSOCacheSubscribed_SubscribedType ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSOCacheSubscribed_SubscribedTypeImpl(handle, isManuallyAllocated); -} + public int TypeId { get; set; } + public IProtobufRepeatedFieldValueType ObjectData { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOCacheSubscriptionCheck.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOCacheSubscriptionCheck.cs index f711f8c5d..b575223b6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOCacheSubscriptionCheck.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOCacheSubscriptionCheck.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgSOCacheSubscriptionCheck : ITypedProtobuf { - static CMsgSOCacheSubscriptionCheck ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSOCacheSubscriptionCheckImpl(handle, isManuallyAllocated); - - - public ulong Version { get; set; } - - - public CMsgSOIDOwner OwnerSoid { get; } + static CMsgSOCacheSubscriptionCheck ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSOCacheSubscriptionCheckImpl(handle, isManuallyAllocated); -} + public ulong Version { get; set; } + public CMsgSOIDOwner OwnerSoid { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOCacheSubscriptionRefresh.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOCacheSubscriptionRefresh.cs index e4088308d..5889db563 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOCacheSubscriptionRefresh.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOCacheSubscriptionRefresh.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgSOCacheSubscriptionRefresh : ITypedProtobuf { - static CMsgSOCacheSubscriptionRefresh ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSOCacheSubscriptionRefreshImpl(handle, isManuallyAllocated); - - - public CMsgSOIDOwner OwnerSoid { get; } + static CMsgSOCacheSubscriptionRefresh ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSOCacheSubscriptionRefreshImpl(handle, isManuallyAllocated); -} + public CMsgSOIDOwner OwnerSoid { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOCacheUnsubscribed.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOCacheUnsubscribed.cs index 1de858b1d..398f9636f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOCacheUnsubscribed.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOCacheUnsubscribed.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgSOCacheUnsubscribed : ITypedProtobuf { - static CMsgSOCacheUnsubscribed ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSOCacheUnsubscribedImpl(handle, isManuallyAllocated); - - - public CMsgSOIDOwner OwnerSoid { get; } + static CMsgSOCacheUnsubscribed ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSOCacheUnsubscribedImpl(handle, isManuallyAllocated); -} + public CMsgSOIDOwner OwnerSoid { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOCacheVersion.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOCacheVersion.cs index 5d052be91..121469ba8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOCacheVersion.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOCacheVersion.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgSOCacheVersion : ITypedProtobuf { - static CMsgSOCacheVersion ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSOCacheVersionImpl(handle, isManuallyAllocated); - - - public ulong Version { get; set; } + static CMsgSOCacheVersion ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSOCacheVersionImpl(handle, isManuallyAllocated); -} + public ulong Version { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOIDOwner.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOIDOwner.cs index 8cea128af..3af7cc605 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOIDOwner.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOIDOwner.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgSOIDOwner : ITypedProtobuf { - static CMsgSOIDOwner ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSOIDOwnerImpl(handle, isManuallyAllocated); - - - public uint Type { get; set; } - - - public ulong Id { get; set; } + static CMsgSOIDOwner ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSOIDOwnerImpl(handle, isManuallyAllocated); -} + public uint Type { get; set; } + public ulong Id { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOMultipleObjects.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOMultipleObjects.cs index 074e56a5c..4ee111d80 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOMultipleObjects.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOMultipleObjects.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgSOMultipleObjects : ITypedProtobuf { - static CMsgSOMultipleObjects ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSOMultipleObjectsImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType ObjectsModified { get; } - - - public ulong Version { get; set; } - - - public CMsgSOIDOwner OwnerSoid { get; } + static CMsgSOMultipleObjects ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSOMultipleObjectsImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType ObjectsModified { get; } + public ulong Version { get; set; } + public CMsgSOIDOwner OwnerSoid { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOMultipleObjects_SingleObject.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOMultipleObjects_SingleObject.cs index bb674ea16..c7afebac3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOMultipleObjects_SingleObject.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOMultipleObjects_SingleObject.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgSOMultipleObjects_SingleObject : ITypedProtobuf { - static CMsgSOMultipleObjects_SingleObject ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSOMultipleObjects_SingleObjectImpl(handle, isManuallyAllocated); - - - public int TypeId { get; set; } - - - public byte[] ObjectData { get; set; } + static CMsgSOMultipleObjects_SingleObject ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSOMultipleObjects_SingleObjectImpl(handle, isManuallyAllocated); -} + public int TypeId { get; set; } + public byte[] ObjectData { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOSingleObject.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOSingleObject.cs index 9e5571c48..f9c260852 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOSingleObject.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSOSingleObject.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgSOSingleObject : ITypedProtobuf { - static CMsgSOSingleObject ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSOSingleObjectImpl(handle, isManuallyAllocated); - - - public int TypeId { get; set; } - - - public byte[] ObjectData { get; set; } - - - public ulong Version { get; set; } - - - public CMsgSOIDOwner OwnerSoid { get; } + static CMsgSOSingleObject ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSOSingleObjectImpl(handle, isManuallyAllocated); -} + public int TypeId { get; set; } + public byte[] ObjectData { get; set; } + public ulong Version { get; set; } + public CMsgSOIDOwner OwnerSoid { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSerializedSOCache.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSerializedSOCache.cs index 884bc01e2..61b5d75b9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSerializedSOCache.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSerializedSOCache.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgSerializedSOCache : ITypedProtobuf { - static CMsgSerializedSOCache ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSerializedSOCacheImpl(handle, isManuallyAllocated); - - - public uint FileVersion { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Caches { get; } - - - public uint GcSocacheFileVersion { get; set; } + static CMsgSerializedSOCache ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSerializedSOCacheImpl(handle, isManuallyAllocated); -} + public uint FileVersion { get; set; } + public IProtobufRepeatedFieldSubMessageType Caches { get; } + public uint GcSocacheFileVersion { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSerializedSOCache_Cache.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSerializedSOCache_Cache.cs index 6319cd5cd..82a0ef7c2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSerializedSOCache_Cache.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSerializedSOCache_Cache.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgSerializedSOCache_Cache : ITypedProtobuf { - static CMsgSerializedSOCache_Cache ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSerializedSOCache_CacheImpl(handle, isManuallyAllocated); - - - public uint Type { get; set; } - - - public ulong Id { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Versions { get; } - - - public IProtobufRepeatedFieldSubMessageType TypeCaches { get; } + static CMsgSerializedSOCache_Cache ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSerializedSOCache_CacheImpl(handle, isManuallyAllocated); -} + public uint Type { get; set; } + public ulong Id { get; set; } + public IProtobufRepeatedFieldSubMessageType Versions { get; } + public IProtobufRepeatedFieldSubMessageType TypeCaches { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSerializedSOCache_Cache_Version.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSerializedSOCache_Cache_Version.cs index bd4e4d28a..51a68b254 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSerializedSOCache_Cache_Version.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSerializedSOCache_Cache_Version.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgSerializedSOCache_Cache_Version : ITypedProtobuf { - static CMsgSerializedSOCache_Cache_Version ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSerializedSOCache_Cache_VersionImpl(handle, isManuallyAllocated); - - - public uint Service { get; set; } - - - public ulong Version { get; set; } + static CMsgSerializedSOCache_Cache_Version ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSerializedSOCache_Cache_VersionImpl(handle, isManuallyAllocated); -} + public uint Service { get; set; } + public ulong Version { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSerializedSOCache_TypeCache.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSerializedSOCache_TypeCache.cs index e7ecf69c9..78d9589d8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSerializedSOCache_TypeCache.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSerializedSOCache_TypeCache.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgSerializedSOCache_TypeCache : ITypedProtobuf { - static CMsgSerializedSOCache_TypeCache ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSerializedSOCache_TypeCacheImpl(handle, isManuallyAllocated); - - - public uint Type { get; set; } - - - public IProtobufRepeatedFieldValueType Objects { get; } - - - public uint ServiceId { get; set; } + static CMsgSerializedSOCache_TypeCache ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSerializedSOCache_TypeCacheImpl(handle, isManuallyAllocated); -} + public uint Type { get; set; } + public IProtobufRepeatedFieldValueType Objects { get; } + public uint ServiceId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgServerAvailable.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgServerAvailable.cs index e683874cb..c3fbcabf3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgServerAvailable.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgServerAvailable.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,7 +6,6 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgServerAvailable : ITypedProtobuf { - static CMsgServerAvailable ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgServerAvailableImpl(handle, isManuallyAllocated); - + static CMsgServerAvailable ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgServerAvailableImpl(handle, isManuallyAllocated); -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgServerHello.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgServerHello.cs index 3ed51f8c3..354dedff6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgServerHello.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgServerHello.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,30 +6,14 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgServerHello : ITypedProtobuf { - static CMsgServerHello ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgServerHelloImpl(handle, isManuallyAllocated); - - - public uint Version { get; set; } - - - public IProtobufRepeatedFieldSubMessageType SocacheHaveVersions { get; } - - - public uint LegacyClientSessionNeed { get; set; } - - - public uint ClientLauncher { get; set; } - - - public byte[] LegacySteamdatagramRouting { get; set; } - - - public uint RequiredInternalAddr { get; set; } - - - public byte[] SteamdatagramLogin { get; set; } - - - public uint SocacheControl { get; set; } - -} + static CMsgServerHello ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgServerHelloImpl(handle, isManuallyAllocated); + + public uint Version { get; set; } + public IProtobufRepeatedFieldSubMessageType SocacheHaveVersions { get; } + public uint LegacyClientSessionNeed { get; set; } + public uint ClientLauncher { get; set; } + public byte[] LegacySteamdatagramRouting { get; set; } + public uint RequiredInternalAddr { get; set; } + public byte[] SteamdatagramLogin { get; set; } + public uint SocacheControl { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgServerNetworkStats.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgServerNetworkStats.cs index cb2e5e1f2..01284595e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgServerNetworkStats.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgServerNetworkStats.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,81 +6,31 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgServerNetworkStats : ITypedProtobuf { - static CMsgServerNetworkStats ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgServerNetworkStatsImpl(handle, isManuallyAllocated); - - - public bool Dedicated { get; set; } - - - public int CpuUsage { get; set; } - - - public int MemoryUsedMb { get; set; } - - - public int MemoryFreeMb { get; set; } - - - public int Uptime { get; set; } - - - public int SpawnCount { get; set; } - - - public int NumClients { get; set; } - - - public int NumBots { get; set; } - - - public int NumSpectators { get; set; } - - - public int NumTvRelays { get; set; } - - - public float Fps { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Ports { get; } - - - public float AvgPingMs { get; set; } - - - public float AvgEngineLatencyOut { get; set; } - - - public float AvgPacketsOut { get; set; } - - - public float AvgPacketsIn { get; set; } - - - public float AvgLossOut { get; set; } - - - public float AvgLossIn { get; set; } - - - public float AvgDataOut { get; set; } - - - public float AvgDataIn { get; set; } - - - public ulong TotalDataIn { get; set; } - - - public ulong TotalPacketsIn { get; set; } - - - public ulong TotalDataOut { get; set; } - - - public ulong TotalPacketsOut { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Players { get; } - -} + static CMsgServerNetworkStats ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgServerNetworkStatsImpl(handle, isManuallyAllocated); + + public bool Dedicated { get; set; } + public int CpuUsage { get; set; } + public int MemoryUsedMb { get; set; } + public int MemoryFreeMb { get; set; } + public int Uptime { get; set; } + public int SpawnCount { get; set; } + public int NumClients { get; set; } + public int NumBots { get; set; } + public int NumSpectators { get; set; } + public int NumTvRelays { get; set; } + public float Fps { get; set; } + public IProtobufRepeatedFieldSubMessageType Ports { get; } + public float AvgPingMs { get; set; } + public float AvgEngineLatencyOut { get; set; } + public float AvgPacketsOut { get; set; } + public float AvgPacketsIn { get; set; } + public float AvgLossOut { get; set; } + public float AvgLossIn { get; set; } + public float AvgDataOut { get; set; } + public float AvgDataIn { get; set; } + public ulong TotalDataIn { get; set; } + public ulong TotalPacketsIn { get; set; } + public ulong TotalDataOut { get; set; } + public ulong TotalPacketsOut { get; set; } + public IProtobufRepeatedFieldSubMessageType Players { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgServerNetworkStats_Player.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgServerNetworkStats_Player.cs index e6e0ccab1..ca20f3ce7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgServerNetworkStats_Player.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgServerNetworkStats_Player.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,30 +6,14 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgServerNetworkStats_Player : ITypedProtobuf { - static CMsgServerNetworkStats_Player ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgServerNetworkStats_PlayerImpl(handle, isManuallyAllocated); - - - public ulong Steamid { get; set; } - - - public string RemoteAddr { get; set; } - - - public int PingAvgMs { get; set; } - - - public float PacketLossPct { get; set; } - - - public bool IsBot { get; set; } - - - public float LossIn { get; set; } - - - public float LossOut { get; set; } - - - public int EngineLatencyMs { get; set; } - -} + static CMsgServerNetworkStats_Player ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgServerNetworkStats_PlayerImpl(handle, isManuallyAllocated); + + public ulong Steamid { get; set; } + public string RemoteAddr { get; set; } + public int PingAvgMs { get; set; } + public float PacketLossPct { get; set; } + public bool IsBot { get; set; } + public float LossIn { get; set; } + public float LossOut { get; set; } + public int EngineLatencyMs { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgServerNetworkStats_Port.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgServerNetworkStats_Port.cs index e039bb38d..3ed9f55f5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgServerNetworkStats_Port.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgServerNetworkStats_Port.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgServerNetworkStats_Port : ITypedProtobuf { - static CMsgServerNetworkStats_Port ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgServerNetworkStats_PortImpl(handle, isManuallyAllocated); - - - public int Port { get; set; } - - - public string Name { get; set; } + static CMsgServerNetworkStats_Port ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgServerNetworkStats_PortImpl(handle, isManuallyAllocated); -} + public int Port { get; set; } + public string Name { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgServerPeer.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgServerPeer.cs index 054f1f83b..005323d87 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgServerPeer.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgServerPeer.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,24 +6,12 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgServerPeer : ITypedProtobuf { - static CMsgServerPeer ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgServerPeerImpl(handle, isManuallyAllocated); - - - public int PlayerSlot { get; set; } - - - public ulong Steamid { get; set; } - - - public CMsgIPCAddress Ipc { get; } - - - public bool TheyHearYou { get; set; } - - - public bool YouHearThem { get; set; } - - - public bool IsListenserverHost { get; set; } - -} + static CMsgServerPeer ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgServerPeerImpl(handle, isManuallyAllocated); + + public int PlayerSlot { get; set; } + public ulong Steamid { get; set; } + public CMsgIPCAddress Ipc { get; } + public bool TheyHearYou { get; set; } + public bool YouHearThem { get; set; } + public bool IsListenserverHost { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgServerUserCmd.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgServerUserCmd.cs index f5d459666..90cd61f76 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgServerUserCmd.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgServerUserCmd.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,21 +6,11 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgServerUserCmd : ITypedProtobuf { - static CMsgServerUserCmd ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgServerUserCmdImpl(handle, isManuallyAllocated); - - - public byte[] Data { get; set; } - - - public int CmdNumber { get; set; } - - - public int PlayerSlot { get; set; } - - - public int ServerTickExecuted { get; set; } - - - public int ClientTick { get; set; } - -} + static CMsgServerUserCmd ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgServerUserCmdImpl(handle, isManuallyAllocated); + + public byte[] Data { get; set; } + public int CmdNumber { get; set; } + public int PlayerSlot { get; set; } + public int ServerTickExecuted { get; set; } + public int ClientTick { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSetItemPositions.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSetItemPositions.cs index 068475267..e4ff09455 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSetItemPositions.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSetItemPositions.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgSetItemPositions : ITypedProtobuf { - static CMsgSetItemPositions ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSetItemPositionsImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType ItemPositions { get; } + static CMsgSetItemPositions ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSetItemPositionsImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType ItemPositions { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSetItemPositions_ItemPosition.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSetItemPositions_ItemPosition.cs index b58c94f2e..c67a7fefc 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSetItemPositions_ItemPosition.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSetItemPositions_ItemPosition.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgSetItemPositions_ItemPosition : ITypedProtobuf { - static CMsgSetItemPositions_ItemPosition ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSetItemPositions_ItemPositionImpl(handle, isManuallyAllocated); - - - public uint LegacyItemId { get; set; } - - - public uint Position { get; set; } - - - public ulong ItemId { get; set; } + static CMsgSetItemPositions_ItemPosition ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSetItemPositions_ItemPositionImpl(handle, isManuallyAllocated); -} + public uint LegacyItemId { get; set; } + public uint Position { get; set; } + public ulong ItemId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSortItems.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSortItems.cs index 9dfaef80e..f5388848e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSortItems.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSortItems.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgSortItems : ITypedProtobuf { - static CMsgSortItems ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSortItemsImpl(handle, isManuallyAllocated); - - - public uint SortType { get; set; } + static CMsgSortItems ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSortItemsImpl(handle, isManuallyAllocated); -} + public uint SortType { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSosSetLibraryStackFields.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSosSetLibraryStackFields.cs index f7b1e5fde..16dd10b8a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSosSetLibraryStackFields.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSosSetLibraryStackFields.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgSosSetLibraryStackFields : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 211; - - static string INetMessage.MessageName => "CMsgSosSetLibraryStackFields"; - - static CMsgSosSetLibraryStackFields ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSosSetLibraryStackFieldsImpl(handle, isManuallyAllocated); - - - public uint StackHash { get; set; } + static int INetMessage.MessageId => 211; + static string INetMessage.MessageName => "CMsgSosSetLibraryStackFields"; - public byte[] PackedFields { get; set; } + static CMsgSosSetLibraryStackFields ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSosSetLibraryStackFieldsImpl(handle, isManuallyAllocated); -} + public uint StackHash { get; set; } + public byte[] PackedFields { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSosSetSoundEventParams.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSosSetSoundEventParams.cs index 5967b82a9..898b1d9cf 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSosSetSoundEventParams.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSosSetSoundEventParams.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgSosSetSoundEventParams : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 210; - - static string INetMessage.MessageName => "CMsgSosSetSoundEventParams"; - - static CMsgSosSetSoundEventParams ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSosSetSoundEventParamsImpl(handle, isManuallyAllocated); - - - public int SoundeventGuid { get; set; } + static int INetMessage.MessageId => 210; + static string INetMessage.MessageName => "CMsgSosSetSoundEventParams"; - public byte[] PackedParams { get; set; } + static CMsgSosSetSoundEventParams ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSosSetSoundEventParamsImpl(handle, isManuallyAllocated); -} + public int SoundeventGuid { get; set; } + public byte[] PackedParams { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSosStartSoundEvent.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSosStartSoundEvent.cs index 224f58db6..ec1052409 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSosStartSoundEvent.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSosStartSoundEvent.cs @@ -1,35 +1,21 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgSosStartSoundEvent : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 208; - - static string INetMessage.MessageName => "CMsgSosStartSoundEvent"; - - static CMsgSosStartSoundEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSosStartSoundEventImpl(handle, isManuallyAllocated); - - - public int SoundeventGuid { get; set; } - - - public uint SoundeventHash { get; set; } - - - public int SourceEntityIndex { get; set; } - - - public int Seed { get; set; } - - - public byte[] PackedParams { get; set; } + static int INetMessage.MessageId => 208; + static string INetMessage.MessageName => "CMsgSosStartSoundEvent"; - public float StartTime { get; set; } + static CMsgSosStartSoundEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSosStartSoundEventImpl(handle, isManuallyAllocated); -} + public int SoundeventGuid { get; set; } + public uint SoundeventHash { get; set; } + public int SourceEntityIndex { get; set; } + public int Seed { get; set; } + public byte[] PackedParams { get; set; } + public float StartTime { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSosStopSoundEvent.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSosStopSoundEvent.cs index 2a68f3bc3..f2c8f631d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSosStopSoundEvent.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSosStopSoundEvent.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgSosStopSoundEvent : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 209; - - static string INetMessage.MessageName => "CMsgSosStopSoundEvent"; - - static CMsgSosStopSoundEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSosStopSoundEventImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 209; + static string INetMessage.MessageName => "CMsgSosStopSoundEvent"; - public int SoundeventGuid { get; set; } + static CMsgSosStopSoundEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSosStopSoundEventImpl(handle, isManuallyAllocated); -} + public int SoundeventGuid { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSosStopSoundEventHash.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSosStopSoundEventHash.cs index 93d2fe142..026dab1c7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSosStopSoundEventHash.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSosStopSoundEventHash.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgSosStopSoundEventHash : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 212; - - static string INetMessage.MessageName => "CMsgSosStopSoundEventHash"; - - static CMsgSosStopSoundEventHash ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSosStopSoundEventHashImpl(handle, isManuallyAllocated); - - - public uint SoundeventHash { get; set; } + static int INetMessage.MessageId => 212; + static string INetMessage.MessageName => "CMsgSosStopSoundEventHash"; - public int SourceEntityIndex { get; set; } + static CMsgSosStopSoundEventHash ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSosStopSoundEventHashImpl(handle, isManuallyAllocated); -} + public uint SoundeventHash { get; set; } + public int SourceEntityIndex { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource1LegacyGameEvent.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource1LegacyGameEvent.cs index 22e99295e..df3c88689 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource1LegacyGameEvent.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource1LegacyGameEvent.cs @@ -1,32 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; -public interface CMsgSource1LegacyGameEvent : ITypedProtobuf, INetMessage, IDisposable +public interface CMsgSource1LegacyGameEvent : ITypedProtobuf { - static int INetMessage.MessageId => 207; - - static string INetMessage.MessageName => "CMsgSource1LegacyGameEvent"; - - static CMsgSource1LegacyGameEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSource1LegacyGameEventImpl(handle, isManuallyAllocated); - - - public string EventName { get; set; } - - - public int Eventid { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Keys { get; } - - - public int ServerTick { get; set; } - - - public int Passthrough { get; set; } - -} + static CMsgSource1LegacyGameEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSource1LegacyGameEventImpl(handle, isManuallyAllocated); + + public string EventName { get; set; } + public int Eventid { get; set; } + public IProtobufRepeatedFieldSubMessageType Keys { get; } + public int ServerTick { get; set; } + public int Passthrough { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource1LegacyGameEventList.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource1LegacyGameEventList.cs index 563344f1a..c6deef63f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource1LegacyGameEventList.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource1LegacyGameEventList.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgSource1LegacyGameEventList : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 207; - - static string INetMessage.MessageName => "CMsgSource1LegacyGameEventList"; - - static CMsgSource1LegacyGameEventList ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSource1LegacyGameEventListImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 207; + static string INetMessage.MessageName => "CMsgSource1LegacyGameEventList"; - public IProtobufRepeatedFieldSubMessageType Descriptors { get; } + static CMsgSource1LegacyGameEventList ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSource1LegacyGameEventListImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType Descriptors { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource1LegacyGameEventList_descriptor_t.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource1LegacyGameEventList_descriptor_t.cs index 48f57103d..4b138da9c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource1LegacyGameEventList_descriptor_t.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource1LegacyGameEventList_descriptor_t.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgSource1LegacyGameEventList_descriptor_t : ITypedProtobuf { - static CMsgSource1LegacyGameEventList_descriptor_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSource1LegacyGameEventList_descriptor_tImpl(handle, isManuallyAllocated); - - - public int Eventid { get; set; } - - - public string Name { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Keys { get; } + static CMsgSource1LegacyGameEventList_descriptor_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSource1LegacyGameEventList_descriptor_tImpl(handle, isManuallyAllocated); -} + public int Eventid { get; set; } + public string Name { get; set; } + public IProtobufRepeatedFieldSubMessageType Keys { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource1LegacyGameEventList_key_t.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource1LegacyGameEventList_key_t.cs index 130eb5a9c..897224860 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource1LegacyGameEventList_key_t.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource1LegacyGameEventList_key_t.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgSource1LegacyGameEventList_key_t : ITypedProtobuf { - static CMsgSource1LegacyGameEventList_key_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSource1LegacyGameEventList_key_tImpl(handle, isManuallyAllocated); - - - public int Type { get; set; } - - - public string Name { get; set; } + static CMsgSource1LegacyGameEventList_key_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSource1LegacyGameEventList_key_tImpl(handle, isManuallyAllocated); -} + public int Type { get; set; } + public string Name { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource1LegacyGameEvent_key_t.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource1LegacyGameEvent_key_t.cs index c69fe19ef..20a79024f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource1LegacyGameEvent_key_t.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource1LegacyGameEvent_key_t.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,30 +6,14 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgSource1LegacyGameEvent_key_t : ITypedProtobuf { - static CMsgSource1LegacyGameEvent_key_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSource1LegacyGameEvent_key_tImpl(handle, isManuallyAllocated); - - - public int Type { get; set; } - - - public string ValString { get; set; } - - - public float ValFloat { get; set; } - - - public int ValLong { get; set; } - - - public int ValShort { get; set; } - - - public int ValByte { get; set; } - - - public bool ValBool { get; set; } - - - public ulong ValUint64 { get; set; } - -} + static CMsgSource1LegacyGameEvent_key_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSource1LegacyGameEvent_key_tImpl(handle, isManuallyAllocated); + + public int Type { get; set; } + public string ValString { get; set; } + public float ValFloat { get; set; } + public int ValLong { get; set; } + public int ValShort { get; set; } + public int ValByte { get; set; } + public bool ValBool { get; set; } + public ulong ValUint64 { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource1LegacyListenEvents.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource1LegacyListenEvents.cs index ae369b6d2..4ce0c5d12 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource1LegacyListenEvents.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource1LegacyListenEvents.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgSource1LegacyListenEvents : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 206; - - static string INetMessage.MessageName => "CMsgSource1LegacyListenEvents"; - - static CMsgSource1LegacyListenEvents ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSource1LegacyListenEventsImpl(handle, isManuallyAllocated); - - - public int Playerslot { get; set; } + static int INetMessage.MessageId => 206; + static string INetMessage.MessageName => "CMsgSource1LegacyListenEvents"; - public IProtobufRepeatedFieldValueType Eventarraybits { get; } + static CMsgSource1LegacyListenEvents ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSource1LegacyListenEventsImpl(handle, isManuallyAllocated); -} + public int Playerslot { get; set; } + public IProtobufRepeatedFieldValueType Eventarraybits { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource2NetworkFlowQuality.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource2NetworkFlowQuality.cs index c49a7dce5..f3afbf4c1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource2NetworkFlowQuality.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource2NetworkFlowQuality.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,138 +6,50 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgSource2NetworkFlowQuality : ITypedProtobuf { - static CMsgSource2NetworkFlowQuality ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSource2NetworkFlowQualityImpl(handle, isManuallyAllocated); - - - public uint Duration { get; set; } - - - public ulong BytesTotal { get; set; } - - - public ulong BytesTotalReliable { get; set; } - - - public ulong BytesTotalVoice { get; set; } - - - public uint BytesSecP95 { get; set; } - - - public uint BytesSecP99 { get; set; } - - - public uint EnginemsgsTotal { get; set; } - - - public uint EnginemsgsSecP95 { get; set; } - - - public uint EnginemsgsSecP99 { get; set; } - - - public uint NetframesTotal { get; set; } - - - public uint NetframesDropped { get; set; } - - - public uint NetframesOutoforder { get; set; } - - - public uint NetframesSizeExceedsMtu { get; set; } - - - public uint NetframesSizeP95 { get; set; } - - - public uint NetframesSizeP99 { get; set; } - - - public uint TicksTotal { get; set; } - - - public uint TicksGood { get; set; } - - - public uint TicksGoodAlmostLate { get; set; } - - - public uint TicksFixedDropped { get; set; } - - - public uint TicksFixedLate { get; set; } - - - public uint TicksBadDropped { get; set; } - - - public uint TicksBadLate { get; set; } - - - public uint TicksBadOther { get; set; } - - - public uint TickMissrateSamplesTotal { get; set; } - - - public uint TickMissrateSamplesPerfect { get; set; } - - - public uint TickMissrateSamplesPerfectnet { get; set; } - - - public uint TickMissratenetP75X10 { get; set; } - - - public uint TickMissratenetP95X10 { get; set; } - - - public uint TickMissratenetP99X10 { get; set; } - - - public int RecvmarginP1 { get; set; } - - - public int RecvmarginP5 { get; set; } - - - public int RecvmarginP25 { get; set; } - - - public int RecvmarginP50 { get; set; } - - - public int RecvmarginP75 { get; set; } - - - public int RecvmarginP95 { get; set; } - - - public uint NetframeJitterP50 { get; set; } - - - public uint NetframeJitterP99 { get; set; } - - - public uint IntervalPeakjitterP50 { get; set; } - - - public uint IntervalPeakjitterP95 { get; set; } - - - public uint PacketMisdeliveryRateP50X4 { get; set; } - - - public uint PacketMisdeliveryRateP95X4 { get; set; } - - - public uint NetPingP5 { get; set; } - - - public uint NetPingP50 { get; set; } - - - public uint NetPingP95 { get; set; } - -} + static CMsgSource2NetworkFlowQuality ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSource2NetworkFlowQualityImpl(handle, isManuallyAllocated); + + public uint Duration { get; set; } + public ulong BytesTotal { get; set; } + public ulong BytesTotalReliable { get; set; } + public ulong BytesTotalVoice { get; set; } + public uint BytesSecP95 { get; set; } + public uint BytesSecP99 { get; set; } + public uint EnginemsgsTotal { get; set; } + public uint EnginemsgsSecP95 { get; set; } + public uint EnginemsgsSecP99 { get; set; } + public uint NetframesTotal { get; set; } + public uint NetframesDropped { get; set; } + public uint NetframesOutoforder { get; set; } + public uint NetframesSizeExceedsMtu { get; set; } + public uint NetframesSizeP95 { get; set; } + public uint NetframesSizeP99 { get; set; } + public uint TicksTotal { get; set; } + public uint TicksGood { get; set; } + public uint TicksGoodAlmostLate { get; set; } + public uint TicksFixedDropped { get; set; } + public uint TicksFixedLate { get; set; } + public uint TicksBadDropped { get; set; } + public uint TicksBadLate { get; set; } + public uint TicksBadOther { get; set; } + public uint TickMissrateSamplesTotal { get; set; } + public uint TickMissrateSamplesPerfect { get; set; } + public uint TickMissrateSamplesPerfectnet { get; set; } + public uint TickMissratenetP75X10 { get; set; } + public uint TickMissratenetP95X10 { get; set; } + public uint TickMissratenetP99X10 { get; set; } + public int RecvmarginP1 { get; set; } + public int RecvmarginP5 { get; set; } + public int RecvmarginP25 { get; set; } + public int RecvmarginP50 { get; set; } + public int RecvmarginP75 { get; set; } + public int RecvmarginP95 { get; set; } + public uint NetframeJitterP50 { get; set; } + public uint NetframeJitterP99 { get; set; } + public uint IntervalPeakjitterP50 { get; set; } + public uint IntervalPeakjitterP95 { get; set; } + public uint PacketMisdeliveryRateP50X4 { get; set; } + public uint PacketMisdeliveryRateP95X4 { get; set; } + public uint NetPingP5 { get; set; } + public uint NetPingP50 { get; set; } + public uint NetPingP95 { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource2PerfIntervalSample.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource2PerfIntervalSample.cs index bf9532ddd..f5f2bfafb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource2PerfIntervalSample.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource2PerfIntervalSample.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,24 +6,12 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgSource2PerfIntervalSample : ITypedProtobuf { - static CMsgSource2PerfIntervalSample ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSource2PerfIntervalSampleImpl(handle, isManuallyAllocated); - - - public float FrameTimeMaxMs { get; set; } - - - public float FrameTimeAvgMs { get; set; } - - - public float FrameTimeMinMs { get; set; } - - - public int FrameCount { get; set; } - - - public float FrameTimeTotalMs { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Tags { get; } - -} + static CMsgSource2PerfIntervalSample ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSource2PerfIntervalSampleImpl(handle, isManuallyAllocated); + + public float FrameTimeMaxMs { get; set; } + public float FrameTimeAvgMs { get; set; } + public float FrameTimeMinMs { get; set; } + public int FrameCount { get; set; } + public float FrameTimeTotalMs { get; set; } + public IProtobufRepeatedFieldSubMessageType Tags { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource2PerfIntervalSample_Tag.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource2PerfIntervalSample_Tag.cs index 507602fbb..0f8ad2b1d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource2PerfIntervalSample_Tag.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource2PerfIntervalSample_Tag.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgSource2PerfIntervalSample_Tag : ITypedProtobuf { - static CMsgSource2PerfIntervalSample_Tag ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSource2PerfIntervalSample_TagImpl(handle, isManuallyAllocated); - - - public string Tag { get; set; } - - - public uint MaxValue { get; set; } + static CMsgSource2PerfIntervalSample_Tag ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSource2PerfIntervalSample_TagImpl(handle, isManuallyAllocated); -} + public string Tag { get; set; } + public uint MaxValue { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource2SystemSpecs.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource2SystemSpecs.cs index f92f6b18c..c2dfb9a65 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource2SystemSpecs.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource2SystemSpecs.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,48 +6,20 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgSource2SystemSpecs : ITypedProtobuf { - static CMsgSource2SystemSpecs ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSource2SystemSpecsImpl(handle, isManuallyAllocated); - - - public string CpuId { get; set; } - - - public string CpuBrand { get; set; } - - - public uint CpuModel { get; set; } - - - public uint CpuNumPhysical { get; set; } - - - public uint RamPhysicalTotalMb { get; set; } - - - public string GpuRendersystemDllName { get; set; } - - - public uint GpuVendorId { get; set; } - - - public string GpuDriverName { get; set; } - - - public uint GpuDriverVersionHigh { get; set; } - - - public uint GpuDriverVersionLow { get; set; } - - - public uint GpuDxSupportLevel { get; set; } - - - public uint GpuTextureMemorySizeMb { get; set; } - - - public uint BackbufferWidth { get; set; } - - - public uint BackbufferHeight { get; set; } - -} + static CMsgSource2SystemSpecs ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSource2SystemSpecsImpl(handle, isManuallyAllocated); + + public string CpuId { get; set; } + public string CpuBrand { get; set; } + public uint CpuModel { get; set; } + public uint CpuNumPhysical { get; set; } + public uint RamPhysicalTotalMb { get; set; } + public string GpuRendersystemDllName { get; set; } + public uint GpuVendorId { get; set; } + public string GpuDriverName { get; set; } + public uint GpuDriverVersionHigh { get; set; } + public uint GpuDriverVersionLow { get; set; } + public uint GpuDxSupportLevel { get; set; } + public uint GpuTextureMemorySizeMb { get; set; } + public uint BackbufferWidth { get; set; } + public uint BackbufferHeight { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource2VProfLiteReport.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource2VProfLiteReport.cs index a6378d766..0490addfe 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource2VProfLiteReport.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource2VProfLiteReport.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgSource2VProfLiteReport : ITypedProtobuf { - static CMsgSource2VProfLiteReport ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSource2VProfLiteReportImpl(handle, isManuallyAllocated); - - - public CMsgSource2VProfLiteReportItem Total { get; } - - - public IProtobufRepeatedFieldSubMessageType Items { get; } - - - public uint DiscardedFrames { get; set; } + static CMsgSource2VProfLiteReport ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSource2VProfLiteReportImpl(handle, isManuallyAllocated); -} + public CMsgSource2VProfLiteReportItem Total { get; } + public IProtobufRepeatedFieldSubMessageType Items { get; } + public uint DiscardedFrames { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource2VProfLiteReportItem.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource2VProfLiteReportItem.cs index 6563b976f..c14ebe719 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource2VProfLiteReportItem.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSource2VProfLiteReportItem.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,60 +6,24 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgSource2VProfLiteReportItem : ITypedProtobuf { - static CMsgSource2VProfLiteReportItem ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSource2VProfLiteReportItemImpl(handle, isManuallyAllocated); - - - public string Name { get; set; } - - - public uint ActiveSamples { get; set; } - - - public uint ActiveSamples1secmax { get; set; } - - - public uint UsecMax { get; set; } - - - public uint UsecAvgActive { get; set; } - - - public uint UsecP50Active { get; set; } - - - public uint UsecP99Active { get; set; } - - - public uint UsecAvgAll { get; set; } - - - public uint UsecP50All { get; set; } - - - public uint UsecP99All { get; set; } - - - public uint Usec1secmaxAvgActive { get; set; } - - - public uint Usec1secmaxP50Active { get; set; } - - - public uint Usec1secmaxP95Active { get; set; } - - - public uint Usec1secmaxP99Active { get; set; } - - - public uint Usec1secmaxAvgAll { get; set; } - - - public uint Usec1secmaxP50All { get; set; } - - - public uint Usec1secmaxP95All { get; set; } - - - public uint Usec1secmaxP99All { get; set; } - -} + static CMsgSource2VProfLiteReportItem ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSource2VProfLiteReportItemImpl(handle, isManuallyAllocated); + + public string Name { get; set; } + public uint ActiveSamples { get; set; } + public uint ActiveSamples1secmax { get; set; } + public uint UsecMax { get; set; } + public uint UsecAvgActive { get; set; } + public uint UsecP50Active { get; set; } + public uint UsecP99Active { get; set; } + public uint UsecAvgAll { get; set; } + public uint UsecP50All { get; set; } + public uint UsecP99All { get; set; } + public uint Usec1secmaxAvgActive { get; set; } + public uint Usec1secmaxP50Active { get; set; } + public uint Usec1secmaxP95Active { get; set; } + public uint Usec1secmaxP99Active { get; set; } + public uint Usec1secmaxAvgAll { get; set; } + public uint Usec1secmaxP50All { get; set; } + public uint Usec1secmaxP95All { get; set; } + public uint Usec1secmaxP99All { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgStoreGetUserData.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgStoreGetUserData.cs index da9c465ed..6f8490430 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgStoreGetUserData.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgStoreGetUserData.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgStoreGetUserData : ITypedProtobuf { - static CMsgStoreGetUserData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgStoreGetUserDataImpl(handle, isManuallyAllocated); - - - public uint PriceSheetVersion { get; set; } - - - public int Currency { get; set; } + static CMsgStoreGetUserData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgStoreGetUserDataImpl(handle, isManuallyAllocated); -} + public uint PriceSheetVersion { get; set; } + public int Currency { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgStoreGetUserDataResponse.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgStoreGetUserDataResponse.cs index 25d66c8d9..3309d23c7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgStoreGetUserDataResponse.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgStoreGetUserDataResponse.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,21 +6,11 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgStoreGetUserDataResponse : ITypedProtobuf { - static CMsgStoreGetUserDataResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgStoreGetUserDataResponseImpl(handle, isManuallyAllocated); - - - public int Result { get; set; } - - - public int CurrencyDeprecated { get; set; } - - - public string CountryDeprecated { get; set; } - - - public uint PriceSheetVersion { get; set; } - - - public byte[] PriceSheet { get; set; } - -} + static CMsgStoreGetUserDataResponse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgStoreGetUserDataResponseImpl(handle, isManuallyAllocated); + + public int Result { get; set; } + public int CurrencyDeprecated { get; set; } + public string CountryDeprecated { get; set; } + public uint PriceSheetVersion { get; set; } + public byte[] PriceSheet { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSystemBroadcast.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSystemBroadcast.cs index ffa080be0..9cf8a00d9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSystemBroadcast.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgSystemBroadcast.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgSystemBroadcast : ITypedProtobuf { - static CMsgSystemBroadcast ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSystemBroadcastImpl(handle, isManuallyAllocated); - - - public string Message { get; set; } + static CMsgSystemBroadcast ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgSystemBroadcastImpl(handle, isManuallyAllocated); -} + public string Message { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEArmorRicochet.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEArmorRicochet.cs index 3c1b340f2..bf0703283 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEArmorRicochet.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEArmorRicochet.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgTEArmorRicochet : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 401; - - static string INetMessage.MessageName => "CMsgTEArmorRicochet"; - - static CMsgTEArmorRicochet ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEArmorRicochetImpl(handle, isManuallyAllocated); - - - public Vector Pos { get; set; } + static int INetMessage.MessageId => 401; + static string INetMessage.MessageName => "CMsgTEArmorRicochet"; - public Vector Dir { get; set; } + static CMsgTEArmorRicochet ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEArmorRicochetImpl(handle, isManuallyAllocated); -} + public Vector Pos { get; set; } + public Vector Dir { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBaseBeam.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBaseBeam.cs index 5188b66f1..30e48144e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBaseBeam.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBaseBeam.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,42 +6,18 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgTEBaseBeam : ITypedProtobuf { - static CMsgTEBaseBeam ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEBaseBeamImpl(handle, isManuallyAllocated); - - - public ulong Modelindex { get; set; } - - - public ulong Haloindex { get; set; } - - - public uint Startframe { get; set; } - - - public uint Framerate { get; set; } - - - public float Life { get; set; } - - - public float Width { get; set; } - - - public float Endwidth { get; set; } - - - public uint Fadelength { get; set; } - - - public float Amplitude { get; set; } - - - public uint Color { get; set; } - - - public uint Speed { get; set; } - - - public uint Flags { get; set; } - -} + static CMsgTEBaseBeam ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEBaseBeamImpl(handle, isManuallyAllocated); + + public ulong Modelindex { get; set; } + public ulong Haloindex { get; set; } + public uint Startframe { get; set; } + public uint Framerate { get; set; } + public float Life { get; set; } + public float Width { get; set; } + public float Endwidth { get; set; } + public uint Fadelength { get; set; } + public float Amplitude { get; set; } + public uint Color { get; set; } + public uint Speed { get; set; } + public uint Flags { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBeamEntPoint.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBeamEntPoint.cs index d56922425..32b9e4adf 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBeamEntPoint.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBeamEntPoint.cs @@ -1,32 +1,20 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgTEBeamEntPoint : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 402; - - static string INetMessage.MessageName => "CMsgTEBeamEntPoint"; - - static CMsgTEBeamEntPoint ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEBeamEntPointImpl(handle, isManuallyAllocated); - - - public CMsgTEBaseBeam Base { get; } - - - public uint Startentity { get; set; } - - - public uint Endentity { get; set; } - - - public Vector Start { get; set; } + static int INetMessage.MessageId => 402; + static string INetMessage.MessageName => "CMsgTEBeamEntPoint"; - public Vector End { get; set; } + static CMsgTEBeamEntPoint ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEBeamEntPointImpl(handle, isManuallyAllocated); -} + public CMsgTEBaseBeam Base { get; } + public uint Startentity { get; set; } + public uint Endentity { get; set; } + public Vector Start { get; set; } + public Vector End { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBeamEnts.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBeamEnts.cs index 106599b98..4d908512c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBeamEnts.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBeamEnts.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgTEBeamEnts : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 403; - - static string INetMessage.MessageName => "CMsgTEBeamEnts"; - - static CMsgTEBeamEnts ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEBeamEntsImpl(handle, isManuallyAllocated); - - - public CMsgTEBaseBeam Base { get; } - - - public uint Startentity { get; set; } + static int INetMessage.MessageId => 403; + static string INetMessage.MessageName => "CMsgTEBeamEnts"; - public uint Endentity { get; set; } + static CMsgTEBeamEnts ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEBeamEntsImpl(handle, isManuallyAllocated); -} + public CMsgTEBaseBeam Base { get; } + public uint Startentity { get; set; } + public uint Endentity { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBeamPoints.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBeamPoints.cs index e365cd628..bc86677a4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBeamPoints.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBeamPoints.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgTEBeamPoints : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 404; - - static string INetMessage.MessageName => "CMsgTEBeamPoints"; - - static CMsgTEBeamPoints ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEBeamPointsImpl(handle, isManuallyAllocated); - - - public CMsgTEBaseBeam Base { get; } - - - public Vector Start { get; set; } + static int INetMessage.MessageId => 404; + static string INetMessage.MessageName => "CMsgTEBeamPoints"; - public Vector End { get; set; } + static CMsgTEBeamPoints ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEBeamPointsImpl(handle, isManuallyAllocated); -} + public CMsgTEBaseBeam Base { get; } + public Vector Start { get; set; } + public Vector End { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBeamRing.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBeamRing.cs index 57b0e93f6..e820d65dc 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBeamRing.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBeamRing.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgTEBeamRing : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 405; - - static string INetMessage.MessageName => "CMsgTEBeamRing"; - - static CMsgTEBeamRing ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEBeamRingImpl(handle, isManuallyAllocated); - - - public CMsgTEBaseBeam Base { get; } - - - public uint Startentity { get; set; } + static int INetMessage.MessageId => 405; + static string INetMessage.MessageName => "CMsgTEBeamRing"; - public uint Endentity { get; set; } + static CMsgTEBeamRing ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEBeamRingImpl(handle, isManuallyAllocated); -} + public CMsgTEBaseBeam Base { get; } + public uint Startentity { get; set; } + public uint Endentity { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBloodStream.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBloodStream.cs index ae1e6d149..b01acf1be 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBloodStream.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBloodStream.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgTEBloodStream : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 418; - - static string INetMessage.MessageName => "CMsgTEBloodStream"; - - static CMsgTEBloodStream ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEBloodStreamImpl(handle, isManuallyAllocated); - - - public Vector Origin { get; set; } - - - public Vector Direction { get; set; } - - - public uint Color { get; set; } + static int INetMessage.MessageId => 418; + static string INetMessage.MessageName => "CMsgTEBloodStream"; - public uint Amount { get; set; } + static CMsgTEBloodStream ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEBloodStreamImpl(handle, isManuallyAllocated); -} + public Vector Origin { get; set; } + public Vector Direction { get; set; } + public uint Color { get; set; } + public uint Amount { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBubbleTrail.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBubbleTrail.cs index 86eadc772..9cfbd9ece 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBubbleTrail.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBubbleTrail.cs @@ -1,32 +1,20 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgTEBubbleTrail : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 409; - - static string INetMessage.MessageName => "CMsgTEBubbleTrail"; - - static CMsgTEBubbleTrail ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEBubbleTrailImpl(handle, isManuallyAllocated); - - - public Vector Mins { get; set; } - - - public Vector Maxs { get; set; } - - - public float Waterz { get; set; } - - - public uint Count { get; set; } + static int INetMessage.MessageId => 409; + static string INetMessage.MessageName => "CMsgTEBubbleTrail"; - public float Speed { get; set; } + static CMsgTEBubbleTrail ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEBubbleTrailImpl(handle, isManuallyAllocated); -} + public Vector Mins { get; set; } + public Vector Maxs { get; set; } + public float Waterz { get; set; } + public uint Count { get; set; } + public float Speed { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBubbles.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBubbles.cs index 4fcb52adb..2ce03416e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBubbles.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEBubbles.cs @@ -1,32 +1,20 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgTEBubbles : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 408; - - static string INetMessage.MessageName => "CMsgTEBubbles"; - - static CMsgTEBubbles ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEBubblesImpl(handle, isManuallyAllocated); - - - public Vector Mins { get; set; } - - - public Vector Maxs { get; set; } - - - public float Height { get; set; } - - - public uint Count { get; set; } + static int INetMessage.MessageId => 408; + static string INetMessage.MessageName => "CMsgTEBubbles"; - public float Speed { get; set; } + static CMsgTEBubbles ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEBubblesImpl(handle, isManuallyAllocated); -} + public Vector Mins { get; set; } + public Vector Maxs { get; set; } + public float Height { get; set; } + public uint Count { get; set; } + public float Speed { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEDecal.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEDecal.cs index 568ac6699..edf5e3eeb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEDecal.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEDecal.cs @@ -1,32 +1,20 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgTEDecal : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 410; - - static string INetMessage.MessageName => "CMsgTEDecal"; - - static CMsgTEDecal ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEDecalImpl(handle, isManuallyAllocated); - - - public Vector Origin { get; set; } - - - public Vector Start { get; set; } - - - public int Entity { get; set; } - - - public uint Hitbox { get; set; } + static int INetMessage.MessageId => 410; + static string INetMessage.MessageName => "CMsgTEDecal"; - public uint Index { get; set; } + static CMsgTEDecal ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEDecalImpl(handle, isManuallyAllocated); -} + public Vector Origin { get; set; } + public Vector Start { get; set; } + public int Entity { get; set; } + public uint Hitbox { get; set; } + public uint Index { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEDust.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEDust.cs index c27ebe0e3..97ac6ab28 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEDust.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEDust.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgTEDust : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 420; - - static string INetMessage.MessageName => "CMsgTEDust"; - - static CMsgTEDust ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEDustImpl(handle, isManuallyAllocated); - - - public Vector Origin { get; set; } - - - public float Size { get; set; } - - - public float Speed { get; set; } + static int INetMessage.MessageId => 420; + static string INetMessage.MessageName => "CMsgTEDust"; - public Vector Direction { get; set; } + static CMsgTEDust ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEDustImpl(handle, isManuallyAllocated); -} + public Vector Origin { get; set; } + public float Size { get; set; } + public float Speed { get; set; } + public Vector Direction { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEEffectDispatch.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEEffectDispatch.cs index 5fa3d142d..121b48998 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEEffectDispatch.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEEffectDispatch.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgTEEffectDispatch : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 400; - - static string INetMessage.MessageName => "CMsgTEEffectDispatch"; - - static CMsgTEEffectDispatch ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEEffectDispatchImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 400; + static string INetMessage.MessageName => "CMsgTEEffectDispatch"; - public CMsgEffectData Effectdata { get; } + static CMsgTEEffectDispatch ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEEffectDispatchImpl(handle, isManuallyAllocated); -} + public CMsgEffectData Effectdata { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEEnergySplash.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEEnergySplash.cs index eb298658c..abd0836fe 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEEnergySplash.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEEnergySplash.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgTEEnergySplash : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 412; - - static string INetMessage.MessageName => "CMsgTEEnergySplash"; - - static CMsgTEEnergySplash ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEEnergySplashImpl(handle, isManuallyAllocated); - - - public Vector Pos { get; set; } - - - public Vector Dir { get; set; } + static int INetMessage.MessageId => 412; + static string INetMessage.MessageName => "CMsgTEEnergySplash"; - public bool Explosive { get; set; } + static CMsgTEEnergySplash ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEEnergySplashImpl(handle, isManuallyAllocated); -} + public Vector Pos { get; set; } + public Vector Dir { get; set; } + public bool Explosive { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEExplosion.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEExplosion.cs index 76198a80b..87ccc628b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEExplosion.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEExplosion.cs @@ -1,50 +1,26 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgTEExplosion : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 419; - - static string INetMessage.MessageName => "CMsgTEExplosion"; - - static CMsgTEExplosion ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEExplosionImpl(handle, isManuallyAllocated); - - - public Vector Origin { get; set; } - - - public uint Flags { get; set; } - - - public Vector Normal { get; set; } - - - public uint Radius { get; set; } - - - public uint Magnitude { get; set; } - - - public bool AffectRagdolls { get; set; } - - - public string SoundName { get; set; } - - - public uint ExplosionType { get; set; } - - - public bool CreateDebris { get; set; } - - - public Vector DebrisOrigin { get; set; } - - - public uint DebrisSurfaceprop { get; set; } - -} + static int INetMessage.MessageId => 419; + + static string INetMessage.MessageName => "CMsgTEExplosion"; + + static CMsgTEExplosion ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEExplosionImpl(handle, isManuallyAllocated); + + public Vector Origin { get; set; } + public uint Flags { get; set; } + public Vector Normal { get; set; } + public uint Radius { get; set; } + public uint Magnitude { get; set; } + public bool AffectRagdolls { get; set; } + public string SoundName { get; set; } + public uint ExplosionType { get; set; } + public bool CreateDebris { get; set; } + public Vector DebrisOrigin { get; set; } + public uint DebrisSurfaceprop { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEFireBullets.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEFireBullets.cs index f839e9848..f27289ad5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEFireBullets.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEFireBullets.cs @@ -1,74 +1,34 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgTEFireBullets : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 452; - - static string INetMessage.MessageName => "CMsgTEFireBullets"; - - static CMsgTEFireBullets ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEFireBulletsImpl(handle, isManuallyAllocated); - - - public Vector Origin { get; set; } - - - public QAngle Angles { get; set; } - - - public uint WeaponId { get; set; } - - - public uint Mode { get; set; } - - - public uint Seed { get; set; } - - - public uint Player { get; set; } - - - public float Inaccuracy { get; set; } - - - public float RecoilIndex { get; set; } - - - public float Spread { get; set; } - - - public int SoundType { get; set; } - - - public uint ItemDefIndex { get; set; } - - - public uint SoundDspEffect { get; set; } - - - public Vector EntOrigin { get; set; } - - - public uint NumBulletsRemaining { get; set; } - - - public uint AttackType { get; set; } - - - public bool PlayerInair { get; set; } - - - public bool PlayerScoped { get; set; } - - - public int Tick { get; set; } - - - public CMsgTEFireBullets_Extra Extra { get; } - -} + static int INetMessage.MessageId => 452; + + static string INetMessage.MessageName => "CMsgTEFireBullets"; + + static CMsgTEFireBullets ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEFireBulletsImpl(handle, isManuallyAllocated); + + public Vector Origin { get; set; } + public QAngle Angles { get; set; } + public uint WeaponId { get; set; } + public uint Mode { get; set; } + public uint Seed { get; set; } + public uint Player { get; set; } + public float Inaccuracy { get; set; } + public float RecoilIndex { get; set; } + public float Spread { get; set; } + public int SoundType { get; set; } + public uint ItemDefIndex { get; set; } + public uint SoundDspEffect { get; set; } + public Vector EntOrigin { get; set; } + public uint NumBulletsRemaining { get; set; } + public uint AttackType { get; set; } + public bool PlayerInair { get; set; } + public bool PlayerScoped { get; set; } + public int Tick { get; set; } + public CMsgTEFireBullets_Extra Extra { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEFireBullets_Extra.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEFireBullets_Extra.cs index a841454db..46be43056 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEFireBullets_Extra.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEFireBullets_Extra.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,30 +6,14 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgTEFireBullets_Extra : ITypedProtobuf { - static CMsgTEFireBullets_Extra ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEFireBullets_ExtraImpl(handle, isManuallyAllocated); - - - public QAngle AimPunch { get; set; } - - - public int AttackTickCount { get; set; } - - - public float AttackTickFrac { get; set; } - - - public int RenderTickCount { get; set; } - - - public float RenderTickFrac { get; set; } - - - public float InaccuracyMove { get; set; } - - - public float InaccuracyAir { get; set; } - - - public int Type { get; set; } - -} + static CMsgTEFireBullets_Extra ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEFireBullets_ExtraImpl(handle, isManuallyAllocated); + + public QAngle AimPunch { get; set; } + public int AttackTickCount { get; set; } + public float AttackTickFrac { get; set; } + public int RenderTickCount { get; set; } + public float RenderTickFrac { get; set; } + public float InaccuracyMove { get; set; } + public float InaccuracyAir { get; set; } + public int Type { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEFizz.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEFizz.cs index 729acdc48..9ad0b3f84 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEFizz.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEFizz.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgTEFizz : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 413; - - static string INetMessage.MessageName => "CMsgTEFizz"; - - static CMsgTEFizz ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEFizzImpl(handle, isManuallyAllocated); - - - public int Entity { get; set; } - - - public uint Density { get; set; } + static int INetMessage.MessageId => 413; + static string INetMessage.MessageName => "CMsgTEFizz"; - public int Current { get; set; } + static CMsgTEFizz ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEFizzImpl(handle, isManuallyAllocated); -} + public int Entity { get; set; } + public uint Density { get; set; } + public int Current { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEGlowSprite.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEGlowSprite.cs index d9436e943..299165b7f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEGlowSprite.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEGlowSprite.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgTEGlowSprite : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 415; - - static string INetMessage.MessageName => "CMsgTEGlowSprite"; - - static CMsgTEGlowSprite ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEGlowSpriteImpl(handle, isManuallyAllocated); - - - public Vector Origin { get; set; } - - - public float Scale { get; set; } - - - public float Life { get; set; } + static int INetMessage.MessageId => 415; + static string INetMessage.MessageName => "CMsgTEGlowSprite"; - public uint Brightness { get; set; } + static CMsgTEGlowSprite ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEGlowSpriteImpl(handle, isManuallyAllocated); -} + public Vector Origin { get; set; } + public float Scale { get; set; } + public float Life { get; set; } + public uint Brightness { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEImpact.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEImpact.cs index d29095ae4..33831a60e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEImpact.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEImpact.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgTEImpact : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 416; - - static string INetMessage.MessageName => "CMsgTEImpact"; - - static CMsgTEImpact ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEImpactImpl(handle, isManuallyAllocated); - - - public Vector Origin { get; set; } - - - public Vector Normal { get; set; } + static int INetMessage.MessageId => 416; + static string INetMessage.MessageName => "CMsgTEImpact"; - public uint Type { get; set; } + static CMsgTEImpact ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEImpactImpl(handle, isManuallyAllocated); -} + public Vector Origin { get; set; } + public Vector Normal { get; set; } + public uint Type { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTELargeFunnel.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTELargeFunnel.cs index 4111ed6f2..e02f2c967 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTELargeFunnel.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTELargeFunnel.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgTELargeFunnel : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 421; - - static string INetMessage.MessageName => "CMsgTELargeFunnel"; - - static CMsgTELargeFunnel ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTELargeFunnelImpl(handle, isManuallyAllocated); - - - public Vector Origin { get; set; } + static int INetMessage.MessageId => 421; + static string INetMessage.MessageName => "CMsgTELargeFunnel"; - public uint Reversed { get; set; } + static CMsgTELargeFunnel ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTELargeFunnelImpl(handle, isManuallyAllocated); -} + public Vector Origin { get; set; } + public uint Reversed { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEMuzzleFlash.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEMuzzleFlash.cs index ece92fc8f..1cd6a0dfb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEMuzzleFlash.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEMuzzleFlash.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgTEMuzzleFlash : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 417; - - static string INetMessage.MessageName => "CMsgTEMuzzleFlash"; - - static CMsgTEMuzzleFlash ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEMuzzleFlashImpl(handle, isManuallyAllocated); - - - public Vector Origin { get; set; } - - - public QAngle Angles { get; set; } - - - public float Scale { get; set; } + static int INetMessage.MessageId => 417; + static string INetMessage.MessageName => "CMsgTEMuzzleFlash"; - public uint Type { get; set; } + static CMsgTEMuzzleFlash ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEMuzzleFlashImpl(handle, isManuallyAllocated); -} + public Vector Origin { get; set; } + public QAngle Angles { get; set; } + public float Scale { get; set; } + public uint Type { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEPhysicsProp.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEPhysicsProp.cs index d98abd93f..8230541bb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEPhysicsProp.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEPhysicsProp.cs @@ -1,56 +1,28 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgTEPhysicsProp : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 423; - - static string INetMessage.MessageName => "CMsgTEPhysicsProp"; - - static CMsgTEPhysicsProp ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEPhysicsPropImpl(handle, isManuallyAllocated); - - - public Vector Origin { get; set; } - - - public Vector Velocity { get; set; } - - - public QAngle Angles { get; set; } - - - public uint Skin { get; set; } - - - public uint Flags { get; set; } - - - public uint Effects { get; set; } - - - public uint Color { get; set; } - - - public ulong Modelindex { get; set; } - - - public uint UnusedBreakmodelsnottomake { get; set; } - - - public float Scale { get; set; } - - - public Vector Dmgpos { get; set; } - - - public Vector Dmgdir { get; set; } - - - public int Dmgtype { get; set; } - -} + static int INetMessage.MessageId => 423; + + static string INetMessage.MessageName => "CMsgTEPhysicsProp"; + + static CMsgTEPhysicsProp ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEPhysicsPropImpl(handle, isManuallyAllocated); + + public Vector Origin { get; set; } + public Vector Velocity { get; set; } + public QAngle Angles { get; set; } + public uint Skin { get; set; } + public uint Flags { get; set; } + public uint Effects { get; set; } + public uint Color { get; set; } + public ulong Modelindex { get; set; } + public uint UnusedBreakmodelsnottomake { get; set; } + public float Scale { get; set; } + public Vector Dmgpos { get; set; } + public Vector Dmgdir { get; set; } + public int Dmgtype { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEPlayerAnimEvent.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEPlayerAnimEvent.cs index f0d8fc7ac..ecc0a0e9c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEPlayerAnimEvent.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEPlayerAnimEvent.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgTEPlayerAnimEvent : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 450; - - static string INetMessage.MessageName => "CMsgTEPlayerAnimEvent"; - - static CMsgTEPlayerAnimEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEPlayerAnimEventImpl(handle, isManuallyAllocated); - - - public uint Player { get; set; } - - - public uint Event { get; set; } + static int INetMessage.MessageId => 450; + static string INetMessage.MessageName => "CMsgTEPlayerAnimEvent"; - public int Data { get; set; } + static CMsgTEPlayerAnimEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEPlayerAnimEventImpl(handle, isManuallyAllocated); -} + public uint Player { get; set; } + public uint Event { get; set; } + public int Data { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTERadioIcon.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTERadioIcon.cs index 13ed37512..bcfd34074 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTERadioIcon.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTERadioIcon.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgTERadioIcon : ITypedProtobuf { - static CMsgTERadioIcon ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTERadioIconImpl(handle, isManuallyAllocated); - - - public uint Player { get; set; } + static CMsgTERadioIcon ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTERadioIconImpl(handle, isManuallyAllocated); -} + public uint Player { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEShatterSurface.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEShatterSurface.cs index 305165985..958aa8149 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEShatterSurface.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEShatterSurface.cs @@ -1,47 +1,25 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgTEShatterSurface : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 414; - - static string INetMessage.MessageName => "CMsgTEShatterSurface"; - - static CMsgTEShatterSurface ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEShatterSurfaceImpl(handle, isManuallyAllocated); - - - public Vector Origin { get; set; } - - - public QAngle Angles { get; set; } - - - public Vector Force { get; set; } - - - public Vector Forcepos { get; set; } - - - public float Width { get; set; } - - - public float Height { get; set; } - - - public float Shardsize { get; set; } - - - public uint Surfacetype { get; set; } - - - public uint Frontcolor { get; set; } - - - public uint Backcolor { get; set; } - -} + static int INetMessage.MessageId => 414; + + static string INetMessage.MessageName => "CMsgTEShatterSurface"; + + static CMsgTEShatterSurface ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEShatterSurfaceImpl(handle, isManuallyAllocated); + + public Vector Origin { get; set; } + public QAngle Angles { get; set; } + public Vector Force { get; set; } + public Vector Forcepos { get; set; } + public float Width { get; set; } + public float Height { get; set; } + public float Shardsize { get; set; } + public uint Surfacetype { get; set; } + public uint Frontcolor { get; set; } + public uint Backcolor { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTESmoke.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTESmoke.cs index 8ba443f4c..888034cb0 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTESmoke.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTESmoke.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgTESmoke : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 426; - - static string INetMessage.MessageName => "CMsgTESmoke"; - - static CMsgTESmoke ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTESmokeImpl(handle, isManuallyAllocated); - - - public Vector Origin { get; set; } + static int INetMessage.MessageId => 426; + static string INetMessage.MessageName => "CMsgTESmoke"; - public float Scale { get; set; } + static CMsgTESmoke ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTESmokeImpl(handle, isManuallyAllocated); -} + public Vector Origin { get; set; } + public float Scale { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTESparks.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTESparks.cs index 58f389497..281d04f6d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTESparks.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTESparks.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgTESparks : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 422; - - static string INetMessage.MessageName => "CMsgTESparks"; - - static CMsgTESparks ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTESparksImpl(handle, isManuallyAllocated); - - - public Vector Origin { get; set; } - - - public uint Magnitude { get; set; } - - - public uint Length { get; set; } + static int INetMessage.MessageId => 422; + static string INetMessage.MessageName => "CMsgTESparks"; - public Vector Direction { get; set; } + static CMsgTESparks ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTESparksImpl(handle, isManuallyAllocated); -} + public Vector Origin { get; set; } + public uint Magnitude { get; set; } + public uint Length { get; set; } + public Vector Direction { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEWorldDecal.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEWorldDecal.cs index 646be3b6b..f78bf0730 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEWorldDecal.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTEWorldDecal.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgTEWorldDecal : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 411; - - static string INetMessage.MessageName => "CMsgTEWorldDecal"; - - static CMsgTEWorldDecal ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEWorldDecalImpl(handle, isManuallyAllocated); - - - public Vector Origin { get; set; } - - - public Vector Normal { get; set; } + static int INetMessage.MessageId => 411; + static string INetMessage.MessageName => "CMsgTEWorldDecal"; - public uint Index { get; set; } + static CMsgTEWorldDecal ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTEWorldDecalImpl(handle, isManuallyAllocated); -} + public Vector Origin { get; set; } + public Vector Normal { get; set; } + public uint Index { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTransform.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTransform.cs index 57138f29f..9ef240053 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTransform.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgTransform.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgTransform : ITypedProtobuf { - static CMsgTransform ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTransformImpl(handle, isManuallyAllocated); - - - public Vector Position { get; set; } - - - public float Scale { get; set; } - - - public CMsgQuaternion Orientation { get; } + static CMsgTransform ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgTransformImpl(handle, isManuallyAllocated); -} + public Vector Position { get; set; } + public float Scale { get; set; } + public CMsgQuaternion Orientation { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgUpdateItemSchema.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgUpdateItemSchema.cs index a77b75d3a..1a666d543 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgUpdateItemSchema.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgUpdateItemSchema.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgUpdateItemSchema : ITypedProtobuf { - static CMsgUpdateItemSchema ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgUpdateItemSchemaImpl(handle, isManuallyAllocated); - - - public byte[] ItemsGame { get; set; } - - - public uint ItemSchemaVersion { get; set; } - - - public string ItemsGameUrl { get; set; } + static CMsgUpdateItemSchema ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgUpdateItemSchemaImpl(handle, isManuallyAllocated); -} + public byte[] ItemsGame { get; set; } + public uint ItemSchemaVersion { get; set; } + public string ItemsGameUrl { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgUseItem.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgUseItem.cs index fd32e3ce1..523712b36 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgUseItem.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgUseItem.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,21 +6,11 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgUseItem : ITypedProtobuf { - static CMsgUseItem ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgUseItemImpl(handle, isManuallyAllocated); - - - public ulong ItemId { get; set; } - - - public ulong TargetSteamId { get; set; } - - - public IProtobufRepeatedFieldValueType GiftPotentialTargets { get; } - - - public uint DuelClassLock { get; set; } - - - public ulong InitiatorSteamId { get; set; } - -} + static CMsgUseItem ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgUseItemImpl(handle, isManuallyAllocated); + + public ulong ItemId { get; set; } + public ulong TargetSteamId { get; set; } + public IProtobufRepeatedFieldValueType GiftPotentialTargets { get; } + public uint DuelClassLock { get; set; } + public ulong InitiatorSteamId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgVDebugGameSessionIDEvent.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgVDebugGameSessionIDEvent.cs index f954555ce..8b86a4b65 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgVDebugGameSessionIDEvent.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgVDebugGameSessionIDEvent.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CMsgVDebugGameSessionIDEvent : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 200; - - static string INetMessage.MessageName => "CMsgVDebugGameSessionIDEvent"; - - static CMsgVDebugGameSessionIDEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgVDebugGameSessionIDEventImpl(handle, isManuallyAllocated); - - - public int Clientid { get; set; } + static int INetMessage.MessageId => 200; + static string INetMessage.MessageName => "CMsgVDebugGameSessionIDEvent"; - public string Gamesessionid { get; set; } + static CMsgVDebugGameSessionIDEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgVDebugGameSessionIDEventImpl(handle, isManuallyAllocated); -} + public int Clientid { get; set; } + public string Gamesessionid { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgVector.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgVector.cs index 160f62d1d..642ce283d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgVector.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgVector.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgVector : ITypedProtobuf { - static CMsgVector ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgVectorImpl(handle, isManuallyAllocated); - - - public float X { get; set; } - - - public float Y { get; set; } - - - public float Z { get; set; } - - - public float W { get; set; } + static CMsgVector ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgVectorImpl(handle, isManuallyAllocated); -} + public float X { get; set; } + public float Y { get; set; } + public float Z { get; set; } + public float W { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgVector2D.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgVector2D.cs index 08ef9ccf6..502db5374 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgVector2D.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgVector2D.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgVector2D : ITypedProtobuf { - static CMsgVector2D ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgVector2DImpl(handle, isManuallyAllocated); - - - public float X { get; set; } - - - public float Y { get; set; } + static CMsgVector2D ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgVector2DImpl(handle, isManuallyAllocated); -} + public float X { get; set; } + public float Y { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgVoiceAudio.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgVoiceAudio.cs index f123b8042..2a938fedf 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgVoiceAudio.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsgVoiceAudio.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,33 +6,15 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsgVoiceAudio : ITypedProtobuf { - static CMsgVoiceAudio ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgVoiceAudioImpl(handle, isManuallyAllocated); - - - public VoiceDataFormat_t Format { get; set; } - - - public byte[] VoiceData { get; set; } - - - public int SequenceBytes { get; set; } - - - public uint SectionNumber { get; set; } - - - public uint SampleRate { get; set; } - - - public uint UncompressedSampleOffset { get; set; } - - - public uint NumPackets { get; set; } - - - public IProtobufRepeatedFieldValueType PacketOffsets { get; } - - - public float VoiceLevel { get; set; } - -} + static CMsgVoiceAudio ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsgVoiceAudioImpl(handle, isManuallyAllocated); + + public VoiceDataFormat_t Format { get; set; } + public byte[] VoiceData { get; set; } + public int SequenceBytes { get; set; } + public uint SectionNumber { get; set; } + public uint SampleRate { get; set; } + public uint UncompressedSampleOffset { get; set; } + public uint NumPackets { get; set; } + public IProtobufRepeatedFieldValueType PacketOffsets { get; } + public float VoiceLevel { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsg_CVars.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsg_CVars.cs index b887064e5..57c88647d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsg_CVars.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsg_CVars.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsg_CVars : ITypedProtobuf { - static CMsg_CVars ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsg_CVarsImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType Cvars { get; } + static CMsg_CVars ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsg_CVarsImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType Cvars { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsg_CVars_CVar.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsg_CVars_CVar.cs index 63afb1d81..2ee9ab354 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsg_CVars_CVar.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CMsg_CVars_CVar.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CMsg_CVars_CVar : ITypedProtobuf { - static CMsg_CVars_CVar ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsg_CVars_CVarImpl(handle, isManuallyAllocated); - - - public string Name { get; set; } - - - public string Value { get; set; } + static CMsg_CVars_CVar ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CMsg_CVars_CVarImpl(handle, isManuallyAllocated); -} + public string Name { get; set; } + public string Value { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_DebugOverlay.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_DebugOverlay.cs index a677e5986..e06130ac2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_DebugOverlay.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_DebugOverlay.cs @@ -1,41 +1,23 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CNETMsg_DebugOverlay : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 15; - - static string INetMessage.MessageName => "CNETMsg_DebugOverlay"; - - static CNETMsg_DebugOverlay ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CNETMsg_DebugOverlayImpl(handle, isManuallyAllocated); - - - public int Etype { get; set; } - - - public IProtobufRepeatedFieldValueType Vectors { get; } - - - public IProtobufRepeatedFieldValueType Colors { get; } - - - public IProtobufRepeatedFieldValueType Dimensions { get; } - - - public IProtobufRepeatedFieldValueType Times { get; } - - - public IProtobufRepeatedFieldValueType Bools { get; } - - - public IProtobufRepeatedFieldValueType Uint64s { get; } + static int INetMessage.MessageId => 15; + static string INetMessage.MessageName => "CNETMsg_DebugOverlay"; - public IProtobufRepeatedFieldValueType Strings { get; } + static CNETMsg_DebugOverlay ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CNETMsg_DebugOverlayImpl(handle, isManuallyAllocated); -} + public int Etype { get; set; } + public IProtobufRepeatedFieldValueType Vectors { get; } + public IProtobufRepeatedFieldValueType Colors { get; } + public IProtobufRepeatedFieldValueType Dimensions { get; } + public IProtobufRepeatedFieldValueType Times { get; } + public IProtobufRepeatedFieldValueType Bools { get; } + public IProtobufRepeatedFieldValueType Uint64s { get; } + public IProtobufRepeatedFieldValueType Strings { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_NOP.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_NOP.cs index 4e6a27bba..06b8fd5b6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_NOP.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_NOP.cs @@ -1,18 +1,15 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CNETMsg_NOP : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 0; - - static string INetMessage.MessageName => "CNETMsg_NOP"; + static int INetMessage.MessageId => 0; - static CNETMsg_NOP ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CNETMsg_NOPImpl(handle, isManuallyAllocated); + static string INetMessage.MessageName => "CNETMsg_NOP"; + static CNETMsg_NOP ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CNETMsg_NOPImpl(handle, isManuallyAllocated); -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SetConVar.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SetConVar.cs index c07da653b..a5a79192b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SetConVar.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SetConVar.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CNETMsg_SetConVar : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 6; - - static string INetMessage.MessageName => "CNETMsg_SetConVar"; - - static CNETMsg_SetConVar ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CNETMsg_SetConVarImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 6; + static string INetMessage.MessageName => "CNETMsg_SetConVar"; - public CMsg_CVars Convars { get; } + static CNETMsg_SetConVar ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CNETMsg_SetConVarImpl(handle, isManuallyAllocated); -} + public CMsg_CVars Convars { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SignonState.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SignonState.cs index 91071c516..17b32928a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SignonState.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SignonState.cs @@ -1,35 +1,21 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CNETMsg_SignonState : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 7; - - static string INetMessage.MessageName => "CNETMsg_SignonState"; - - static CNETMsg_SignonState ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CNETMsg_SignonStateImpl(handle, isManuallyAllocated); - - - public SignonState_t SignonState { get; set; } - - - public uint SpawnCount { get; set; } - - - public uint NumServerPlayers { get; set; } - - - public IProtobufRepeatedFieldValueType PlayersNetworkids { get; } - - - public string MapName { get; set; } + static int INetMessage.MessageId => 7; + static string INetMessage.MessageName => "CNETMsg_SignonState"; - public string Addons { get; set; } + static CNETMsg_SignonState ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CNETMsg_SignonStateImpl(handle, isManuallyAllocated); -} + public SignonState_t SignonState { get; set; } + public uint SpawnCount { get; set; } + public uint NumServerPlayers { get; set; } + public IProtobufRepeatedFieldValueType PlayersNetworkids { get; } + public string MapName { get; set; } + public string Addons { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SpawnGroup_Load.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SpawnGroup_Load.cs index 45e57dc79..63a5b73c4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SpawnGroup_Load.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SpawnGroup_Load.cs @@ -1,77 +1,35 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CNETMsg_SpawnGroup_Load : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 8; - - static string INetMessage.MessageName => "CNETMsg_SpawnGroup_Load"; - - static CNETMsg_SpawnGroup_Load ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CNETMsg_SpawnGroup_LoadImpl(handle, isManuallyAllocated); - - - public string Worldname { get; set; } - - - public string Entitylumpname { get; set; } - - - public string Entityfiltername { get; set; } - - - public uint Spawngrouphandle { get; set; } - - - public uint Spawngroupownerhandle { get; set; } - - - public Vector WorldOffsetPos { get; set; } - - - public QAngle WorldOffsetAngle { get; set; } - - - public byte[] Spawngroupmanifest { get; set; } - - - public uint Flags { get; set; } - - - public int Tickcount { get; set; } - - - public bool Manifestincomplete { get; set; } - - - public string Localnamefixup { get; set; } - - - public string Parentnamefixup { get; set; } - - - public int Manifestloadpriority { get; set; } - - - public uint Worldgroupid { get; set; } - - - public uint Creationsequence { get; set; } - - - public string Savegamefilename { get; set; } - - - public uint Spawngroupparenthandle { get; set; } - - - public bool Leveltransition { get; set; } - - - public string Worldgroupname { get; set; } - -} + static int INetMessage.MessageId => 8; + + static string INetMessage.MessageName => "CNETMsg_SpawnGroup_Load"; + + static CNETMsg_SpawnGroup_Load ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CNETMsg_SpawnGroup_LoadImpl(handle, isManuallyAllocated); + + public string Worldname { get; set; } + public string Entitylumpname { get; set; } + public string Entityfiltername { get; set; } + public uint Spawngrouphandle { get; set; } + public uint Spawngroupownerhandle { get; set; } + public Vector WorldOffsetPos { get; set; } + public QAngle WorldOffsetAngle { get; set; } + public byte[] Spawngroupmanifest { get; set; } + public uint Flags { get; set; } + public int Tickcount { get; set; } + public bool Manifestincomplete { get; set; } + public string Localnamefixup { get; set; } + public string Parentnamefixup { get; set; } + public int Manifestloadpriority { get; set; } + public uint Worldgroupid { get; set; } + public uint Creationsequence { get; set; } + public string Savegamefilename { get; set; } + public uint Spawngroupparenthandle { get; set; } + public bool Leveltransition { get; set; } + public string Worldgroupname { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SpawnGroup_LoadCompleted.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SpawnGroup_LoadCompleted.cs index 80eec1eb8..3ba2f62ba 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SpawnGroup_LoadCompleted.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SpawnGroup_LoadCompleted.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CNETMsg_SpawnGroup_LoadCompleted : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 13; - - static string INetMessage.MessageName => "CNETMsg_SpawnGroup_LoadCompleted"; - - static CNETMsg_SpawnGroup_LoadCompleted ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CNETMsg_SpawnGroup_LoadCompletedImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 13; + static string INetMessage.MessageName => "CNETMsg_SpawnGroup_LoadCompleted"; - public uint Spawngrouphandle { get; set; } + static CNETMsg_SpawnGroup_LoadCompleted ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CNETMsg_SpawnGroup_LoadCompletedImpl(handle, isManuallyAllocated); -} + public uint Spawngrouphandle { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SpawnGroup_ManifestUpdate.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SpawnGroup_ManifestUpdate.cs index 6215c6e2f..54a67070f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SpawnGroup_ManifestUpdate.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SpawnGroup_ManifestUpdate.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CNETMsg_SpawnGroup_ManifestUpdate : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 9; - - static string INetMessage.MessageName => "CNETMsg_SpawnGroup_ManifestUpdate"; - - static CNETMsg_SpawnGroup_ManifestUpdate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CNETMsg_SpawnGroup_ManifestUpdateImpl(handle, isManuallyAllocated); - - - public uint Spawngrouphandle { get; set; } - - - public byte[] Spawngroupmanifest { get; set; } + static int INetMessage.MessageId => 9; + static string INetMessage.MessageName => "CNETMsg_SpawnGroup_ManifestUpdate"; - public bool Manifestincomplete { get; set; } + static CNETMsg_SpawnGroup_ManifestUpdate ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CNETMsg_SpawnGroup_ManifestUpdateImpl(handle, isManuallyAllocated); -} + public uint Spawngrouphandle { get; set; } + public byte[] Spawngroupmanifest { get; set; } + public bool Manifestincomplete { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SpawnGroup_SetCreationTick.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SpawnGroup_SetCreationTick.cs index 160ceb725..7b432bd7e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SpawnGroup_SetCreationTick.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SpawnGroup_SetCreationTick.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CNETMsg_SpawnGroup_SetCreationTick : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 11; - - static string INetMessage.MessageName => "CNETMsg_SpawnGroup_SetCreationTick"; - - static CNETMsg_SpawnGroup_SetCreationTick ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CNETMsg_SpawnGroup_SetCreationTickImpl(handle, isManuallyAllocated); - - - public uint Spawngrouphandle { get; set; } - - - public int Tickcount { get; set; } + static int INetMessage.MessageId => 11; + static string INetMessage.MessageName => "CNETMsg_SpawnGroup_SetCreationTick"; - public uint Creationsequence { get; set; } + static CNETMsg_SpawnGroup_SetCreationTick ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CNETMsg_SpawnGroup_SetCreationTickImpl(handle, isManuallyAllocated); -} + public uint Spawngrouphandle { get; set; } + public int Tickcount { get; set; } + public uint Creationsequence { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SpawnGroup_Unload.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SpawnGroup_Unload.cs index 34d552c51..192891256 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SpawnGroup_Unload.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SpawnGroup_Unload.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CNETMsg_SpawnGroup_Unload : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 12; - - static string INetMessage.MessageName => "CNETMsg_SpawnGroup_Unload"; - - static CNETMsg_SpawnGroup_Unload ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CNETMsg_SpawnGroup_UnloadImpl(handle, isManuallyAllocated); - - - public uint Spawngrouphandle { get; set; } - - - public uint Flags { get; set; } + static int INetMessage.MessageId => 12; + static string INetMessage.MessageName => "CNETMsg_SpawnGroup_Unload"; - public int Tickcount { get; set; } + static CNETMsg_SpawnGroup_Unload ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CNETMsg_SpawnGroup_UnloadImpl(handle, isManuallyAllocated); -} + public uint Spawngrouphandle { get; set; } + public uint Flags { get; set; } + public int Tickcount { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SplitScreenUser.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SplitScreenUser.cs index ef67ca5ea..2ddd41fdd 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SplitScreenUser.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_SplitScreenUser.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CNETMsg_SplitScreenUser : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 3; - - static string INetMessage.MessageName => "CNETMsg_SplitScreenUser"; - - static CNETMsg_SplitScreenUser ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CNETMsg_SplitScreenUserImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 3; + static string INetMessage.MessageName => "CNETMsg_SplitScreenUser"; - public int Slot { get; set; } + static CNETMsg_SplitScreenUser ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CNETMsg_SplitScreenUserImpl(handle, isManuallyAllocated); -} + public int Slot { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_StringCmd.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_StringCmd.cs index 2ea45e2ea..a8fc3ac72 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_StringCmd.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_StringCmd.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CNETMsg_StringCmd : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 5; - - static string INetMessage.MessageName => "CNETMsg_StringCmd"; - - static CNETMsg_StringCmd ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CNETMsg_StringCmdImpl(handle, isManuallyAllocated); - - - public string Command { get; set; } + static int INetMessage.MessageId => 5; + static string INetMessage.MessageName => "CNETMsg_StringCmd"; - public uint PredictionSync { get; set; } + static CNETMsg_StringCmd ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CNETMsg_StringCmdImpl(handle, isManuallyAllocated); -} + public string Command { get; set; } + public uint PredictionSync { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_Tick.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_Tick.cs index 8e19f8030..05564e6be 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_Tick.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CNETMsg_Tick.cs @@ -1,47 +1,25 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CNETMsg_Tick : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 4; - - static string INetMessage.MessageName => "CNETMsg_Tick"; - - static CNETMsg_Tick ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CNETMsg_TickImpl(handle, isManuallyAllocated); - - - public uint Tick { get; set; } - - - public uint HostComputationtime { get; set; } - - - public uint HostComputationtimeStdDeviation { get; set; } - - - public uint LegacyHostLoss { get; set; } - - - public uint HostUnfilteredFrametime { get; set; } - - - public uint HltvReplayFlags { get; set; } - - - public uint ExpectedLongTick { get; set; } - - - public string ExpectedLongTickReason { get; set; } - - - public uint HostFrameDroppedPctX10 { get; set; } - - - public uint HostFrameIrregularArrivalPctX10 { get; set; } - -} + static int INetMessage.MessageId => 4; + + static string INetMessage.MessageName => "CNETMsg_Tick"; + + static CNETMsg_Tick ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CNETMsg_TickImpl(handle, isManuallyAllocated); + + public uint Tick { get; set; } + public uint HostComputationtime { get; set; } + public uint HostComputationtimeStdDeviation { get; set; } + public uint LegacyHostLoss { get; set; } + public uint HostUnfilteredFrametime { get; set; } + public uint HltvReplayFlags { get; set; } + public uint ExpectedLongTick { get; set; } + public string ExpectedLongTickReason { get; set; } + public uint HostFrameDroppedPctX10 { get; set; } + public uint HostFrameIrregularArrivalPctX10 { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CP2P_Ping.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CP2P_Ping.cs index 805e4d0f4..5fa74c850 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CP2P_Ping.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CP2P_Ping.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CP2P_Ping : ITypedProtobuf { - static CP2P_Ping ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CP2P_PingImpl(handle, isManuallyAllocated); - - - public ulong SendTime { get; set; } - - - public bool IsReply { get; set; } + static CP2P_Ping ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CP2P_PingImpl(handle, isManuallyAllocated); -} + public ulong SendTime { get; set; } + public bool IsReply { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CP2P_TextMessage.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CP2P_TextMessage.cs index a7a8b5db9..28cb5e852 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CP2P_TextMessage.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CP2P_TextMessage.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CP2P_TextMessage : ITypedProtobuf { - static CP2P_TextMessage ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CP2P_TextMessageImpl(handle, isManuallyAllocated); - - - public byte[] Text { get; set; } + static CP2P_TextMessage ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CP2P_TextMessageImpl(handle, isManuallyAllocated); -} + public byte[] Text { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CP2P_VRAvatarPosition.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CP2P_VRAvatarPosition.cs index 5495b8341..388a5b4a4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CP2P_VRAvatarPosition.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CP2P_VRAvatarPosition.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CP2P_VRAvatarPosition : ITypedProtobuf { - static CP2P_VRAvatarPosition ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CP2P_VRAvatarPositionImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType BodyParts { get; } - - - public int HatId { get; set; } - - - public int SceneId { get; set; } - - - public int WorldScale { get; set; } + static CP2P_VRAvatarPosition ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CP2P_VRAvatarPositionImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType BodyParts { get; } + public int HatId { get; set; } + public int SceneId { get; set; } + public int WorldScale { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CP2P_VRAvatarPosition_COrientation.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CP2P_VRAvatarPosition_COrientation.cs index 100f4f397..33d1091f1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CP2P_VRAvatarPosition_COrientation.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CP2P_VRAvatarPosition_COrientation.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CP2P_VRAvatarPosition_COrientation : ITypedProtobuf { - static CP2P_VRAvatarPosition_COrientation ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CP2P_VRAvatarPosition_COrientationImpl(handle, isManuallyAllocated); - - - public Vector Pos { get; set; } - - - public QAngle Ang { get; set; } + static CP2P_VRAvatarPosition_COrientation ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CP2P_VRAvatarPosition_COrientationImpl(handle, isManuallyAllocated); -} + public Vector Pos { get; set; } + public QAngle Ang { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CP2P_Voice.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CP2P_Voice.cs index 9e5f6f807..fe5495a9d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CP2P_Voice.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CP2P_Voice.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CP2P_Voice : ITypedProtobuf { - static CP2P_Voice ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CP2P_VoiceImpl(handle, isManuallyAllocated); - - - public CMsgVoiceAudio Audio { get; } - - - public uint BroadcastGroup { get; set; } + static CP2P_Voice ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CP2P_VoiceImpl(handle, isManuallyAllocated); -} + public CMsgVoiceAudio Audio { get; } + public uint BroadcastGroup { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CP2P_WatchSynchronization.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CP2P_WatchSynchronization.cs index 8d15a2570..84a7b3f7d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CP2P_WatchSynchronization.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CP2P_WatchSynchronization.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,30 +6,14 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CP2P_WatchSynchronization : ITypedProtobuf { - static CP2P_WatchSynchronization ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CP2P_WatchSynchronizationImpl(handle, isManuallyAllocated); - - - public int DemoTick { get; set; } - - - public bool Paused { get; set; } - - - public ulong TvListenVoiceIndices { get; set; } - - - public int DotaSpectatorMode { get; set; } - - - public bool DotaSpectatorWatchingBroadcaster { get; set; } - - - public int DotaSpectatorHeroIndex { get; set; } - - - public int DotaSpectatorAutospeed { get; set; } - - - public int DotaReplaySpeed { get; set; } - -} + static CP2P_WatchSynchronization ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CP2P_WatchSynchronizationImpl(handle, isManuallyAllocated); + + public int DemoTick { get; set; } + public bool Paused { get; set; } + public ulong TvListenVoiceIndices { get; set; } + public int DotaSpectatorMode { get; set; } + public bool DotaSpectatorWatchingBroadcaster { get; set; } + public int DotaSpectatorHeroIndex { get; set; } + public int DotaSpectatorAutospeed { get; set; } + public int DotaReplaySpeed { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CPreMatchInfoData.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CPreMatchInfoData.cs index c85040ce1..7fd81c894 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CPreMatchInfoData.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CPreMatchInfoData.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CPreMatchInfoData : ITypedProtobuf { - static CPreMatchInfoData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CPreMatchInfoDataImpl(handle, isManuallyAllocated); - - - public int PredictionsPct { get; set; } - - - public CDataGCCStrike15_v2_TournamentMatchDraft Draft { get; } - - - public IProtobufRepeatedFieldSubMessageType Stats { get; } - - - public IProtobufRepeatedFieldValueType Wins { get; } + static CPreMatchInfoData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CPreMatchInfoDataImpl(handle, isManuallyAllocated); -} + public int PredictionsPct { get; set; } + public CDataGCCStrike15_v2_TournamentMatchDraft Draft { get; } + public IProtobufRepeatedFieldSubMessageType Stats { get; } + public IProtobufRepeatedFieldValueType Wins { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CPreMatchInfoData_TeamStats.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CPreMatchInfoData_TeamStats.cs index 1d96a5504..824fd165b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CPreMatchInfoData_TeamStats.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CPreMatchInfoData_TeamStats.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CPreMatchInfoData_TeamStats : ITypedProtobuf { - static CPreMatchInfoData_TeamStats ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CPreMatchInfoData_TeamStatsImpl(handle, isManuallyAllocated); - - - public int MatchInfoIdxtxt { get; set; } - - - public string MatchInfoTxt { get; set; } - - - public IProtobufRepeatedFieldValueType MatchInfoTeams { get; } + static CPreMatchInfoData_TeamStats ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CPreMatchInfoData_TeamStatsImpl(handle, isManuallyAllocated); -} + public int MatchInfoIdxtxt { get; set; } + public string MatchInfoTxt { get; set; } + public IProtobufRepeatedFieldValueType MatchInfoTeams { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CPredictionEvent_Diagnostic.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CPredictionEvent_Diagnostic.cs index d3cb4d73e..880bacd7a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CPredictionEvent_Diagnostic.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CPredictionEvent_Diagnostic.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CPredictionEvent_Diagnostic : ITypedProtobuf { - static CPredictionEvent_Diagnostic ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CPredictionEvent_DiagnosticImpl(handle, isManuallyAllocated); - - - public uint Id { get; set; } - - - public uint RequestedSync { get; set; } - - - public uint RequestedPlayerIndex { get; set; } - - - public IProtobufRepeatedFieldValueType ExecutionSync { get; } + static CPredictionEvent_Diagnostic ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CPredictionEvent_DiagnosticImpl(handle, isManuallyAllocated); -} + public uint Id { get; set; } + public uint RequestedSync { get; set; } + public uint RequestedPlayerIndex { get; set; } + public IProtobufRepeatedFieldValueType ExecutionSync { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CPredictionEvent_StringCommand.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CPredictionEvent_StringCommand.cs index 587438dec..c8769365e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CPredictionEvent_StringCommand.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CPredictionEvent_StringCommand.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CPredictionEvent_StringCommand : ITypedProtobuf { - static CPredictionEvent_StringCommand ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CPredictionEvent_StringCommandImpl(handle, isManuallyAllocated); - - - public string Command { get; set; } + static CPredictionEvent_StringCommand ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CPredictionEvent_StringCommandImpl(handle, isManuallyAllocated); -} + public string Command { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CPredictionEvent_Teleport.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CPredictionEvent_Teleport.cs index 0c8eee6a6..2ddef2070 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CPredictionEvent_Teleport.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CPredictionEvent_Teleport.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CPredictionEvent_Teleport : ITypedProtobuf { - static CPredictionEvent_Teleport ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CPredictionEvent_TeleportImpl(handle, isManuallyAllocated); - - - public Vector Origin { get; set; } - - - public QAngle Angles { get; set; } - - - public float DropToGroundRange { get; set; } + static CPredictionEvent_Teleport ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CPredictionEvent_TeleportImpl(handle, isManuallyAllocated); -} + public Vector Origin { get; set; } + public QAngle Angles { get; set; } + public float DropToGroundRange { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CProductInfo_SetRichPresenceLocalization_Request.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CProductInfo_SetRichPresenceLocalization_Request.cs index 015ff1d60..1a8556e36 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CProductInfo_SetRichPresenceLocalization_Request.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CProductInfo_SetRichPresenceLocalization_Request.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CProductInfo_SetRichPresenceLocalization_Request : ITypedProtobuf { - static CProductInfo_SetRichPresenceLocalization_Request ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CProductInfo_SetRichPresenceLocalization_RequestImpl(handle, isManuallyAllocated); - - - public uint Appid { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Languages { get; } - - - public ulong Steamid { get; set; } + static CProductInfo_SetRichPresenceLocalization_Request ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CProductInfo_SetRichPresenceLocalization_RequestImpl(handle, isManuallyAllocated); -} + public uint Appid { get; set; } + public IProtobufRepeatedFieldSubMessageType Languages { get; } + public ulong Steamid { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CProductInfo_SetRichPresenceLocalization_Request_LanguageSection.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CProductInfo_SetRichPresenceLocalization_Request_LanguageSection.cs index 3f708d2f8..55e9e45d8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CProductInfo_SetRichPresenceLocalization_Request_LanguageSection.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CProductInfo_SetRichPresenceLocalization_Request_LanguageSection.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CProductInfo_SetRichPresenceLocalization_Request_LanguageSection : ITypedProtobuf { - static CProductInfo_SetRichPresenceLocalization_Request_LanguageSection ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CProductInfo_SetRichPresenceLocalization_Request_LanguageSectionImpl(handle, isManuallyAllocated); - - - public string Language { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Tokens { get; } + static CProductInfo_SetRichPresenceLocalization_Request_LanguageSection ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CProductInfo_SetRichPresenceLocalization_Request_LanguageSectionImpl(handle, isManuallyAllocated); -} + public string Language { get; set; } + public IProtobufRepeatedFieldSubMessageType Tokens { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CProductInfo_SetRichPresenceLocalization_Request_Token.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CProductInfo_SetRichPresenceLocalization_Request_Token.cs index 0fa9a6ae3..66f48545b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CProductInfo_SetRichPresenceLocalization_Request_Token.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CProductInfo_SetRichPresenceLocalization_Request_Token.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CProductInfo_SetRichPresenceLocalization_Request_Token : ITypedProtobuf { - static CProductInfo_SetRichPresenceLocalization_Request_Token ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CProductInfo_SetRichPresenceLocalization_Request_TokenImpl(handle, isManuallyAllocated); - - - public string Token { get; set; } - - - public string Value { get; set; } + static CProductInfo_SetRichPresenceLocalization_Request_Token ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CProductInfo_SetRichPresenceLocalization_Request_TokenImpl(handle, isManuallyAllocated); -} + public string Token { get; set; } + public string Value { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CProductInfo_SetRichPresenceLocalization_Response.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CProductInfo_SetRichPresenceLocalization_Response.cs index 19ac13dea..6ef5586f8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CProductInfo_SetRichPresenceLocalization_Response.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CProductInfo_SetRichPresenceLocalization_Response.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,7 +6,6 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CProductInfo_SetRichPresenceLocalization_Response : ITypedProtobuf { - static CProductInfo_SetRichPresenceLocalization_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CProductInfo_SetRichPresenceLocalization_ResponseImpl(handle, isManuallyAllocated); - + static CProductInfo_SetRichPresenceLocalization_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CProductInfo_SetRichPresenceLocalization_ResponseImpl(handle, isManuallyAllocated); -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CQuest_PublisherAddCommunityItemsToPlayer_Request.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CQuest_PublisherAddCommunityItemsToPlayer_Request.cs index 790ec2043..000f4ebac 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CQuest_PublisherAddCommunityItemsToPlayer_Request.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CQuest_PublisherAddCommunityItemsToPlayer_Request.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,27 +6,13 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CQuest_PublisherAddCommunityItemsToPlayer_Request : ITypedProtobuf { - static CQuest_PublisherAddCommunityItemsToPlayer_Request ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CQuest_PublisherAddCommunityItemsToPlayer_RequestImpl(handle, isManuallyAllocated); - - - public ulong Steamid { get; set; } - - - public uint Appid { get; set; } - - - public uint MatchItemType { get; set; } - - - public uint MatchItemClass { get; set; } - - - public string PrefixItemName { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Attributes { get; } - - - public string Note { get; set; } - -} + static CQuest_PublisherAddCommunityItemsToPlayer_Request ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CQuest_PublisherAddCommunityItemsToPlayer_RequestImpl(handle, isManuallyAllocated); + + public ulong Steamid { get; set; } + public uint Appid { get; set; } + public uint MatchItemType { get; set; } + public uint MatchItemClass { get; set; } + public string PrefixItemName { get; set; } + public IProtobufRepeatedFieldSubMessageType Attributes { get; } + public string Note { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CQuest_PublisherAddCommunityItemsToPlayer_Request_Attribute.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CQuest_PublisherAddCommunityItemsToPlayer_Request_Attribute.cs index 6e53f65a3..fc9233b0a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CQuest_PublisherAddCommunityItemsToPlayer_Request_Attribute.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CQuest_PublisherAddCommunityItemsToPlayer_Request_Attribute.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CQuest_PublisherAddCommunityItemsToPlayer_Request_Attribute : ITypedProtobuf { - static CQuest_PublisherAddCommunityItemsToPlayer_Request_Attribute ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CQuest_PublisherAddCommunityItemsToPlayer_Request_AttributeImpl(handle, isManuallyAllocated); - - - public uint Attribute { get; set; } - - - public ulong Value { get; set; } + static CQuest_PublisherAddCommunityItemsToPlayer_Request_Attribute ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CQuest_PublisherAddCommunityItemsToPlayer_Request_AttributeImpl(handle, isManuallyAllocated); -} + public uint Attribute { get; set; } + public ulong Value { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CQuest_PublisherAddCommunityItemsToPlayer_Response.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CQuest_PublisherAddCommunityItemsToPlayer_Response.cs index 15f15a2ab..5369d4da0 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CQuest_PublisherAddCommunityItemsToPlayer_Response.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CQuest_PublisherAddCommunityItemsToPlayer_Response.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CQuest_PublisherAddCommunityItemsToPlayer_Response : ITypedProtobuf { - static CQuest_PublisherAddCommunityItemsToPlayer_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CQuest_PublisherAddCommunityItemsToPlayer_ResponseImpl(handle, isManuallyAllocated); - - - public uint ItemsMatched { get; set; } - - - public uint ItemsGranted { get; set; } + static CQuest_PublisherAddCommunityItemsToPlayer_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CQuest_PublisherAddCommunityItemsToPlayer_ResponseImpl(handle, isManuallyAllocated); -} + public uint ItemsMatched { get; set; } + public uint ItemsGranted { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSGOInputHistoryEntryPB.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSGOInputHistoryEntryPB.cs index 95636f1fb..290bc46d4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSGOInputHistoryEntryPB.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSGOInputHistoryEntryPB.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,51 +6,21 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSGOInputHistoryEntryPB : ITypedProtobuf { - static CSGOInputHistoryEntryPB ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSGOInputHistoryEntryPBImpl(handle, isManuallyAllocated); - - - public QAngle ViewAngles { get; set; } - - - public int RenderTickCount { get; set; } - - - public float RenderTickFraction { get; set; } - - - public int PlayerTickCount { get; set; } - - - public float PlayerTickFraction { get; set; } - - - public CSGOInterpolationInfoPB_CL ClInterp { get; } - - - public CSGOInterpolationInfoPB SvInterp0 { get; } - - - public CSGOInterpolationInfoPB SvInterp1 { get; } - - - public CSGOInterpolationInfoPB PlayerInterp { get; } - - - public int FrameNumber { get; set; } - - - public int TargetEntIndex { get; set; } - - - public Vector ShootPosition { get; set; } - - - public Vector TargetHeadPosCheck { get; set; } - - - public Vector TargetAbsPosCheck { get; set; } - - - public QAngle TargetAbsAngCheck { get; set; } - -} + static CSGOInputHistoryEntryPB ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSGOInputHistoryEntryPBImpl(handle, isManuallyAllocated); + + public QAngle ViewAngles { get; set; } + public int RenderTickCount { get; set; } + public float RenderTickFraction { get; set; } + public int PlayerTickCount { get; set; } + public float PlayerTickFraction { get; set; } + public CSGOInterpolationInfoPB_CL ClInterp { get; } + public CSGOInterpolationInfoPB SvInterp0 { get; } + public CSGOInterpolationInfoPB SvInterp1 { get; } + public CSGOInterpolationInfoPB PlayerInterp { get; } + public int FrameNumber { get; set; } + public int TargetEntIndex { get; set; } + public Vector ShootPosition { get; set; } + public Vector TargetHeadPosCheck { get; set; } + public Vector TargetAbsPosCheck { get; set; } + public QAngle TargetAbsAngCheck { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSGOInterpolationInfoPB.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSGOInterpolationInfoPB.cs index 4cb01902e..37ece8b00 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSGOInterpolationInfoPB.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSGOInterpolationInfoPB.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSGOInterpolationInfoPB : ITypedProtobuf { - static CSGOInterpolationInfoPB ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSGOInterpolationInfoPBImpl(handle, isManuallyAllocated); - - - public int SrcTick { get; set; } - - - public int DstTick { get; set; } - - - public float Frac { get; set; } + static CSGOInterpolationInfoPB ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSGOInterpolationInfoPBImpl(handle, isManuallyAllocated); -} + public int SrcTick { get; set; } + public int DstTick { get; set; } + public float Frac { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSGOInterpolationInfoPB_CL.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSGOInterpolationInfoPB_CL.cs index c6a2dd2b4..7c4bf3838 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSGOInterpolationInfoPB_CL.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSGOInterpolationInfoPB_CL.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSGOInterpolationInfoPB_CL : ITypedProtobuf { - static CSGOInterpolationInfoPB_CL ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSGOInterpolationInfoPB_CLImpl(handle, isManuallyAllocated); - - - public float Frac { get; set; } + static CSGOInterpolationInfoPB_CL ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSGOInterpolationInfoPB_CLImpl(handle, isManuallyAllocated); -} + public float Frac { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSGOUserCmdPB.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSGOUserCmdPB.cs index 3f8fd1dab..2781c109c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSGOUserCmdPB.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSGOUserCmdPB.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,30 +6,14 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSGOUserCmdPB : ITypedProtobuf { - static CSGOUserCmdPB ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSGOUserCmdPBImpl(handle, isManuallyAllocated); - - - public CBaseUserCmdPB Base { get; } - - - public IProtobufRepeatedFieldSubMessageType InputHistory { get; } - - - public int Attack1StartHistoryIndex { get; set; } - - - public int Attack2StartHistoryIndex { get; set; } - - - public bool LeftHandDesired { get; set; } - - - public bool IsPredictingBodyShotFx { get; set; } - - - public bool IsPredictingHeadShotFx { get; set; } - - - public bool IsPredictingKillRagdolls { get; set; } - -} + static CSGOUserCmdPB ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSGOUserCmdPBImpl(handle, isManuallyAllocated); + + public CBaseUserCmdPB Base { get; } + public IProtobufRepeatedFieldSubMessageType InputHistory { get; } + public int Attack1StartHistoryIndex { get; set; } + public int Attack2StartHistoryIndex { get; set; } + public bool LeftHandDesired { get; set; } + public bool IsPredictingBodyShotFx { get; set; } + public bool IsPredictingHeadShotFx { get; set; } + public bool IsPredictingKillRagdolls { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOAccountItemPersonalStore.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOAccountItemPersonalStore.cs index 77c21b1c5..a6cd40577 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOAccountItemPersonalStore.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOAccountItemPersonalStore.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSOAccountItemPersonalStore : ITypedProtobuf { - static CSOAccountItemPersonalStore ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOAccountItemPersonalStoreImpl(handle, isManuallyAllocated); - - - public uint GenerationTime { get; set; } - - - public uint RedeemableBalance { get; set; } - - - public IProtobufRepeatedFieldValueType Items { get; } + static CSOAccountItemPersonalStore ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOAccountItemPersonalStoreImpl(handle, isManuallyAllocated); -} + public uint GenerationTime { get; set; } + public uint RedeemableBalance { get; set; } + public IProtobufRepeatedFieldValueType Items { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOAccountKeychainRemoveToolCharges.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOAccountKeychainRemoveToolCharges.cs index 1dd086902..775e422ed 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOAccountKeychainRemoveToolCharges.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOAccountKeychainRemoveToolCharges.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSOAccountKeychainRemoveToolCharges : ITypedProtobuf { - static CSOAccountKeychainRemoveToolCharges ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOAccountKeychainRemoveToolChargesImpl(handle, isManuallyAllocated); - - - public uint Charges { get; set; } + static CSOAccountKeychainRemoveToolCharges ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOAccountKeychainRemoveToolChargesImpl(handle, isManuallyAllocated); -} + public uint Charges { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOAccountRecurringMission.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOAccountRecurringMission.cs index 8e2c940be..b1f8cc8ec 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOAccountRecurringMission.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOAccountRecurringMission.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSOAccountRecurringMission : ITypedProtobuf { - static CSOAccountRecurringMission ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOAccountRecurringMissionImpl(handle, isManuallyAllocated); - - - public uint AccountId { get; set; } - - - public uint MissionId { get; set; } - - - public uint Period { get; set; } - - - public uint Progress { get; set; } + static CSOAccountRecurringMission ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOAccountRecurringMissionImpl(handle, isManuallyAllocated); -} + public uint AccountId { get; set; } + public uint MissionId { get; set; } + public uint Period { get; set; } + public uint Progress { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOAccountRecurringSubscription.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOAccountRecurringSubscription.cs index 7514e6dc9..56952d6a1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOAccountRecurringSubscription.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOAccountRecurringSubscription.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSOAccountRecurringSubscription : ITypedProtobuf { - static CSOAccountRecurringSubscription ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOAccountRecurringSubscriptionImpl(handle, isManuallyAllocated); - - - public uint TimeNextCycle { get; set; } - - - public uint TimeInitiated { get; set; } + static CSOAccountRecurringSubscription ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOAccountRecurringSubscriptionImpl(handle, isManuallyAllocated); -} + public uint TimeNextCycle { get; set; } + public uint TimeInitiated { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOAccountSeasonalOperation.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOAccountSeasonalOperation.cs index 65f9e6b69..1470fe17d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOAccountSeasonalOperation.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOAccountSeasonalOperation.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,27 +6,13 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSOAccountSeasonalOperation : ITypedProtobuf { - static CSOAccountSeasonalOperation ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOAccountSeasonalOperationImpl(handle, isManuallyAllocated); - - - public uint SeasonValue { get; set; } - - - public uint TierUnlocked { get; set; } - - - public uint PremiumTiers { get; set; } - - - public uint MissionId { get; set; } - - - public uint MissionsCompleted { get; set; } - - - public uint RedeemableBalance { get; set; } - - - public uint SeasonPassTime { get; set; } - -} + static CSOAccountSeasonalOperation ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOAccountSeasonalOperationImpl(handle, isManuallyAllocated); + + public uint SeasonValue { get; set; } + public uint TierUnlocked { get; set; } + public uint PremiumTiers { get; set; } + public uint MissionId { get; set; } + public uint MissionsCompleted { get; set; } + public uint RedeemableBalance { get; set; } + public uint SeasonPassTime { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOAccountXpShop.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOAccountXpShop.cs index 1888e6b5d..8fd701369 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOAccountXpShop.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOAccountXpShop.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSOAccountXpShop : ITypedProtobuf { - static CSOAccountXpShop ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOAccountXpShopImpl(handle, isManuallyAllocated); - - - public uint GenerationTime { get; set; } - - - public uint RedeemableBalance { get; set; } - - - public IProtobufRepeatedFieldValueType XpTracks { get; } + static CSOAccountXpShop ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOAccountXpShopImpl(handle, isManuallyAllocated); -} + public uint GenerationTime { get; set; } + public uint RedeemableBalance { get; set; } + public IProtobufRepeatedFieldValueType XpTracks { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOAccountXpShopBids.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOAccountXpShopBids.cs index 3e83afbc3..01caf5656 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOAccountXpShopBids.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOAccountXpShopBids.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSOAccountXpShopBids : ITypedProtobuf { - static CSOAccountXpShopBids ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOAccountXpShopBidsImpl(handle, isManuallyAllocated); - - - public uint CampaignId { get; set; } - - - public uint RedeemId { get; set; } - - - public uint ExpectedCost { get; set; } - - - public uint GenerationTime { get; set; } + static CSOAccountXpShopBids ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOAccountXpShopBidsImpl(handle, isManuallyAllocated); -} + public uint CampaignId { get; set; } + public uint RedeemId { get; set; } + public uint ExpectedCost { get; set; } + public uint GenerationTime { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconClaimCode.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconClaimCode.cs index e091c0d16..6375de5e9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconClaimCode.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconClaimCode.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSOEconClaimCode : ITypedProtobuf { - static CSOEconClaimCode ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOEconClaimCodeImpl(handle, isManuallyAllocated); - - - public uint AccountId { get; set; } - - - public uint CodeType { get; set; } - - - public uint TimeAcquired { get; set; } - - - public string Code { get; set; } + static CSOEconClaimCode ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOEconClaimCodeImpl(handle, isManuallyAllocated); -} + public uint AccountId { get; set; } + public uint CodeType { get; set; } + public uint TimeAcquired { get; set; } + public string Code { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconCoupon.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconCoupon.cs index 2a10c16df..5217cfc10 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconCoupon.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconCoupon.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSOEconCoupon : ITypedProtobuf { - static CSOEconCoupon ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOEconCouponImpl(handle, isManuallyAllocated); - - - public uint Entryid { get; set; } - - - public uint Defidx { get; set; } - - - public uint ExpirationDate { get; set; } + static CSOEconCoupon ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOEconCouponImpl(handle, isManuallyAllocated); -} + public uint Entryid { get; set; } + public uint Defidx { get; set; } + public uint ExpirationDate { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconDefaultEquippedDefinitionInstanceClient.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconDefaultEquippedDefinitionInstanceClient.cs deleted file mode 100644 index 09eee9729..000000000 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconDefaultEquippedDefinitionInstanceClient.cs +++ /dev/null @@ -1,24 +0,0 @@ - -using SwiftlyS2.Core.ProtobufDefinitions; -using SwiftlyS2.Shared.Natives; -using SwiftlyS2.Shared.NetMessages; - -namespace SwiftlyS2.Shared.ProtobufDefinitions; - -public interface CSOEconDefaultEquippedDefinitionInstanceClient : ITypedProtobuf -{ - static CSOEconDefaultEquippedDefinitionInstanceClient ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOEconDefaultEquippedDefinitionInstanceClientImpl(handle, isManuallyAllocated); - - - public uint AccountId { get; set; } - - - public uint ItemDefinition { get; set; } - - - public uint ClassId { get; set; } - - - public uint SlotId { get; set; } - -} diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconEquipSlot.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconEquipSlot.cs index d9b19a40f..cf555a4ec 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconEquipSlot.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconEquipSlot.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,21 +6,11 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSOEconEquipSlot : ITypedProtobuf { - static CSOEconEquipSlot ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOEconEquipSlotImpl(handle, isManuallyAllocated); - - - public uint AccountId { get; set; } - - - public uint ClassId { get; set; } - - - public uint SlotId { get; set; } - - - public ulong ItemId { get; set; } - - - public uint ItemDefinition { get; set; } - -} + static CSOEconEquipSlot ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOEconEquipSlotImpl(handle, isManuallyAllocated); + + public uint AccountId { get; set; } + public uint ClassId { get; set; } + public uint SlotId { get; set; } + public ulong ItemId { get; set; } + public uint ItemDefinition { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconGameAccountClient.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconGameAccountClient.cs index 44442e7db..df7f631a3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconGameAccountClient.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconGameAccountClient.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,24 +6,12 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSOEconGameAccountClient : ITypedProtobuf { - static CSOEconGameAccountClient ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOEconGameAccountClientImpl(handle, isManuallyAllocated); - - - public uint AdditionalBackpackSlots { get; set; } - - - public uint TradeBanExpiration { get; set; } - - - public uint BonusXpTimestampRefresh { get; set; } - - - public uint BonusXpUsedflags { get; set; } - - - public uint ElevatedState { get; set; } - - - public uint ElevatedTimestamp { get; set; } - -} + static CSOEconGameAccountClient ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOEconGameAccountClientImpl(handle, isManuallyAllocated); + + public uint AdditionalBackpackSlots { get; set; } + public uint TradeBanExpiration { get; set; } + public uint BonusXpTimestampRefresh { get; set; } + public uint BonusXpUsedflags { get; set; } + public uint ElevatedState { get; set; } + public uint ElevatedTimestamp { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconItem.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconItem.cs index f444e1bc4..a2a353563 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconItem.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconItem.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,60 +6,24 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSOEconItem : ITypedProtobuf { - static CSOEconItem ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOEconItemImpl(handle, isManuallyAllocated); - - - public ulong Id { get; set; } - - - public uint AccountId { get; set; } - - - public uint Inventory { get; set; } - - - public uint DefIndex { get; set; } - - - public uint Quantity { get; set; } - - - public uint Level { get; set; } - - - public uint Quality { get; set; } - - - public uint Flags { get; set; } - - - public uint Origin { get; set; } - - - public string CustomName { get; set; } - - - public string CustomDesc { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Attribute { get; } - - - public CSOEconItem InteriorItem { get; } - - - public bool InUse { get; set; } - - - public uint Style { get; set; } - - - public ulong OriginalId { get; set; } - - - public IProtobufRepeatedFieldSubMessageType EquippedState { get; } - - - public uint Rarity { get; set; } - -} + static CSOEconItem ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOEconItemImpl(handle, isManuallyAllocated); + + public ulong Id { get; set; } + public uint AccountId { get; set; } + public uint Inventory { get; set; } + public uint DefIndex { get; set; } + public uint Quantity { get; set; } + public uint Level { get; set; } + public uint Quality { get; set; } + public uint Flags { get; set; } + public uint Origin { get; set; } + public string CustomName { get; set; } + public string CustomDesc { get; set; } + public IProtobufRepeatedFieldSubMessageType Attribute { get; } + public CSOEconItem InteriorItem { get; } + public bool InUse { get; set; } + public uint Style { get; set; } + public ulong OriginalId { get; set; } + public IProtobufRepeatedFieldSubMessageType EquippedState { get; } + public uint Rarity { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconItemAttribute.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconItemAttribute.cs index df26c48ae..2fb1a94c1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconItemAttribute.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconItemAttribute.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSOEconItemAttribute : ITypedProtobuf { - static CSOEconItemAttribute ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOEconItemAttributeImpl(handle, isManuallyAllocated); - - - public uint DefIndex { get; set; } - - - public uint Value { get; set; } - - - public byte[] ValueBytes { get; set; } + static CSOEconItemAttribute ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOEconItemAttributeImpl(handle, isManuallyAllocated); -} + public uint DefIndex { get; set; } + public uint Value { get; set; } + public byte[] ValueBytes { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconItemDropRateBonus.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconItemDropRateBonus.cs index 933a3bf84..103150963 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconItemDropRateBonus.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconItemDropRateBonus.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,24 +6,12 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSOEconItemDropRateBonus : ITypedProtobuf { - static CSOEconItemDropRateBonus ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOEconItemDropRateBonusImpl(handle, isManuallyAllocated); - - - public uint AccountId { get; set; } - - - public uint ExpirationDate { get; set; } - - - public float Bonus { get; set; } - - - public uint BonusCount { get; set; } - - - public ulong ItemId { get; set; } - - - public uint DefIndex { get; set; } - -} + static CSOEconItemDropRateBonus ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOEconItemDropRateBonusImpl(handle, isManuallyAllocated); + + public uint AccountId { get; set; } + public uint ExpirationDate { get; set; } + public float Bonus { get; set; } + public uint BonusCount { get; set; } + public ulong ItemId { get; set; } + public uint DefIndex { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconItemEquipped.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconItemEquipped.cs index 1ae7ee49c..9aaf832b3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconItemEquipped.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconItemEquipped.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSOEconItemEquipped : ITypedProtobuf { - static CSOEconItemEquipped ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOEconItemEquippedImpl(handle, isManuallyAllocated); - - - public uint NewClass { get; set; } - - - public uint NewSlot { get; set; } + static CSOEconItemEquipped ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOEconItemEquippedImpl(handle, isManuallyAllocated); -} + public uint NewClass { get; set; } + public uint NewSlot { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconItemEventTicket.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconItemEventTicket.cs index 707c1be6c..3a7fd9b06 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconItemEventTicket.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconItemEventTicket.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSOEconItemEventTicket : ITypedProtobuf { - static CSOEconItemEventTicket ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOEconItemEventTicketImpl(handle, isManuallyAllocated); - - - public uint AccountId { get; set; } - - - public uint EventId { get; set; } - - - public ulong ItemId { get; set; } + static CSOEconItemEventTicket ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOEconItemEventTicketImpl(handle, isManuallyAllocated); -} + public uint AccountId { get; set; } + public uint EventId { get; set; } + public ulong ItemId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconItemLeagueViewPass.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconItemLeagueViewPass.cs index c1b4f0a18..0894eb389 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconItemLeagueViewPass.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconItemLeagueViewPass.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSOEconItemLeagueViewPass : ITypedProtobuf { - static CSOEconItemLeagueViewPass ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOEconItemLeagueViewPassImpl(handle, isManuallyAllocated); - - - public uint AccountId { get; set; } - - - public uint LeagueId { get; set; } - - - public uint Admin { get; set; } - - - public uint Itemindex { get; set; } + static CSOEconItemLeagueViewPass ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOEconItemLeagueViewPassImpl(handle, isManuallyAllocated); -} + public uint AccountId { get; set; } + public uint LeagueId { get; set; } + public uint Admin { get; set; } + public uint Itemindex { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconRentalHistory.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconRentalHistory.cs index 9e1768f17..4460b47ab 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconRentalHistory.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOEconRentalHistory.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,21 +6,11 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSOEconRentalHistory : ITypedProtobuf { - static CSOEconRentalHistory ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOEconRentalHistoryImpl(handle, isManuallyAllocated); - - - public uint AccountId { get; set; } - - - public ulong CrateItemId { get; set; } - - - public uint CrateDefIndex { get; set; } - - - public uint IssueDate { get; set; } - - - public uint ExpirationDate { get; set; } - -} + static CSOEconRentalHistory ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOEconRentalHistoryImpl(handle, isManuallyAllocated); + + public uint AccountId { get; set; } + public ulong CrateItemId { get; set; } + public uint CrateDefIndex { get; set; } + public uint IssueDate { get; set; } + public uint ExpirationDate { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOGameAccountSteamChina.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOGameAccountSteamChina.cs index dff8b1d8b..2f3ff151e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOGameAccountSteamChina.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOGameAccountSteamChina.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSOGameAccountSteamChina : ITypedProtobuf { - static CSOGameAccountSteamChina ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOGameAccountSteamChinaImpl(handle, isManuallyAllocated); - - - public uint TimeLastUpdate { get; set; } - - - public uint TimeCommsBan { get; set; } - - - public uint TimePlayBan { get; set; } + static CSOGameAccountSteamChina ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOGameAccountSteamChinaImpl(handle, isManuallyAllocated); -} + public uint TimeLastUpdate { get; set; } + public uint TimeCommsBan { get; set; } + public uint TimePlayBan { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOItemCriteria.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOItemCriteria.cs index ed2875866..8332fd927 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOItemCriteria.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOItemCriteria.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,39 +6,17 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSOItemCriteria : ITypedProtobuf { - static CSOItemCriteria ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOItemCriteriaImpl(handle, isManuallyAllocated); - - - public uint ItemLevel { get; set; } - - - public int ItemQuality { get; set; } - - - public bool ItemLevelSet { get; set; } - - - public bool ItemQualitySet { get; set; } - - - public uint InitialInventory { get; set; } - - - public uint InitialQuantity { get; set; } - - - public bool IgnoreEnabledFlag { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Conditions { get; } - - - public int ItemRarity { get; set; } - - - public bool ItemRaritySet { get; set; } - - - public bool RecentOnly { get; set; } - -} + static CSOItemCriteria ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOItemCriteriaImpl(handle, isManuallyAllocated); + + public uint ItemLevel { get; set; } + public int ItemQuality { get; set; } + public bool ItemLevelSet { get; set; } + public bool ItemQualitySet { get; set; } + public uint InitialInventory { get; set; } + public uint InitialQuantity { get; set; } + public bool IgnoreEnabledFlag { get; set; } + public IProtobufRepeatedFieldSubMessageType Conditions { get; } + public int ItemRarity { get; set; } + public bool ItemRaritySet { get; set; } + public bool RecentOnly { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOItemCriteriaCondition.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOItemCriteriaCondition.cs index b595b39d0..d674a6801 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOItemCriteriaCondition.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOItemCriteriaCondition.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,21 +6,11 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSOItemCriteriaCondition : ITypedProtobuf { - static CSOItemCriteriaCondition ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOItemCriteriaConditionImpl(handle, isManuallyAllocated); - - - public int Op { get; set; } - - - public string Field { get; set; } - - - public bool Required { get; set; } - - - public float FloatValue { get; set; } - - - public string StringValue { get; set; } - -} + static CSOItemCriteriaCondition ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOItemCriteriaConditionImpl(handle, isManuallyAllocated); + + public int Op { get; set; } + public string Field { get; set; } + public bool Required { get; set; } + public float FloatValue { get; set; } + public string StringValue { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOItemRecipe.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOItemRecipe.cs index 1cc425984..ea17cacbb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOItemRecipe.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOItemRecipe.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,63 +6,25 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSOItemRecipe : ITypedProtobuf { - static CSOItemRecipe ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOItemRecipeImpl(handle, isManuallyAllocated); - - - public uint DefIndex { get; set; } - - - public string Name { get; set; } - - - public string NA { get; set; } - - - public string DescInputs { get; set; } - - - public string DescOutputs { get; set; } - - - public string DiA { get; set; } - - - public string DiB { get; set; } - - - public string DiC { get; set; } - - - public string DoA { get; set; } - - - public string DoB { get; set; } - - - public string DoC { get; set; } - - - public bool RequiresAllSameClass { get; set; } - - - public bool RequiresAllSameSlot { get; set; } - - - public int ClassUsageForOutput { get; set; } - - - public int SlotUsageForOutput { get; set; } - - - public int SetForOutput { get; set; } - - - public IProtobufRepeatedFieldSubMessageType InputItemsCriteria { get; } - - - public IProtobufRepeatedFieldSubMessageType OutputItemsCriteria { get; } - - - public IProtobufRepeatedFieldValueType InputItemDupeCounts { get; } - -} + static CSOItemRecipe ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOItemRecipeImpl(handle, isManuallyAllocated); + + public uint DefIndex { get; set; } + public string Name { get; set; } + public string NA { get; set; } + public string DescInputs { get; set; } + public string DescOutputs { get; set; } + public string DiA { get; set; } + public string DiB { get; set; } + public string DiC { get; set; } + public string DoA { get; set; } + public string DoB { get; set; } + public string DoC { get; set; } + public bool RequiresAllSameClass { get; set; } + public bool RequiresAllSameSlot { get; set; } + public int ClassUsageForOutput { get; set; } + public int SlotUsageForOutput { get; set; } + public int SetForOutput { get; set; } + public IProtobufRepeatedFieldSubMessageType InputItemsCriteria { get; } + public IProtobufRepeatedFieldSubMessageType OutputItemsCriteria { get; } + public IProtobufRepeatedFieldValueType InputItemDupeCounts { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOLobbyInvite.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOLobbyInvite.cs index affa932fa..c5ef6ddd8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOLobbyInvite.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOLobbyInvite.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSOLobbyInvite : ITypedProtobuf { - static CSOLobbyInvite ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOLobbyInviteImpl(handle, isManuallyAllocated); - - - public ulong GroupId { get; set; } - - - public ulong SenderId { get; set; } - - - public string SenderName { get; set; } + static CSOLobbyInvite ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOLobbyInviteImpl(handle, isManuallyAllocated); -} + public ulong GroupId { get; set; } + public ulong SenderId { get; set; } + public string SenderName { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOPartyInvite.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOPartyInvite.cs index a687d02ee..b52a835dc 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOPartyInvite.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOPartyInvite.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSOPartyInvite : ITypedProtobuf { - static CSOPartyInvite ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOPartyInviteImpl(handle, isManuallyAllocated); - - - public ulong GroupId { get; set; } - - - public ulong SenderId { get; set; } - - - public string SenderName { get; set; } + static CSOPartyInvite ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOPartyInviteImpl(handle, isManuallyAllocated); -} + public ulong GroupId { get; set; } + public ulong SenderId { get; set; } + public string SenderName { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOPersonaDataPublic.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOPersonaDataPublic.cs index 78c650fc5..31603055f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOPersonaDataPublic.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOPersonaDataPublic.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,21 +6,11 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSOPersonaDataPublic : ITypedProtobuf { - static CSOPersonaDataPublic ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOPersonaDataPublicImpl(handle, isManuallyAllocated); - - - public int PlayerLevel { get; set; } - - - public PlayerCommendationInfo Commendation { get; } - - - public bool ElevatedState { get; set; } - - - public uint XpTrailTimestampRefresh { get; set; } - - - public uint XpTrailLevel { get; set; } - -} + static CSOPersonaDataPublic ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOPersonaDataPublicImpl(handle, isManuallyAllocated); + + public int PlayerLevel { get; set; } + public PlayerCommendationInfo Commendation { get; } + public bool ElevatedState { get; set; } + public uint XpTrailTimestampRefresh { get; set; } + public uint XpTrailLevel { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOQuestProgress.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOQuestProgress.cs index e8113f228..9fe4ec72f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOQuestProgress.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOQuestProgress.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSOQuestProgress : ITypedProtobuf { - static CSOQuestProgress ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOQuestProgressImpl(handle, isManuallyAllocated); - - - public uint Questid { get; set; } - - - public uint PointsRemaining { get; set; } - - - public uint BonusPoints { get; set; } + static CSOQuestProgress ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOQuestProgressImpl(handle, isManuallyAllocated); -} + public uint Questid { get; set; } + public uint PointsRemaining { get; set; } + public uint BonusPoints { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOVolatileItemClaimedRewards.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOVolatileItemClaimedRewards.cs index 30df21ea4..4c6d2a296 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOVolatileItemClaimedRewards.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOVolatileItemClaimedRewards.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSOVolatileItemClaimedRewards : ITypedProtobuf { - static CSOVolatileItemClaimedRewards ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOVolatileItemClaimedRewardsImpl(handle, isManuallyAllocated); - - - public uint Defidx { get; set; } - - - public IProtobufRepeatedFieldValueType Reward { get; } - - - public IProtobufRepeatedFieldValueType GenerationTime { get; } + static CSOVolatileItemClaimedRewards ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOVolatileItemClaimedRewardsImpl(handle, isManuallyAllocated); -} + public uint Defidx { get; set; } + public IProtobufRepeatedFieldValueType Reward { get; } + public IProtobufRepeatedFieldValueType GenerationTime { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOVolatileItemOffer.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOVolatileItemOffer.cs index 274ee1366..57a520d24 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOVolatileItemOffer.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSOVolatileItemOffer.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSOVolatileItemOffer : ITypedProtobuf { - static CSOVolatileItemOffer ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOVolatileItemOfferImpl(handle, isManuallyAllocated); - - - public uint Defidx { get; set; } - - - public IProtobufRepeatedFieldValueType FauxItemid { get; } - - - public IProtobufRepeatedFieldValueType GenerationTime { get; } + static CSOVolatileItemOffer ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSOVolatileItemOfferImpl(handle, isManuallyAllocated); -} + public uint Defidx { get; set; } + public IProtobufRepeatedFieldValueType FauxItemid { get; } + public IProtobufRepeatedFieldValueType GenerationTime { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsgList_GameEvents.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsgList_GameEvents.cs index 1b0780f2a..8b645cbab 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsgList_GameEvents.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsgList_GameEvents.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSVCMsgList_GameEvents : ITypedProtobuf { - static CSVCMsgList_GameEvents ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsgList_GameEventsImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType Events { get; } + static CSVCMsgList_GameEvents ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsgList_GameEventsImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType Events { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsgList_GameEvents_event_t.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsgList_GameEvents_event_t.cs index 21090f2ce..446eda802 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsgList_GameEvents_event_t.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsgList_GameEvents_event_t.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSVCMsgList_GameEvents_event_t : ITypedProtobuf { - static CSVCMsgList_GameEvents_event_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsgList_GameEvents_event_tImpl(handle, isManuallyAllocated); - - - public int Tick { get; set; } - - - public CSVCMsg_GameEvent Event { get; } + static CSVCMsgList_GameEvents_event_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsgList_GameEvents_event_tImpl(handle, isManuallyAllocated); -} + public int Tick { get; set; } + public CSVCMsg_GameEvent Event { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_BSPDecal.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_BSPDecal.cs index 948eaebd8..a6381edce 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_BSPDecal.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_BSPDecal.cs @@ -1,32 +1,20 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_BSPDecal : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 53; - - static string INetMessage.MessageName => "CSVCMsg_BSPDecal"; - - static CSVCMsg_BSPDecal ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_BSPDecalImpl(handle, isManuallyAllocated); - - - public Vector Pos { get; set; } - - - public int DecalTextureIndex { get; set; } - - - public int EntityIndex { get; set; } - - - public int ModelIndex { get; set; } + static int INetMessage.MessageId => 53; + static string INetMessage.MessageName => "CSVCMsg_BSPDecal"; - public bool LowPriority { get; set; } + static CSVCMsg_BSPDecal ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_BSPDecalImpl(handle, isManuallyAllocated); -} + public Vector Pos { get; set; } + public int DecalTextureIndex { get; set; } + public int EntityIndex { get; set; } + public int ModelIndex { get; set; } + public bool LowPriority { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_Broadcast_Command.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_Broadcast_Command.cs index bf549c7d2..fad5433e9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_Broadcast_Command.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_Broadcast_Command.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_Broadcast_Command : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 74; - - static string INetMessage.MessageName => "CSVCMsg_Broadcast_Command"; - - static CSVCMsg_Broadcast_Command ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_Broadcast_CommandImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 74; + static string INetMessage.MessageName => "CSVCMsg_Broadcast_Command"; - public string Cmd { get; set; } + static CSVCMsg_Broadcast_Command ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_Broadcast_CommandImpl(handle, isManuallyAllocated); -} + public string Cmd { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_ClassInfo.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_ClassInfo.cs index 9bab2c4be..dbd26b1f9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_ClassInfo.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_ClassInfo.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_ClassInfo : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 42; - - static string INetMessage.MessageName => "CSVCMsg_ClassInfo"; - - static CSVCMsg_ClassInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_ClassInfoImpl(handle, isManuallyAllocated); - - - public bool CreateOnClient { get; set; } + static int INetMessage.MessageId => 42; + static string INetMessage.MessageName => "CSVCMsg_ClassInfo"; - public IProtobufRepeatedFieldSubMessageType Classes { get; } + static CSVCMsg_ClassInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_ClassInfoImpl(handle, isManuallyAllocated); -} + public bool CreateOnClient { get; set; } + public IProtobufRepeatedFieldSubMessageType Classes { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_ClassInfo_class_t.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_ClassInfo_class_t.cs index 34b883e8d..d178913d7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_ClassInfo_class_t.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_ClassInfo_class_t.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSVCMsg_ClassInfo_class_t : ITypedProtobuf { - static CSVCMsg_ClassInfo_class_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_ClassInfo_class_tImpl(handle, isManuallyAllocated); - - - public int ClassId { get; set; } - - - public string ClassName { get; set; } + static CSVCMsg_ClassInfo_class_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_ClassInfo_class_tImpl(handle, isManuallyAllocated); -} + public int ClassId { get; set; } + public string ClassName { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_ClearAllStringTables.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_ClearAllStringTables.cs index 8e846f746..43d522411 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_ClearAllStringTables.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_ClearAllStringTables.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_ClearAllStringTables : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 51; - - static string INetMessage.MessageName => "CSVCMsg_ClearAllStringTables"; - - static CSVCMsg_ClearAllStringTables ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_ClearAllStringTablesImpl(handle, isManuallyAllocated); - - - public string Mapname { get; set; } + static int INetMessage.MessageId => 51; + static string INetMessage.MessageName => "CSVCMsg_ClearAllStringTables"; - public bool CreateTablesSkipped { get; set; } + static CSVCMsg_ClearAllStringTables ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_ClearAllStringTablesImpl(handle, isManuallyAllocated); -} + public string Mapname { get; set; } + public bool CreateTablesSkipped { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_CmdKeyValues.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_CmdKeyValues.cs index 351cf29c1..39a75a4da 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_CmdKeyValues.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_CmdKeyValues.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_CmdKeyValues : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 52; - - static string INetMessage.MessageName => "CSVCMsg_CmdKeyValues"; - - static CSVCMsg_CmdKeyValues ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_CmdKeyValuesImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 52; + static string INetMessage.MessageName => "CSVCMsg_CmdKeyValues"; - public byte[] Data { get; set; } + static CSVCMsg_CmdKeyValues ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_CmdKeyValuesImpl(handle, isManuallyAllocated); -} + public byte[] Data { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_CreateStringTable.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_CreateStringTable.cs index 4510a2485..eaa3c1709 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_CreateStringTable.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_CreateStringTable.cs @@ -1,47 +1,25 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_CreateStringTable : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 44; - - static string INetMessage.MessageName => "CSVCMsg_CreateStringTable"; - - static CSVCMsg_CreateStringTable ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_CreateStringTableImpl(handle, isManuallyAllocated); - - - public string Name { get; set; } - - - public int NumEntries { get; set; } - - - public bool UserDataFixedSize { get; set; } - - - public int UserDataSize { get; set; } - - - public int UserDataSizeBits { get; set; } - - - public int Flags { get; set; } - - - public byte[] StringData { get; set; } - - - public int UncompressedSize { get; set; } - - - public bool DataCompressed { get; set; } - - - public bool UsingVarintBitcounts { get; set; } - -} + static int INetMessage.MessageId => 44; + + static string INetMessage.MessageName => "CSVCMsg_CreateStringTable"; + + static CSVCMsg_CreateStringTable ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_CreateStringTableImpl(handle, isManuallyAllocated); + + public string Name { get; set; } + public int NumEntries { get; set; } + public bool UserDataFixedSize { get; set; } + public int UserDataSize { get; set; } + public int UserDataSizeBits { get; set; } + public int Flags { get; set; } + public byte[] StringData { get; set; } + public int UncompressedSize { get; set; } + public bool DataCompressed { get; set; } + public bool UsingVarintBitcounts { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_CrosshairAngle.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_CrosshairAngle.cs index a8b5c641a..5b69f68a8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_CrosshairAngle.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_CrosshairAngle.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSVCMsg_CrosshairAngle : ITypedProtobuf { - static CSVCMsg_CrosshairAngle ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_CrosshairAngleImpl(handle, isManuallyAllocated); - - - public QAngle Angle { get; set; } + static CSVCMsg_CrosshairAngle ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_CrosshairAngleImpl(handle, isManuallyAllocated); -} + public QAngle Angle { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_FixAngle.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_FixAngle.cs index 2bc3e84b5..fdccc9508 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_FixAngle.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_FixAngle.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSVCMsg_FixAngle : ITypedProtobuf { - static CSVCMsg_FixAngle ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_FixAngleImpl(handle, isManuallyAllocated); - - - public bool Relative { get; set; } - - - public QAngle Angle { get; set; } + static CSVCMsg_FixAngle ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_FixAngleImpl(handle, isManuallyAllocated); -} + public bool Relative { get; set; } + public QAngle Angle { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_FlattenedSerializer.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_FlattenedSerializer.cs index b73f9cd54..148ddac6e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_FlattenedSerializer.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_FlattenedSerializer.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_FlattenedSerializer : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 41; - - static string INetMessage.MessageName => "CSVCMsg_FlattenedSerializer"; - - static CSVCMsg_FlattenedSerializer ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_FlattenedSerializerImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType Serializers { get; } - - - public IProtobufRepeatedFieldValueType Symbols { get; } + static int INetMessage.MessageId => 41; + static string INetMessage.MessageName => "CSVCMsg_FlattenedSerializer"; - public IProtobufRepeatedFieldSubMessageType Fields { get; } + static CSVCMsg_FlattenedSerializer ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_FlattenedSerializerImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType Serializers { get; } + public IProtobufRepeatedFieldValueType Symbols { get; } + public IProtobufRepeatedFieldSubMessageType Fields { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_FullFrameSplit.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_FullFrameSplit.cs index b0d04536c..e6c94304b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_FullFrameSplit.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_FullFrameSplit.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_FullFrameSplit : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 70; - - static string INetMessage.MessageName => "CSVCMsg_FullFrameSplit"; - - static CSVCMsg_FullFrameSplit ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_FullFrameSplitImpl(handle, isManuallyAllocated); - - - public int Tick { get; set; } - - - public int Section { get; set; } - - - public int Total { get; set; } + static int INetMessage.MessageId => 70; + static string INetMessage.MessageName => "CSVCMsg_FullFrameSplit"; - public byte[] Data { get; set; } + static CSVCMsg_FullFrameSplit ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_FullFrameSplitImpl(handle, isManuallyAllocated); -} + public int Tick { get; set; } + public int Section { get; set; } + public int Total { get; set; } + public byte[] Data { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_GameEvent.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_GameEvent.cs index d63bdeadc..0f53415ea 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_GameEvent.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_GameEvent.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSVCMsg_GameEvent : ITypedProtobuf { - static CSVCMsg_GameEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_GameEventImpl(handle, isManuallyAllocated); - - - public string EventName { get; set; } - - - public int Eventid { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Keys { get; } + static CSVCMsg_GameEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_GameEventImpl(handle, isManuallyAllocated); -} + public string EventName { get; set; } + public int Eventid { get; set; } + public IProtobufRepeatedFieldSubMessageType Keys { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_GameEventList.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_GameEventList.cs index 546503889..0a60c20b2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_GameEventList.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_GameEventList.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSVCMsg_GameEventList : ITypedProtobuf { - static CSVCMsg_GameEventList ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_GameEventListImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType Descriptors { get; } + static CSVCMsg_GameEventList ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_GameEventListImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType Descriptors { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_GameEventList_descriptor_t.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_GameEventList_descriptor_t.cs index 5054b2592..bef3c8248 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_GameEventList_descriptor_t.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_GameEventList_descriptor_t.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSVCMsg_GameEventList_descriptor_t : ITypedProtobuf { - static CSVCMsg_GameEventList_descriptor_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_GameEventList_descriptor_tImpl(handle, isManuallyAllocated); - - - public int Eventid { get; set; } - - - public string Name { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Keys { get; } + static CSVCMsg_GameEventList_descriptor_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_GameEventList_descriptor_tImpl(handle, isManuallyAllocated); -} + public int Eventid { get; set; } + public string Name { get; set; } + public IProtobufRepeatedFieldSubMessageType Keys { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_GameEventList_key_t.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_GameEventList_key_t.cs index 69b583a57..dfb5fdae5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_GameEventList_key_t.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_GameEventList_key_t.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSVCMsg_GameEventList_key_t : ITypedProtobuf { - static CSVCMsg_GameEventList_key_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_GameEventList_key_tImpl(handle, isManuallyAllocated); - - - public int Type { get; set; } - - - public string Name { get; set; } + static CSVCMsg_GameEventList_key_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_GameEventList_key_tImpl(handle, isManuallyAllocated); -} + public int Type { get; set; } + public string Name { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_GameEvent_key_t.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_GameEvent_key_t.cs index 8eee09ee8..30cd6fb1e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_GameEvent_key_t.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_GameEvent_key_t.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,30 +6,14 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSVCMsg_GameEvent_key_t : ITypedProtobuf { - static CSVCMsg_GameEvent_key_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_GameEvent_key_tImpl(handle, isManuallyAllocated); - - - public int Type { get; set; } - - - public string ValString { get; set; } - - - public float ValFloat { get; set; } - - - public int ValLong { get; set; } - - - public int ValShort { get; set; } - - - public int ValByte { get; set; } - - - public bool ValBool { get; set; } - - - public ulong ValUint64 { get; set; } - -} + static CSVCMsg_GameEvent_key_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_GameEvent_key_tImpl(handle, isManuallyAllocated); + + public int Type { get; set; } + public string ValString { get; set; } + public float ValFloat { get; set; } + public int ValLong { get; set; } + public int ValShort { get; set; } + public int ValByte { get; set; } + public bool ValBool { get; set; } + public ulong ValUint64 { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_GameSessionConfiguration.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_GameSessionConfiguration.cs index 91ea4cef1..c25b56527 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_GameSessionConfiguration.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_GameSessionConfiguration.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,63 +6,25 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSVCMsg_GameSessionConfiguration : ITypedProtobuf { - static CSVCMsg_GameSessionConfiguration ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_GameSessionConfigurationImpl(handle, isManuallyAllocated); - - - public bool IsMultiplayer { get; set; } - - - public bool IsLoadsavegame { get; set; } - - - public bool IsBackgroundMap { get; set; } - - - public bool IsHeadless { get; set; } - - - public uint MinClientLimit { get; set; } - - - public uint MaxClientLimit { get; set; } - - - public uint MaxClients { get; set; } - - - public uint TickInterval { get; set; } - - - public string Hostname { get; set; } - - - public string Savegamename { get; set; } - - - public string S1Mapname { get; set; } - - - public string Gamemode { get; set; } - - - public string ServerIpAddress { get; set; } - - - public byte[] Data { get; set; } - - - public bool IsLocalonly { get; set; } - - - public bool NoSteamServer { get; set; } - - - public bool IsTransition { get; set; } - - - public string Previouslevel { get; set; } - - - public string Landmarkname { get; set; } - -} + static CSVCMsg_GameSessionConfiguration ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_GameSessionConfigurationImpl(handle, isManuallyAllocated); + + public bool IsMultiplayer { get; set; } + public bool IsLoadsavegame { get; set; } + public bool IsBackgroundMap { get; set; } + public bool IsHeadless { get; set; } + public uint MinClientLimit { get; set; } + public uint MaxClientLimit { get; set; } + public uint MaxClients { get; set; } + public uint TickInterval { get; set; } + public string Hostname { get; set; } + public string Savegamename { get; set; } + public string S1Mapname { get; set; } + public string Gamemode { get; set; } + public string ServerIpAddress { get; set; } + public byte[] Data { get; set; } + public bool IsLocalonly { get; set; } + public bool NoSteamServer { get; set; } + public bool IsTransition { get; set; } + public string Previouslevel { get; set; } + public string Landmarkname { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_GetCvarValue.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_GetCvarValue.cs index d70a27850..3be3c501f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_GetCvarValue.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_GetCvarValue.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_GetCvarValue : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 58; - - static string INetMessage.MessageName => "CSVCMsg_GetCvarValue"; - - static CSVCMsg_GetCvarValue ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_GetCvarValueImpl(handle, isManuallyAllocated); - - - public int Cookie { get; set; } + static int INetMessage.MessageId => 58; + static string INetMessage.MessageName => "CSVCMsg_GetCvarValue"; - public string CvarName { get; set; } + static CSVCMsg_GetCvarValue ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_GetCvarValueImpl(handle, isManuallyAllocated); -} + public int Cookie { get; set; } + public string CvarName { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_HLTVStatus.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_HLTVStatus.cs index 2a136bde4..3229e463c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_HLTVStatus.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_HLTVStatus.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_HLTVStatus : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 62; - - static string INetMessage.MessageName => "CSVCMsg_HLTVStatus"; - - static CSVCMsg_HLTVStatus ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_HLTVStatusImpl(handle, isManuallyAllocated); - - - public string Master { get; set; } - - - public int Clients { get; set; } - - - public int Slots { get; set; } + static int INetMessage.MessageId => 62; + static string INetMessage.MessageName => "CSVCMsg_HLTVStatus"; - public int Proxies { get; set; } + static CSVCMsg_HLTVStatus ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_HLTVStatusImpl(handle, isManuallyAllocated); -} + public string Master { get; set; } + public int Clients { get; set; } + public int Slots { get; set; } + public int Proxies { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_HltvFixupOperatorStatus.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_HltvFixupOperatorStatus.cs index 93f84d1cb..4449a1ee5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_HltvFixupOperatorStatus.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_HltvFixupOperatorStatus.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_HltvFixupOperatorStatus : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 75; - - static string INetMessage.MessageName => "CSVCMsg_HltvFixupOperatorStatus"; - - static CSVCMsg_HltvFixupOperatorStatus ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_HltvFixupOperatorStatusImpl(handle, isManuallyAllocated); - - - public uint Mode { get; set; } + static int INetMessage.MessageId => 75; + static string INetMessage.MessageName => "CSVCMsg_HltvFixupOperatorStatus"; - public string OverrideOperatorName { get; set; } + static CSVCMsg_HltvFixupOperatorStatus ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_HltvFixupOperatorStatusImpl(handle, isManuallyAllocated); -} + public uint Mode { get; set; } + public string OverrideOperatorName { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_HltvReplay.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_HltvReplay.cs index c97f9ad83..375205f5a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_HltvReplay.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_HltvReplay.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,30 +6,14 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSVCMsg_HltvReplay : ITypedProtobuf { - static CSVCMsg_HltvReplay ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_HltvReplayImpl(handle, isManuallyAllocated); - - - public int Delay { get; set; } - - - public int PrimaryTarget { get; set; } - - - public int ReplayStopAt { get; set; } - - - public int ReplayStartAt { get; set; } - - - public int ReplaySlowdownBegin { get; set; } - - - public int ReplaySlowdownEnd { get; set; } - - - public float ReplaySlowdownRate { get; set; } - - - public int Reason { get; set; } - -} + static CSVCMsg_HltvReplay ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_HltvReplayImpl(handle, isManuallyAllocated); + + public int Delay { get; set; } + public int PrimaryTarget { get; set; } + public int ReplayStopAt { get; set; } + public int ReplayStartAt { get; set; } + public int ReplaySlowdownBegin { get; set; } + public int ReplaySlowdownEnd { get; set; } + public float ReplaySlowdownRate { get; set; } + public int Reason { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_Menu.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_Menu.cs index e6099d9fa..7f00c015d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_Menu.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_Menu.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_Menu : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 57; - - static string INetMessage.MessageName => "CSVCMsg_Menu"; - - static CSVCMsg_Menu ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_MenuImpl(handle, isManuallyAllocated); - - - public int DialogType { get; set; } + static int INetMessage.MessageId => 57; + static string INetMessage.MessageName => "CSVCMsg_Menu"; - public byte[] MenuKeyValues { get; set; } + static CSVCMsg_Menu ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_MenuImpl(handle, isManuallyAllocated); -} + public int DialogType { get; set; } + public byte[] MenuKeyValues { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_NextMsgPredicted.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_NextMsgPredicted.cs index 6f4bfc3f9..e9ba03072 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_NextMsgPredicted.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_NextMsgPredicted.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_NextMsgPredicted : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 77; - - static string INetMessage.MessageName => "CSVCMsg_NextMsgPredicted"; - - static CSVCMsg_NextMsgPredicted ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_NextMsgPredictedImpl(handle, isManuallyAllocated); - - - public int PredictedByPlayerSlot { get; set; } + static int INetMessage.MessageId => 77; + static string INetMessage.MessageName => "CSVCMsg_NextMsgPredicted"; - public uint MessageTypeId { get; set; } + static CSVCMsg_NextMsgPredicted ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_NextMsgPredictedImpl(handle, isManuallyAllocated); -} + public int PredictedByPlayerSlot { get; set; } + public uint MessageTypeId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_PacketEntities.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_PacketEntities.cs index 8cccfa843..0ec11a7db 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_PacketEntities.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_PacketEntities.cs @@ -1,83 +1,37 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_PacketEntities : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 55; - - static string INetMessage.MessageName => "CSVCMsg_PacketEntities"; - - static CSVCMsg_PacketEntities ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_PacketEntitiesImpl(handle, isManuallyAllocated); - - - public int MaxEntries { get; set; } - - - public int UpdatedEntries { get; set; } - - - public bool LegacyIsDelta { get; set; } - - - public bool UpdateBaseline { get; set; } - - - public int Baseline { get; set; } - - - public int DeltaFrom { get; set; } - - - public byte[] EntityData { get; set; } - - - public bool PendingFullFrame { get; set; } - - - public uint ActiveSpawngroupHandle { get; set; } - - - public uint MaxSpawngroupCreationsequence { get; set; } - - - public uint LastCmdNumberExecuted { get; set; } - - - public int LastCmdNumberRecvDelta { get; set; } - - - public uint ServerTick { get; set; } - - - public byte[] SerializedEntities { get; set; } - - - public IProtobufRepeatedFieldSubMessageType AlternateBaselines { get; } - - - public uint HasPvsVisBitsDeprecated { get; set; } - - - public IProtobufRepeatedFieldValueType CmdRecvStatus { get; } - - - public CSVCMsg_PacketEntities_non_transmitted_entities_t NonTransmittedEntities { get; } - - - public uint CqStarvedCommandTicks { get; set; } - - - public uint CqDiscardedCommandTicks { get; set; } - - - public CSVCMsg_PacketEntities_outofpvs_entity_updates_t OutofpvsEntityUpdates { get; } - - - public byte[] DevPadding { get; set; } - -} + static int INetMessage.MessageId => 55; + + static string INetMessage.MessageName => "CSVCMsg_PacketEntities"; + + static CSVCMsg_PacketEntities ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_PacketEntitiesImpl(handle, isManuallyAllocated); + + public int MaxEntries { get; set; } + public int UpdatedEntries { get; set; } + public bool LegacyIsDelta { get; set; } + public bool UpdateBaseline { get; set; } + public int Baseline { get; set; } + public int DeltaFrom { get; set; } + public byte[] EntityData { get; set; } + public bool PendingFullFrame { get; set; } + public uint ActiveSpawngroupHandle { get; set; } + public uint MaxSpawngroupCreationsequence { get; set; } + public uint LastCmdNumberExecuted { get; set; } + public int LastCmdNumberRecvDelta { get; set; } + public uint ServerTick { get; set; } + public byte[] SerializedEntities { get; set; } + public IProtobufRepeatedFieldSubMessageType AlternateBaselines { get; } + public uint HasPvsVisBitsDeprecated { get; set; } + public IProtobufRepeatedFieldValueType CmdRecvStatus { get; } + public CSVCMsg_PacketEntities_non_transmitted_entities_t NonTransmittedEntities { get; } + public uint CqStarvedCommandTicks { get; set; } + public uint CqDiscardedCommandTicks { get; set; } + public CSVCMsg_PacketEntities_outofpvs_entity_updates_t OutofpvsEntityUpdates { get; } + public byte[] DevPadding { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_PacketEntities_alternate_baseline_t.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_PacketEntities_alternate_baseline_t.cs index 2cdf800e4..07264a41c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_PacketEntities_alternate_baseline_t.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_PacketEntities_alternate_baseline_t.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSVCMsg_PacketEntities_alternate_baseline_t : ITypedProtobuf { - static CSVCMsg_PacketEntities_alternate_baseline_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_PacketEntities_alternate_baseline_tImpl(handle, isManuallyAllocated); - - - public int EntityIndex { get; set; } - - - public int BaselineIndex { get; set; } + static CSVCMsg_PacketEntities_alternate_baseline_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_PacketEntities_alternate_baseline_tImpl(handle, isManuallyAllocated); -} + public int EntityIndex { get; set; } + public int BaselineIndex { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_PacketEntities_non_transmitted_entities_t.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_PacketEntities_non_transmitted_entities_t.cs index 7f70604fd..751b778e5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_PacketEntities_non_transmitted_entities_t.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_PacketEntities_non_transmitted_entities_t.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSVCMsg_PacketEntities_non_transmitted_entities_t : ITypedProtobuf { - static CSVCMsg_PacketEntities_non_transmitted_entities_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_PacketEntities_non_transmitted_entities_tImpl(handle, isManuallyAllocated); - - - public int HeaderCount { get; set; } - - - public byte[] Data { get; set; } + static CSVCMsg_PacketEntities_non_transmitted_entities_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_PacketEntities_non_transmitted_entities_tImpl(handle, isManuallyAllocated); -} + public int HeaderCount { get; set; } + public byte[] Data { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_PacketEntities_outofpvs_entity_updates_t.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_PacketEntities_outofpvs_entity_updates_t.cs index ae0a34b9f..a30237ec7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_PacketEntities_outofpvs_entity_updates_t.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_PacketEntities_outofpvs_entity_updates_t.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSVCMsg_PacketEntities_outofpvs_entity_updates_t : ITypedProtobuf { - static CSVCMsg_PacketEntities_outofpvs_entity_updates_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_PacketEntities_outofpvs_entity_updates_tImpl(handle, isManuallyAllocated); - - - public int Count { get; set; } - - - public byte[] Data { get; set; } + static CSVCMsg_PacketEntities_outofpvs_entity_updates_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_PacketEntities_outofpvs_entity_updates_tImpl(handle, isManuallyAllocated); -} + public int Count { get; set; } + public byte[] Data { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_PacketReliable.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_PacketReliable.cs index cd6c4340b..9f3451d31 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_PacketReliable.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_PacketReliable.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_PacketReliable : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 61; - - static string INetMessage.MessageName => "CSVCMsg_PacketReliable"; - - static CSVCMsg_PacketReliable ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_PacketReliableImpl(handle, isManuallyAllocated); - - - public int Tick { get; set; } - - - public int Messagessize { get; set; } + static int INetMessage.MessageId => 61; + static string INetMessage.MessageName => "CSVCMsg_PacketReliable"; - public bool State { get; set; } + static CSVCMsg_PacketReliable ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_PacketReliableImpl(handle, isManuallyAllocated); -} + public int Tick { get; set; } + public int Messagessize { get; set; } + public bool State { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_PeerList.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_PeerList.cs index cd674225b..387607dde 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_PeerList.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_PeerList.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_PeerList : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 60; - - static string INetMessage.MessageName => "CSVCMsg_PeerList"; - - static CSVCMsg_PeerList ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_PeerListImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 60; + static string INetMessage.MessageName => "CSVCMsg_PeerList"; - public IProtobufRepeatedFieldSubMessageType Peer { get; } + static CSVCMsg_PeerList ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_PeerListImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType Peer { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_Prefetch.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_Prefetch.cs index dd8a66035..a2d115098 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_Prefetch.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_Prefetch.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_Prefetch : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 56; - - static string INetMessage.MessageName => "CSVCMsg_Prefetch"; - - static CSVCMsg_Prefetch ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_PrefetchImpl(handle, isManuallyAllocated); - - - public int SoundIndex { get; set; } + static int INetMessage.MessageId => 56; + static string INetMessage.MessageName => "CSVCMsg_Prefetch"; - public PrefetchType ResourceType { get; set; } + static CSVCMsg_Prefetch ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_PrefetchImpl(handle, isManuallyAllocated); -} + public int SoundIndex { get; set; } + public PrefetchType ResourceType { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_Print.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_Print.cs index d45830889..4b001a715 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_Print.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_Print.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_Print : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 48; - - static string INetMessage.MessageName => "CSVCMsg_Print"; - - static CSVCMsg_Print ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_PrintImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 48; + static string INetMessage.MessageName => "CSVCMsg_Print"; - public string Text { get; set; } + static CSVCMsg_Print ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_PrintImpl(handle, isManuallyAllocated); -} + public string Text { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_RconServerDetails.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_RconServerDetails.cs index 5a3795823..519581cad 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_RconServerDetails.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_RconServerDetails.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_RconServerDetails : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 71; - - static string INetMessage.MessageName => "CSVCMsg_RconServerDetails"; - - static CSVCMsg_RconServerDetails ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_RconServerDetailsImpl(handle, isManuallyAllocated); - - - public byte[] Token { get; set; } + static int INetMessage.MessageId => 71; + static string INetMessage.MessageName => "CSVCMsg_RconServerDetails"; - public string Details { get; set; } + static CSVCMsg_RconServerDetails ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_RconServerDetailsImpl(handle, isManuallyAllocated); -} + public byte[] Token { get; set; } + public string Details { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_SendTable.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_SendTable.cs index f799f81b3..92be4910d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_SendTable.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_SendTable.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSVCMsg_SendTable : ITypedProtobuf { - static CSVCMsg_SendTable ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_SendTableImpl(handle, isManuallyAllocated); - - - public bool IsEnd { get; set; } - - - public string NetTableName { get; set; } - - - public bool NeedsDecoder { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Props { get; } + static CSVCMsg_SendTable ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_SendTableImpl(handle, isManuallyAllocated); -} + public bool IsEnd { get; set; } + public string NetTableName { get; set; } + public bool NeedsDecoder { get; set; } + public IProtobufRepeatedFieldSubMessageType Props { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_SendTable_sendprop_t.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_SendTable_sendprop_t.cs index 0da8778d6..77baff876 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_SendTable_sendprop_t.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_SendTable_sendprop_t.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,33 +6,15 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSVCMsg_SendTable_sendprop_t : ITypedProtobuf { - static CSVCMsg_SendTable_sendprop_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_SendTable_sendprop_tImpl(handle, isManuallyAllocated); - - - public int Type { get; set; } - - - public string VarName { get; set; } - - - public int Flags { get; set; } - - - public int Priority { get; set; } - - - public string DtName { get; set; } - - - public int NumElements { get; set; } - - - public float LowValue { get; set; } - - - public float HighValue { get; set; } - - - public int NumBits { get; set; } - -} + static CSVCMsg_SendTable_sendprop_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_SendTable_sendprop_tImpl(handle, isManuallyAllocated); + + public int Type { get; set; } + public string VarName { get; set; } + public int Flags { get; set; } + public int Priority { get; set; } + public string DtName { get; set; } + public int NumElements { get; set; } + public float LowValue { get; set; } + public float HighValue { get; set; } + public int NumBits { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_ServerInfo.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_ServerInfo.cs index d85adf76f..8f361250b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_ServerInfo.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_ServerInfo.cs @@ -1,65 +1,31 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_ServerInfo : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 40; - - static string INetMessage.MessageName => "CSVCMsg_ServerInfo"; - - static CSVCMsg_ServerInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_ServerInfoImpl(handle, isManuallyAllocated); - - - public int Protocol { get; set; } - - - public int ServerCount { get; set; } - - - public bool IsDedicated { get; set; } - - - public bool IsHltv { get; set; } - - - public int COs { get; set; } - - - public int MaxClients { get; set; } - - - public int MaxClasses { get; set; } - - - public int PlayerSlot { get; set; } - - - public float TickInterval { get; set; } - - - public string GameDir { get; set; } - - - public string MapName { get; set; } - - - public string SkyName { get; set; } - - - public string HostName { get; set; } - - - public string AddonName { get; set; } - - - public CSVCMsg_GameSessionConfiguration GameSessionConfig { get; } - - - public byte[] GameSessionManifest { get; set; } - -} + static int INetMessage.MessageId => 40; + + static string INetMessage.MessageName => "CSVCMsg_ServerInfo"; + + static CSVCMsg_ServerInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_ServerInfoImpl(handle, isManuallyAllocated); + + public int Protocol { get; set; } + public int ServerCount { get; set; } + public bool IsDedicated { get; set; } + public bool IsHltv { get; set; } + public int COs { get; set; } + public int MaxClients { get; set; } + public int MaxClasses { get; set; } + public int PlayerSlot { get; set; } + public float TickInterval { get; set; } + public string GameDir { get; set; } + public string MapName { get; set; } + public string SkyName { get; set; } + public string HostName { get; set; } + public string AddonName { get; set; } + public CSVCMsg_GameSessionConfiguration GameSessionConfig { get; } + public byte[] GameSessionManifest { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_ServerSteamID.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_ServerSteamID.cs index 19a75dfed..898e8e045 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_ServerSteamID.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_ServerSteamID.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_ServerSteamID : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 63; - - static string INetMessage.MessageName => "CSVCMsg_ServerSteamID"; - - static CSVCMsg_ServerSteamID ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_ServerSteamIDImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 63; + static string INetMessage.MessageName => "CSVCMsg_ServerSteamID"; - public ulong SteamId { get; set; } + static CSVCMsg_ServerSteamID ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_ServerSteamIDImpl(handle, isManuallyAllocated); -} + public ulong SteamId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_SetPause.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_SetPause.cs index 348048151..ae2db51ec 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_SetPause.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_SetPause.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_SetPause : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 43; - - static string INetMessage.MessageName => "CSVCMsg_SetPause"; - - static CSVCMsg_SetPause ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_SetPauseImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 43; + static string INetMessage.MessageName => "CSVCMsg_SetPause"; - public bool Paused { get; set; } + static CSVCMsg_SetPause ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_SetPauseImpl(handle, isManuallyAllocated); -} + public bool Paused { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_SetView.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_SetView.cs index 3721ee3b0..b3b385b41 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_SetView.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_SetView.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_SetView : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 50; - - static string INetMessage.MessageName => "CSVCMsg_SetView"; - - static CSVCMsg_SetView ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_SetViewImpl(handle, isManuallyAllocated); - - - public int EntityIndex { get; set; } + static int INetMessage.MessageId => 50; + static string INetMessage.MessageName => "CSVCMsg_SetView"; - public int Slot { get; set; } + static CSVCMsg_SetView ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_SetViewImpl(handle, isManuallyAllocated); -} + public int EntityIndex { get; set; } + public int Slot { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_Sounds.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_Sounds.cs index cf255f51f..178ceb024 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_Sounds.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_Sounds.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_Sounds : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 49; - - static string INetMessage.MessageName => "CSVCMsg_Sounds"; - - static CSVCMsg_Sounds ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_SoundsImpl(handle, isManuallyAllocated); - - - public bool ReliableSound { get; set; } + static int INetMessage.MessageId => 49; + static string INetMessage.MessageName => "CSVCMsg_Sounds"; - public IProtobufRepeatedFieldSubMessageType Sounds { get; } + static CSVCMsg_Sounds ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_SoundsImpl(handle, isManuallyAllocated); -} + public bool ReliableSound { get; set; } + public IProtobufRepeatedFieldSubMessageType Sounds { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_Sounds_sounddata_t.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_Sounds_sounddata_t.cs index c09da31d1..7bc26d7e2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_Sounds_sounddata_t.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_Sounds_sounddata_t.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,63 +6,25 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSVCMsg_Sounds_sounddata_t : ITypedProtobuf { - static CSVCMsg_Sounds_sounddata_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_Sounds_sounddata_tImpl(handle, isManuallyAllocated); - - - public int OriginX { get; set; } - - - public int OriginY { get; set; } - - - public int OriginZ { get; set; } - - - public uint Volume { get; set; } - - - public float DelayValue { get; set; } - - - public int SequenceNumber { get; set; } - - - public int EntityIndex { get; set; } - - - public int Channel { get; set; } - - - public int Pitch { get; set; } - - - public int Flags { get; set; } - - - public uint SoundNum { get; set; } - - - public uint SoundNumHandle { get; set; } - - - public int SpeakerEntity { get; set; } - - - public int RandomSeed { get; set; } - - - public int SoundLevel { get; set; } - - - public bool IsSentence { get; set; } - - - public bool IsAmbient { get; set; } - - - public uint Guid { get; set; } - - - public ulong SoundResourceId { get; set; } - -} + static CSVCMsg_Sounds_sounddata_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_Sounds_sounddata_tImpl(handle, isManuallyAllocated); + + public int OriginX { get; set; } + public int OriginY { get; set; } + public int OriginZ { get; set; } + public uint Volume { get; set; } + public float DelayValue { get; set; } + public int SequenceNumber { get; set; } + public int EntityIndex { get; set; } + public int Channel { get; set; } + public int Pitch { get; set; } + public int Flags { get; set; } + public uint SoundNum { get; set; } + public uint SoundNumHandle { get; set; } + public int SpeakerEntity { get; set; } + public int RandomSeed { get; set; } + public int SoundLevel { get; set; } + public bool IsSentence { get; set; } + public bool IsAmbient { get; set; } + public uint Guid { get; set; } + public ulong SoundResourceId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_SplitScreen.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_SplitScreen.cs index 7d19c0af9..6fe9f8c0d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_SplitScreen.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_SplitScreen.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_SplitScreen : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 54; - - static string INetMessage.MessageName => "CSVCMsg_SplitScreen"; - - static CSVCMsg_SplitScreen ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_SplitScreenImpl(handle, isManuallyAllocated); - - - public ESplitScreenMessageType Type { get; set; } - - - public int Slot { get; set; } + static int INetMessage.MessageId => 54; + static string INetMessage.MessageName => "CSVCMsg_SplitScreen"; - public int PlayerIndex { get; set; } + static CSVCMsg_SplitScreen ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_SplitScreenImpl(handle, isManuallyAllocated); -} + public ESplitScreenMessageType Type { get; set; } + public int Slot { get; set; } + public int PlayerIndex { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_StopSound.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_StopSound.cs index 69a39b49b..8420165d9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_StopSound.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_StopSound.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_StopSound : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 59; - - static string INetMessage.MessageName => "CSVCMsg_StopSound"; - - static CSVCMsg_StopSound ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_StopSoundImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 59; + static string INetMessage.MessageName => "CSVCMsg_StopSound"; - public uint Guid { get; set; } + static CSVCMsg_StopSound ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_StopSoundImpl(handle, isManuallyAllocated); -} + public uint Guid { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_TempEntities.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_TempEntities.cs index 3ee91ed57..a72dfe88c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_TempEntities.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_TempEntities.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSVCMsg_TempEntities : ITypedProtobuf { - static CSVCMsg_TempEntities ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_TempEntitiesImpl(handle, isManuallyAllocated); - - - public bool Reliable { get; set; } - - - public int NumEntries { get; set; } - - - public byte[] EntityData { get; set; } + static CSVCMsg_TempEntities ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_TempEntitiesImpl(handle, isManuallyAllocated); -} + public bool Reliable { get; set; } + public int NumEntries { get; set; } + public byte[] EntityData { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_UpdateStringTable.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_UpdateStringTable.cs index f49c0ac56..ae7cbe542 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_UpdateStringTable.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_UpdateStringTable.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_UpdateStringTable : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 45; - - static string INetMessage.MessageName => "CSVCMsg_UpdateStringTable"; - - static CSVCMsg_UpdateStringTable ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_UpdateStringTableImpl(handle, isManuallyAllocated); - - - public int TableId { get; set; } - - - public int NumChangedEntries { get; set; } + static int INetMessage.MessageId => 45; + static string INetMessage.MessageName => "CSVCMsg_UpdateStringTable"; - public byte[] StringData { get; set; } + static CSVCMsg_UpdateStringTable ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_UpdateStringTableImpl(handle, isManuallyAllocated); -} + public int TableId { get; set; } + public int NumChangedEntries { get; set; } + public byte[] StringData { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_UserCommands.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_UserCommands.cs index a9c68f74a..abcfe75f4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_UserCommands.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_UserCommands.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSVCMsg_UserCommands : ITypedProtobuf { - static CSVCMsg_UserCommands ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_UserCommandsImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType Commands { get; } + static CSVCMsg_UserCommands ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_UserCommandsImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType Commands { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_UserMessage.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_UserMessage.cs index e6ef18625..5fc98e441 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_UserMessage.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_UserMessage.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_UserMessage : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 72; - - static string INetMessage.MessageName => "CSVCMsg_UserMessage"; - - static CSVCMsg_UserMessage ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_UserMessageImpl(handle, isManuallyAllocated); - - - public int MsgType { get; set; } - - - public byte[] MsgData { get; set; } + static int INetMessage.MessageId => 72; + static string INetMessage.MessageName => "CSVCMsg_UserMessage"; - public int Passthrough { get; set; } + static CSVCMsg_UserMessage ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_UserMessageImpl(handle, isManuallyAllocated); -} + public int MsgType { get; set; } + public byte[] MsgData { get; set; } + public int Passthrough { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_VoiceData.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_VoiceData.cs index c879c5a49..8acc9be4c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_VoiceData.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_VoiceData.cs @@ -1,38 +1,22 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_VoiceData : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 47; - - static string INetMessage.MessageName => "CSVCMsg_VoiceData"; - - static CSVCMsg_VoiceData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_VoiceDataImpl(handle, isManuallyAllocated); - - - public CMsgVoiceAudio Audio { get; } - - - public int Client { get; set; } - - - public bool Proximity { get; set; } - - - public ulong Xuid { get; set; } - - - public int AudibleMask { get; set; } - - - public uint Tick { get; set; } + static int INetMessage.MessageId => 47; + static string INetMessage.MessageName => "CSVCMsg_VoiceData"; - public int Passthrough { get; set; } + static CSVCMsg_VoiceData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_VoiceDataImpl(handle, isManuallyAllocated); -} + public CMsgVoiceAudio Audio { get; } + public int Client { get; set; } + public bool Proximity { get; set; } + public ulong Xuid { get; set; } + public int AudibleMask { get; set; } + public uint Tick { get; set; } + public int Passthrough { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_VoiceInit.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_VoiceInit.cs index 11393ea02..cf7fbf795 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_VoiceInit.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSVCMsg_VoiceInit.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CSVCMsg_VoiceInit : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 46; - - static string INetMessage.MessageName => "CSVCMsg_VoiceInit"; - - static CSVCMsg_VoiceInit ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_VoiceInitImpl(handle, isManuallyAllocated); - - - public int Quality { get; set; } - - - public string Codec { get; set; } + static int INetMessage.MessageId => 46; + static string INetMessage.MessageName => "CSVCMsg_VoiceInit"; - public int Version { get; set; } + static CSVCMsg_VoiceInit ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSVCMsg_VoiceInitImpl(handle, isManuallyAllocated); -} + public int Quality { get; set; } + public string Codec { get; set; } + public int Version { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSource2Metrics_MatchPerfSummary_Notification.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSource2Metrics_MatchPerfSummary_Notification.cs index a775fd0c1..da874838a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSource2Metrics_MatchPerfSummary_Notification.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSource2Metrics_MatchPerfSummary_Notification.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,27 +6,13 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSource2Metrics_MatchPerfSummary_Notification : ITypedProtobuf { - static CSource2Metrics_MatchPerfSummary_Notification ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSource2Metrics_MatchPerfSummary_NotificationImpl(handle, isManuallyAllocated); - - - public uint Appid { get; set; } - - - public string GameMode { get; set; } - - - public uint ServerBuildId { get; set; } - - - public uint ServerPopid { get; set; } - - - public CMsgSource2VProfLiteReport ServerProfile { get; } - - - public IProtobufRepeatedFieldSubMessageType Clients { get; } - - - public string Map { get; set; } - -} + static CSource2Metrics_MatchPerfSummary_Notification ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSource2Metrics_MatchPerfSummary_NotificationImpl(handle, isManuallyAllocated); + + public uint Appid { get; set; } + public string GameMode { get; set; } + public uint ServerBuildId { get; set; } + public uint ServerPopid { get; set; } + public CMsgSource2VProfLiteReport ServerProfile { get; } + public IProtobufRepeatedFieldSubMessageType Clients { get; } + public string Map { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSource2Metrics_MatchPerfSummary_Notification_Client.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSource2Metrics_MatchPerfSummary_Notification_Client.cs index c8013aff0..6b191ab44 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSource2Metrics_MatchPerfSummary_Notification_Client.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSource2Metrics_MatchPerfSummary_Notification_Client.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,27 +6,13 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSource2Metrics_MatchPerfSummary_Notification_Client : ITypedProtobuf { - static CSource2Metrics_MatchPerfSummary_Notification_Client ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSource2Metrics_MatchPerfSummary_Notification_ClientImpl(handle, isManuallyAllocated); - - - public CMsgSource2SystemSpecs SystemSpecs { get; } - - - public CMsgSource2VProfLiteReport Profile { get; } - - - public uint BuildId { get; set; } - - - public CMsgSource2NetworkFlowQuality DownstreamFlow { get; } - - - public CMsgSource2NetworkFlowQuality UpstreamFlow { get; } - - - public ulong Steamid { get; set; } - - - public IProtobufRepeatedFieldSubMessageType PerfSamples { get; } - -} + static CSource2Metrics_MatchPerfSummary_Notification_Client ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSource2Metrics_MatchPerfSummary_Notification_ClientImpl(handle, isManuallyAllocated); + + public CMsgSource2SystemSpecs SystemSpecs { get; } + public CMsgSource2VProfLiteReport Profile { get; } + public uint BuildId { get; set; } + public CMsgSource2NetworkFlowQuality DownstreamFlow { get; } + public CMsgSource2NetworkFlowQuality UpstreamFlow { get; } + public ulong Steamid { get; set; } + public IProtobufRepeatedFieldSubMessageType PerfSamples { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSteam_Voice_Encoding.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSteam_Voice_Encoding.cs index 1e767e94c..450564a0d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSteam_Voice_Encoding.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSteam_Voice_Encoding.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSteam_Voice_Encoding : ITypedProtobuf { - static CSteam_Voice_Encoding ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSteam_Voice_EncodingImpl(handle, isManuallyAllocated); - - - public byte[] VoiceData { get; set; } + static CSteam_Voice_Encoding ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSteam_Voice_EncodingImpl(handle, isManuallyAllocated); -} + public byte[] VoiceData { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSubtickMoveStep.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSubtickMoveStep.cs index bcba1502f..e29e9f705 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSubtickMoveStep.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CSubtickMoveStep.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,27 +6,13 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CSubtickMoveStep : ITypedProtobuf { - static CSubtickMoveStep ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSubtickMoveStepImpl(handle, isManuallyAllocated); - - - public ulong Button { get; set; } - - - public bool Pressed { get; set; } - - - public float When { get; set; } - - - public float AnalogForwardDelta { get; set; } - - - public float AnalogLeftDelta { get; set; } - - - public float PitchDelta { get; set; } - - - public float YawDelta { get; set; } - -} + static CSubtickMoveStep ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CSubtickMoveStepImpl(handle, isManuallyAllocated); + + public ulong Button { get; set; } + public bool Pressed { get; set; } + public float When { get; set; } + public float AnalogForwardDelta { get; set; } + public float AnalogLeftDelta { get; set; } + public float PitchDelta { get; set; } + public float YawDelta { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUIFontFilePB.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUIFontFilePB.cs index 5bc065800..3de4a6ff9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUIFontFilePB.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUIFontFilePB.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUIFontFilePB : ITypedProtobuf { - static CUIFontFilePB ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUIFontFilePBImpl(handle, isManuallyAllocated); - - - public string FontFileName { get; set; } - - - public byte[] OpentypeFontData { get; set; } + static CUIFontFilePB ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUIFontFilePBImpl(handle, isManuallyAllocated); -} + public string FontFileName { get; set; } + public byte[] OpentypeFontData { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUIFontFilePackagePB.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUIFontFilePackagePB.cs index 19b5755d2..a2ac20077 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUIFontFilePackagePB.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUIFontFilePackagePB.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUIFontFilePackagePB : ITypedProtobuf { - static CUIFontFilePackagePB ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUIFontFilePackagePBImpl(handle, isManuallyAllocated); - - - public uint PackageVersion { get; set; } - - - public IProtobufRepeatedFieldSubMessageType EncryptedFontFiles { get; } + static CUIFontFilePackagePB ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUIFontFilePackagePBImpl(handle, isManuallyAllocated); -} + public uint PackageVersion { get; set; } + public IProtobufRepeatedFieldSubMessageType EncryptedFontFiles { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUIFontFilePackagePB_CUIEncryptedFontFilePB.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUIFontFilePackagePB_CUIEncryptedFontFilePB.cs index 55687345a..7c44d33fb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUIFontFilePackagePB_CUIEncryptedFontFilePB.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUIFontFilePackagePB_CUIEncryptedFontFilePB.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUIFontFilePackagePB_CUIEncryptedFontFilePB : ITypedProtobuf { - static CUIFontFilePackagePB_CUIEncryptedFontFilePB ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUIFontFilePackagePB_CUIEncryptedFontFilePBImpl(handle, isManuallyAllocated); - - - public byte[] EncryptedContents { get; set; } + static CUIFontFilePackagePB_CUIEncryptedFontFilePB ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUIFontFilePackagePB_CUIEncryptedFontFilePBImpl(handle, isManuallyAllocated); -} + public byte[] EncryptedContents { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserCmdBasePB.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserCmdBasePB.cs index 2269ddb71..86209344c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserCmdBasePB.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserCmdBasePB.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserCmdBasePB : ITypedProtobuf { - static CUserCmdBasePB ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserCmdBasePBImpl(handle, isManuallyAllocated); - - - public CBaseUserCmdPB Base { get; } + static CUserCmdBasePB ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserCmdBasePBImpl(handle, isManuallyAllocated); -} + public CBaseUserCmdPB Base { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageAchievementEvent.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageAchievementEvent.cs index 4dfd235ed..c492a68db 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageAchievementEvent.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageAchievementEvent.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageAchievementEvent : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 101; - - static string INetMessage.MessageName => "CUserMessageAchievementEvent"; - - static CUserMessageAchievementEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageAchievementEventImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 101; + static string INetMessage.MessageName => "CUserMessageAchievementEvent"; - public uint Achievement { get; set; } + static CUserMessageAchievementEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageAchievementEventImpl(handle, isManuallyAllocated); -} + public uint Achievement { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageAmmoDenied.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageAmmoDenied.cs index 2f867c763..b6aa851b4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageAmmoDenied.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageAmmoDenied.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageAmmoDenied : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 132; - - static string INetMessage.MessageName => "CUserMessageAmmoDenied"; - - static CUserMessageAmmoDenied ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageAmmoDeniedImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 132; + static string INetMessage.MessageName => "CUserMessageAmmoDenied"; - public uint AmmoId { get; set; } + static CUserMessageAmmoDenied ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageAmmoDeniedImpl(handle, isManuallyAllocated); -} + public uint AmmoId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageAnimStateGraphState.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageAnimStateGraphState.cs index a56295e6b..eee1f6033 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageAnimStateGraphState.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageAnimStateGraphState.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMessageAnimStateGraphState : ITypedProtobuf { - static CUserMessageAnimStateGraphState ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageAnimStateGraphStateImpl(handle, isManuallyAllocated); - - - public int EntityIndex { get; set; } - - - public byte[] Data { get; set; } + static CUserMessageAnimStateGraphState ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageAnimStateGraphStateImpl(handle, isManuallyAllocated); -} + public int EntityIndex { get; set; } + public byte[] Data { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageAudioParameter.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageAudioParameter.cs index 9758f4b32..f81937e97 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageAudioParameter.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageAudioParameter.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageAudioParameter : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 144; - - static string INetMessage.MessageName => "CUserMessageAudioParameter"; - - static CUserMessageAudioParameter ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageAudioParameterImpl(handle, isManuallyAllocated); - - - public uint ParameterType { get; set; } - - - public uint NameHashCode { get; set; } - - - public float Value { get; set; } + static int INetMessage.MessageId => 144; + static string INetMessage.MessageName => "CUserMessageAudioParameter"; - public uint IntValue { get; set; } + static CUserMessageAudioParameter ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageAudioParameterImpl(handle, isManuallyAllocated); -} + public uint ParameterType { get; set; } + public uint NameHashCode { get; set; } + public float Value { get; set; } + public uint IntValue { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageCameraTransition.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageCameraTransition.cs index 0bf5b7ecb..323b7b66f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageCameraTransition.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageCameraTransition.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageCameraTransition : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 143; - - static string INetMessage.MessageName => "CUserMessageCameraTransition"; - - static CUserMessageCameraTransition ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageCameraTransitionImpl(handle, isManuallyAllocated); - - - public uint CameraType { get; set; } - - - public float Duration { get; set; } + static int INetMessage.MessageId => 143; + static string INetMessage.MessageName => "CUserMessageCameraTransition"; - public CUserMessageCameraTransition_Transition_DataDriven ParamsDataDriven { get; } + static CUserMessageCameraTransition ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageCameraTransitionImpl(handle, isManuallyAllocated); -} + public uint CameraType { get; set; } + public float Duration { get; set; } + public CUserMessageCameraTransition_Transition_DataDriven ParamsDataDriven { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageCameraTransition_Transition_DataDriven.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageCameraTransition_Transition_DataDriven.cs index 944a4e191..dc17bf8b3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageCameraTransition_Transition_DataDriven.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageCameraTransition_Transition_DataDriven.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMessageCameraTransition_Transition_DataDriven : ITypedProtobuf { - static CUserMessageCameraTransition_Transition_DataDriven ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageCameraTransition_Transition_DataDrivenImpl(handle, isManuallyAllocated); - - - public string Filename { get; set; } - - - public int AttachEntIndex { get; set; } - - - public float Duration { get; set; } + static CUserMessageCameraTransition_Transition_DataDriven ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageCameraTransition_Transition_DataDrivenImpl(handle, isManuallyAllocated); -} + public string Filename { get; set; } + public int AttachEntIndex { get; set; } + public float Duration { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageCloseCaption.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageCloseCaption.cs index 35fc1fea7..fa1f5b591 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageCloseCaption.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageCloseCaption.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageCloseCaption : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 102; - - static string INetMessage.MessageName => "CUserMessageCloseCaption"; - - static CUserMessageCloseCaption ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageCloseCaptionImpl(handle, isManuallyAllocated); - - - public uint Hash { get; set; } - - - public float Duration { get; set; } - - - public bool FromPlayer { get; set; } + static int INetMessage.MessageId => 102; + static string INetMessage.MessageName => "CUserMessageCloseCaption"; - public int EntIndex { get; set; } + static CUserMessageCloseCaption ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageCloseCaptionImpl(handle, isManuallyAllocated); -} + public uint Hash { get; set; } + public float Duration { get; set; } + public bool FromPlayer { get; set; } + public int EntIndex { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageCloseCaptionDirect.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageCloseCaptionDirect.cs index 8e42fb5c4..5f1f56be7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageCloseCaptionDirect.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageCloseCaptionDirect.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageCloseCaptionDirect : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 103; - - static string INetMessage.MessageName => "CUserMessageCloseCaptionDirect"; - - static CUserMessageCloseCaptionDirect ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageCloseCaptionDirectImpl(handle, isManuallyAllocated); - - - public uint Hash { get; set; } - - - public float Duration { get; set; } - - - public bool FromPlayer { get; set; } + static int INetMessage.MessageId => 103; + static string INetMessage.MessageName => "CUserMessageCloseCaptionDirect"; - public int EntIndex { get; set; } + static CUserMessageCloseCaptionDirect ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageCloseCaptionDirectImpl(handle, isManuallyAllocated); -} + public uint Hash { get; set; } + public float Duration { get; set; } + public bool FromPlayer { get; set; } + public int EntIndex { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageCloseCaptionPlaceholder.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageCloseCaptionPlaceholder.cs index 6c9454657..a34a24fcf 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageCloseCaptionPlaceholder.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageCloseCaptionPlaceholder.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageCloseCaptionPlaceholder : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 142; - - static string INetMessage.MessageName => "CUserMessageCloseCaptionPlaceholder"; - - static CUserMessageCloseCaptionPlaceholder ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageCloseCaptionPlaceholderImpl(handle, isManuallyAllocated); - - - public string String { get; set; } - - - public float Duration { get; set; } - - - public bool FromPlayer { get; set; } + static int INetMessage.MessageId => 142; + static string INetMessage.MessageName => "CUserMessageCloseCaptionPlaceholder"; - public int EntIndex { get; set; } + static CUserMessageCloseCaptionPlaceholder ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageCloseCaptionPlaceholderImpl(handle, isManuallyAllocated); -} + public string String { get; set; } + public float Duration { get; set; } + public bool FromPlayer { get; set; } + public int EntIndex { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageColoredText.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageColoredText.cs index 5e9d4694f..678335746 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageColoredText.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageColoredText.cs @@ -1,35 +1,21 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageColoredText : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 113; - - static string INetMessage.MessageName => "CUserMessageColoredText"; - - static CUserMessageColoredText ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageColoredTextImpl(handle, isManuallyAllocated); - - - public uint Color { get; set; } - - - public string Text { get; set; } - - - public bool Reset { get; set; } - - - public int ContextPlayerSlot { get; set; } - - - public int ContextValue { get; set; } + static int INetMessage.MessageId => 113; + static string INetMessage.MessageName => "CUserMessageColoredText"; - public int ContextTeamId { get; set; } + static CUserMessageColoredText ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageColoredTextImpl(handle, isManuallyAllocated); -} + public uint Color { get; set; } + public string Text { get; set; } + public bool Reset { get; set; } + public int ContextPlayerSlot { get; set; } + public int ContextValue { get; set; } + public int ContextTeamId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageCreditsMsg.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageCreditsMsg.cs index 0b180e9a2..6efbaae9d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageCreditsMsg.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageCreditsMsg.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageCreditsMsg : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 135; - - static string INetMessage.MessageName => "CUserMessageCreditsMsg"; - - static CUserMessageCreditsMsg ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageCreditsMsgImpl(handle, isManuallyAllocated); - - - public eRollType Rolltype { get; set; } + static int INetMessage.MessageId => 135; + static string INetMessage.MessageName => "CUserMessageCreditsMsg"; - public float LogoLength { get; set; } + static CUserMessageCreditsMsg ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageCreditsMsgImpl(handle, isManuallyAllocated); -} + public eRollType Rolltype { get; set; } + public float LogoLength { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageCurrentTimescale.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageCurrentTimescale.cs index 954a4016e..929aad2bb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageCurrentTimescale.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageCurrentTimescale.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageCurrentTimescale : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 104; - - static string INetMessage.MessageName => "CUserMessageCurrentTimescale"; - - static CUserMessageCurrentTimescale ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageCurrentTimescaleImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 104; + static string INetMessage.MessageName => "CUserMessageCurrentTimescale"; - public float Current { get; set; } + static CUserMessageCurrentTimescale ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageCurrentTimescaleImpl(handle, isManuallyAllocated); -} + public float Current { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageDesiredTimescale.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageDesiredTimescale.cs index 849442e5d..4c6c45dc1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageDesiredTimescale.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageDesiredTimescale.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageDesiredTimescale : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 105; - - static string INetMessage.MessageName => "CUserMessageDesiredTimescale"; - - static CUserMessageDesiredTimescale ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageDesiredTimescaleImpl(handle, isManuallyAllocated); - - - public float Desired { get; set; } - - - public float Acceleration { get; set; } - - - public float Minblendrate { get; set; } + static int INetMessage.MessageId => 105; + static string INetMessage.MessageName => "CUserMessageDesiredTimescale"; - public float Blenddeltamultiplier { get; set; } + static CUserMessageDesiredTimescale ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageDesiredTimescaleImpl(handle, isManuallyAllocated); -} + public float Desired { get; set; } + public float Acceleration { get; set; } + public float Minblendrate { get; set; } + public float Blenddeltamultiplier { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageFade.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageFade.cs index 1019a3982..bf917cb84 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageFade.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageFade.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageFade : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 106; - - static string INetMessage.MessageName => "CUserMessageFade"; - - static CUserMessageFade ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageFadeImpl(handle, isManuallyAllocated); - - - public uint Duration { get; set; } - - - public uint HoldTime { get; set; } - - - public uint Flags { get; set; } + static int INetMessage.MessageId => 106; + static string INetMessage.MessageName => "CUserMessageFade"; - public uint Color { get; set; } + static CUserMessageFade ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageFadeImpl(handle, isManuallyAllocated); -} + public uint Duration { get; set; } + public uint HoldTime { get; set; } + public uint Flags { get; set; } + public uint Color { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageGameTitle.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageGameTitle.cs index 901f1a6f3..94127e3e9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageGameTitle.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageGameTitle.cs @@ -1,18 +1,15 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageGameTitle : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 107; - - static string INetMessage.MessageName => "CUserMessageGameTitle"; + static int INetMessage.MessageId => 107; - static CUserMessageGameTitle ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageGameTitleImpl(handle, isManuallyAllocated); + static string INetMessage.MessageName => "CUserMessageGameTitle"; + static CUserMessageGameTitle ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageGameTitleImpl(handle, isManuallyAllocated); -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageHapticsManagerEffect.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageHapticsManagerEffect.cs index 503116c76..079a95a73 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageHapticsManagerEffect.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageHapticsManagerEffect.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageHapticsManagerEffect : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 151; - - static string INetMessage.MessageName => "CUserMessageHapticsManagerEffect"; - - static CUserMessageHapticsManagerEffect ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageHapticsManagerEffectImpl(handle, isManuallyAllocated); - - - public int HandId { get; set; } - - - public uint EffectNameHashCode { get; set; } + static int INetMessage.MessageId => 151; + static string INetMessage.MessageName => "CUserMessageHapticsManagerEffect"; - public float EffectScale { get; set; } + static CUserMessageHapticsManagerEffect ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageHapticsManagerEffectImpl(handle, isManuallyAllocated); -} + public int HandId { get; set; } + public uint EffectNameHashCode { get; set; } + public float EffectScale { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageHapticsManagerPulse.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageHapticsManagerPulse.cs index ef67d3dea..18770778e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageHapticsManagerPulse.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageHapticsManagerPulse.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageHapticsManagerPulse : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 150; - - static string INetMessage.MessageName => "CUserMessageHapticsManagerPulse"; - - static CUserMessageHapticsManagerPulse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageHapticsManagerPulseImpl(handle, isManuallyAllocated); - - - public int HandId { get; set; } - - - public float EffectAmplitude { get; set; } - - - public float EffectFrequency { get; set; } + static int INetMessage.MessageId => 150; + static string INetMessage.MessageName => "CUserMessageHapticsManagerPulse"; - public float EffectDuration { get; set; } + static CUserMessageHapticsManagerPulse ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageHapticsManagerPulseImpl(handle, isManuallyAllocated); -} + public int HandId { get; set; } + public float EffectAmplitude { get; set; } + public float EffectFrequency { get; set; } + public float EffectDuration { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageHudMsg.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageHudMsg.cs index 9732c23f1..f7263c5fe 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageHudMsg.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageHudMsg.cs @@ -1,38 +1,22 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageHudMsg : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 110; - - static string INetMessage.MessageName => "CUserMessageHudMsg"; - - static CUserMessageHudMsg ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageHudMsgImpl(handle, isManuallyAllocated); - - - public uint Channel { get; set; } - - - public float X { get; set; } - - - public float Y { get; set; } - - - public uint Color1 { get; set; } - - - public uint Color2 { get; set; } - - - public uint Effect { get; set; } + static int INetMessage.MessageId => 110; + static string INetMessage.MessageName => "CUserMessageHudMsg"; - public string Message { get; set; } + static CUserMessageHudMsg ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageHudMsgImpl(handle, isManuallyAllocated); -} + public uint Channel { get; set; } + public float X { get; set; } + public float Y { get; set; } + public uint Color1 { get; set; } + public uint Color2 { get; set; } + public uint Effect { get; set; } + public string Message { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageHudText.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageHudText.cs index d3842db33..b7c420fae 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageHudText.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageHudText.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageHudText : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 111; - - static string INetMessage.MessageName => "CUserMessageHudText"; - - static CUserMessageHudText ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageHudTextImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 111; + static string INetMessage.MessageName => "CUserMessageHudText"; - public string Message { get; set; } + static CUserMessageHudText ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageHudTextImpl(handle, isManuallyAllocated); -} + public string Message { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageItemPickup.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageItemPickup.cs index 669961927..c87b097e0 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageItemPickup.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageItemPickup.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageItemPickup : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 131; - - static string INetMessage.MessageName => "CUserMessageItemPickup"; - - static CUserMessageItemPickup ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageItemPickupImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 131; + static string INetMessage.MessageName => "CUserMessageItemPickup"; - public string Itemname { get; set; } + static CUserMessageItemPickup ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageItemPickupImpl(handle, isManuallyAllocated); -} + public string Itemname { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageLagCompensationError.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageLagCompensationError.cs index 5ef01c9c4..8648cbf7c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageLagCompensationError.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageLagCompensationError.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageLagCompensationError : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 155; - - static string INetMessage.MessageName => "CUserMessageLagCompensationError"; - - static CUserMessageLagCompensationError ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageLagCompensationErrorImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 155; + static string INetMessage.MessageName => "CUserMessageLagCompensationError"; - public float Distance { get; set; } + static CUserMessageLagCompensationError ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageLagCompensationErrorImpl(handle, isManuallyAllocated); -} + public float Distance { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageRequestDiagnostic.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageRequestDiagnostic.cs index 012920e16..d6f97bf2a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageRequestDiagnostic.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageRequestDiagnostic.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageRequestDiagnostic : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 162; - - static string INetMessage.MessageName => "CUserMessageRequestDiagnostic"; - - static CUserMessageRequestDiagnostic ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageRequestDiagnosticImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 162; + static string INetMessage.MessageName => "CUserMessageRequestDiagnostic"; - public IProtobufRepeatedFieldSubMessageType Diagnostics { get; } + static CUserMessageRequestDiagnostic ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageRequestDiagnosticImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType Diagnostics { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageRequestDiagnostic_Diagnostic.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageRequestDiagnostic_Diagnostic.cs index 3770bc2b7..7b9ccace8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageRequestDiagnostic_Diagnostic.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageRequestDiagnostic_Diagnostic.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,45 +6,19 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMessageRequestDiagnostic_Diagnostic : ITypedProtobuf { - static CUserMessageRequestDiagnostic_Diagnostic ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageRequestDiagnostic_DiagnosticImpl(handle, isManuallyAllocated); - - - public int Index { get; set; } - - - public long Offset { get; set; } - - - public int Param { get; set; } - - - public int Length { get; set; } - - - public int Type { get; set; } - - - public long Base { get; set; } - - - public long Range { get; set; } - - - public long Extent { get; set; } - - - public long Detail { get; set; } - - - public string Name { get; set; } - - - public string Alias { get; set; } - - - public byte[] Vardetail { get; set; } - - - public int Context { get; set; } - -} + static CUserMessageRequestDiagnostic_Diagnostic ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageRequestDiagnostic_DiagnosticImpl(handle, isManuallyAllocated); + + public int Index { get; set; } + public long Offset { get; set; } + public int Param { get; set; } + public int Length { get; set; } + public int Type { get; set; } + public long Base { get; set; } + public long Range { get; set; } + public long Extent { get; set; } + public long Detail { get; set; } + public string Name { get; set; } + public string Alias { get; set; } + public byte[] Vardetail { get; set; } + public int Context { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageRequestDllStatus.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageRequestDllStatus.cs index b404b6e9a..70ec7000e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageRequestDllStatus.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageRequestDllStatus.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageRequestDllStatus : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 156; - - static string INetMessage.MessageName => "CUserMessageRequestDllStatus"; - - static CUserMessageRequestDllStatus ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageRequestDllStatusImpl(handle, isManuallyAllocated); - - - public string DllAction { get; set; } + static int INetMessage.MessageId => 156; + static string INetMessage.MessageName => "CUserMessageRequestDllStatus"; - public bool FullReport { get; set; } + static CUserMessageRequestDllStatus ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageRequestDllStatusImpl(handle, isManuallyAllocated); -} + public string DllAction { get; set; } + public bool FullReport { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageRequestInventory.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageRequestInventory.cs index ac0b93925..25d650036 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageRequestInventory.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageRequestInventory.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageRequestInventory : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 160; - - static string INetMessage.MessageName => "CUserMessageRequestInventory"; - - static CUserMessageRequestInventory ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageRequestInventoryImpl(handle, isManuallyAllocated); - - - public int Inventory { get; set; } - - - public int Offset { get; set; } + static int INetMessage.MessageId => 160; + static string INetMessage.MessageName => "CUserMessageRequestInventory"; - public int Options { get; set; } + static CUserMessageRequestInventory ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageRequestInventoryImpl(handle, isManuallyAllocated); -} + public int Inventory { get; set; } + public int Offset { get; set; } + public int Options { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageRequestState.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageRequestState.cs index c9fad0b5e..b5d217b28 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageRequestState.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageRequestState.cs @@ -1,18 +1,15 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageRequestState : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 114; - - static string INetMessage.MessageName => "CUserMessageRequestState"; + static int INetMessage.MessageId => 114; - static CUserMessageRequestState ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageRequestStateImpl(handle, isManuallyAllocated); + static string INetMessage.MessageName => "CUserMessageRequestState"; + static CUserMessageRequestState ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageRequestStateImpl(handle, isManuallyAllocated); -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageRequestUtilAction.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageRequestUtilAction.cs index 2b155ab44..e3c2c8c82 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageRequestUtilAction.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageRequestUtilAction.cs @@ -1,32 +1,20 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageRequestUtilAction : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 157; - - static string INetMessage.MessageName => "CUserMessageRequestUtilAction"; - - static CUserMessageRequestUtilAction ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageRequestUtilActionImpl(handle, isManuallyAllocated); - - - public int Util1 { get; set; } - - - public int Util2 { get; set; } - - - public int Util3 { get; set; } - - - public int Util4 { get; set; } + static int INetMessage.MessageId => 157; + static string INetMessage.MessageName => "CUserMessageRequestUtilAction"; - public int Util5 { get; set; } + static CUserMessageRequestUtilAction ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageRequestUtilActionImpl(handle, isManuallyAllocated); -} + public int Util1 { get; set; } + public int Util2 { get; set; } + public int Util3 { get; set; } + public int Util4 { get; set; } + public int Util5 { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageResetHUD.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageResetHUD.cs index f40ff4df6..a7215f681 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageResetHUD.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageResetHUD.cs @@ -1,18 +1,15 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageResetHUD : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 115; - - static string INetMessage.MessageName => "CUserMessageResetHUD"; + static int INetMessage.MessageId => 115; - static CUserMessageResetHUD ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageResetHUDImpl(handle, isManuallyAllocated); + static string INetMessage.MessageName => "CUserMessageResetHUD"; + static CUserMessageResetHUD ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageResetHUDImpl(handle, isManuallyAllocated); -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageRumble.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageRumble.cs index 9ac464346..ccbb98536 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageRumble.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageRumble.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageRumble : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 116; - - static string INetMessage.MessageName => "CUserMessageRumble"; - - static CUserMessageRumble ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageRumbleImpl(handle, isManuallyAllocated); - - - public int Index { get; set; } - - - public int Data { get; set; } + static int INetMessage.MessageId => 116; + static string INetMessage.MessageName => "CUserMessageRumble"; - public int Flags { get; set; } + static CUserMessageRumble ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageRumbleImpl(handle, isManuallyAllocated); -} + public int Index { get; set; } + public int Data { get; set; } + public int Flags { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageSayText.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageSayText.cs index 1cff45d1d..c599a5850 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageSayText.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageSayText.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageSayText : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 117; - - static string INetMessage.MessageName => "CUserMessageSayText"; - - static CUserMessageSayText ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageSayTextImpl(handle, isManuallyAllocated); - - - public int Playerindex { get; set; } - - - public string Text { get; set; } + static int INetMessage.MessageId => 117; + static string INetMessage.MessageName => "CUserMessageSayText"; - public bool Chat { get; set; } + static CUserMessageSayText ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageSayTextImpl(handle, isManuallyAllocated); -} + public int Playerindex { get; set; } + public string Text { get; set; } + public bool Chat { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageSayText2.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageSayText2.cs index 92979be16..45a6b7526 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageSayText2.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageSayText2.cs @@ -1,38 +1,22 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageSayText2 : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 118; - - static string INetMessage.MessageName => "CUserMessageSayText2"; - - static CUserMessageSayText2 ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageSayText2Impl(handle, isManuallyAllocated); - - - public int Entityindex { get; set; } - - - public bool Chat { get; set; } - - - public string Messagename { get; set; } - - - public string Param1 { get; set; } - - - public string Param2 { get; set; } - - - public string Param3 { get; set; } + static int INetMessage.MessageId => 118; + static string INetMessage.MessageName => "CUserMessageSayText2"; - public string Param4 { get; set; } + static CUserMessageSayText2 ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageSayText2Impl(handle, isManuallyAllocated); -} + public int Entityindex { get; set; } + public bool Chat { get; set; } + public string Messagename { get; set; } + public string Param1 { get; set; } + public string Param2 { get; set; } + public string Param3 { get; set; } + public string Param4 { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageSayTextChannel.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageSayTextChannel.cs index 906acb279..98fb3ba8e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageSayTextChannel.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageSayTextChannel.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageSayTextChannel : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 119; - - static string INetMessage.MessageName => "CUserMessageSayTextChannel"; - - static CUserMessageSayTextChannel ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageSayTextChannelImpl(handle, isManuallyAllocated); - - - public int Player { get; set; } - - - public int Channel { get; set; } + static int INetMessage.MessageId => 119; + static string INetMessage.MessageName => "CUserMessageSayTextChannel"; - public string Text { get; set; } + static CUserMessageSayTextChannel ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageSayTextChannelImpl(handle, isManuallyAllocated); -} + public int Player { get; set; } + public int Channel { get; set; } + public string Text { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageScreenTilt.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageScreenTilt.cs index 9a76a52dd..685b0ba1b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageScreenTilt.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageScreenTilt.cs @@ -1,32 +1,20 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageScreenTilt : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 125; - - static string INetMessage.MessageName => "CUserMessageScreenTilt"; - - static CUserMessageScreenTilt ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageScreenTiltImpl(handle, isManuallyAllocated); - - - public uint Command { get; set; } - - - public bool EaseInOut { get; set; } - - - public Vector Angle { get; set; } - - - public float Duration { get; set; } + static int INetMessage.MessageId => 125; + static string INetMessage.MessageName => "CUserMessageScreenTilt"; - public float Time { get; set; } + static CUserMessageScreenTilt ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageScreenTiltImpl(handle, isManuallyAllocated); -} + public uint Command { get; set; } + public bool EaseInOut { get; set; } + public Vector Angle { get; set; } + public float Duration { get; set; } + public float Time { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageSendAudio.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageSendAudio.cs index 52bedb914..635c87c1e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageSendAudio.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageSendAudio.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageSendAudio : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 130; - - static string INetMessage.MessageName => "CUserMessageSendAudio"; - - static CUserMessageSendAudio ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageSendAudioImpl(handle, isManuallyAllocated); - - - public string Soundname { get; set; } + static int INetMessage.MessageId => 130; + static string INetMessage.MessageName => "CUserMessageSendAudio"; - public bool Stop { get; set; } + static CUserMessageSendAudio ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageSendAudioImpl(handle, isManuallyAllocated); -} + public string Soundname { get; set; } + public bool Stop { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageServerFrameTime.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageServerFrameTime.cs index 7dfd5d495..e84d5e992 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageServerFrameTime.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageServerFrameTime.cs @@ -1,20 +1,16 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageServerFrameTime : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 154; - - static string INetMessage.MessageName => "CUserMessageServerFrameTime"; - - static CUserMessageServerFrameTime ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageServerFrameTimeImpl(handle, isManuallyAllocated); + static int INetMessage.MessageId => 154; + static string INetMessage.MessageName => "CUserMessageServerFrameTime"; - public float FrameTime { get; set; } + static CUserMessageServerFrameTime ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageServerFrameTimeImpl(handle, isManuallyAllocated); -} + public float FrameTime { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageShake.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageShake.cs index e89e9923d..052284d3d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageShake.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageShake.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageShake : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 120; - - static string INetMessage.MessageName => "CUserMessageShake"; - - static CUserMessageShake ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageShakeImpl(handle, isManuallyAllocated); - - - public uint Command { get; set; } - - - public float Amplitude { get; set; } - - - public float Frequency { get; set; } + static int INetMessage.MessageId => 120; + static string INetMessage.MessageName => "CUserMessageShake"; - public float Duration { get; set; } + static CUserMessageShake ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageShakeImpl(handle, isManuallyAllocated); -} + public uint Command { get; set; } + public float Amplitude { get; set; } + public float Frequency { get; set; } + public float Duration { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageShakeDir.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageShakeDir.cs index 2eb1245dc..a768f456f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageShakeDir.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageShakeDir.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageShakeDir : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 121; - - static string INetMessage.MessageName => "CUserMessageShakeDir"; - - static CUserMessageShakeDir ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageShakeDirImpl(handle, isManuallyAllocated); - - - public CUserMessageShake Shake { get; } + static int INetMessage.MessageId => 121; + static string INetMessage.MessageName => "CUserMessageShakeDir"; - public Vector Direction { get; set; } + static CUserMessageShakeDir ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageShakeDirImpl(handle, isManuallyAllocated); -} + public CUserMessageShake Shake { get; } + public Vector Direction { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageShowMenu.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageShowMenu.cs index 26287bc8e..840de332c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageShowMenu.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageShowMenu.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageShowMenu : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 134; - - static string INetMessage.MessageName => "CUserMessageShowMenu"; - - static CUserMessageShowMenu ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageShowMenuImpl(handle, isManuallyAllocated); - - - public uint Validslots { get; set; } - - - public uint Displaytime { get; set; } - - - public bool Needmore { get; set; } + static int INetMessage.MessageId => 134; + static string INetMessage.MessageName => "CUserMessageShowMenu"; - public string Menustring { get; set; } + static CUserMessageShowMenu ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageShowMenuImpl(handle, isManuallyAllocated); -} + public uint Validslots { get; set; } + public uint Displaytime { get; set; } + public bool Needmore { get; set; } + public string Menustring { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageTextMsg.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageTextMsg.cs index 09a88fa17..6a5cd6d19 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageTextMsg.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageTextMsg.cs @@ -1,23 +1,17 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageTextMsg : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 124; - - static string INetMessage.MessageName => "CUserMessageTextMsg"; - - static CUserMessageTextMsg ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageTextMsgImpl(handle, isManuallyAllocated); - - - public uint Dest { get; set; } + static int INetMessage.MessageId => 124; + static string INetMessage.MessageName => "CUserMessageTextMsg"; - public IProtobufRepeatedFieldValueType Param { get; } + static CUserMessageTextMsg ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageTextMsgImpl(handle, isManuallyAllocated); -} + public uint Dest { get; set; } + public IProtobufRepeatedFieldValueType Param { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageUpdateCssClasses.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageUpdateCssClasses.cs index ecba86b5a..42d4f8a49 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageUpdateCssClasses.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageUpdateCssClasses.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageUpdateCssClasses : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 153; - - static string INetMessage.MessageName => "CUserMessageUpdateCssClasses"; - - static CUserMessageUpdateCssClasses ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageUpdateCssClassesImpl(handle, isManuallyAllocated); - - - public int TargetWorldPanel { get; set; } - - - public string CssClasses { get; set; } + static int INetMessage.MessageId => 153; + static string INetMessage.MessageName => "CUserMessageUpdateCssClasses"; - public bool IsAdd { get; set; } + static CUserMessageUpdateCssClasses ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageUpdateCssClassesImpl(handle, isManuallyAllocated); -} + public int TargetWorldPanel { get; set; } + public string CssClasses { get; set; } + public bool IsAdd { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageVoiceMask.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageVoiceMask.cs index 46e17d1e2..7ac8c7bf3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageVoiceMask.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageVoiceMask.cs @@ -1,26 +1,18 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageVoiceMask : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 128; - - static string INetMessage.MessageName => "CUserMessageVoiceMask"; - - static CUserMessageVoiceMask ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageVoiceMaskImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldValueType GamerulesMasks { get; } - - - public IProtobufRepeatedFieldValueType BanMasks { get; } + static int INetMessage.MessageId => 128; + static string INetMessage.MessageName => "CUserMessageVoiceMask"; - public bool ModEnable { get; set; } + static CUserMessageVoiceMask ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageVoiceMaskImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldValueType GamerulesMasks { get; } + public IProtobufRepeatedFieldValueType BanMasks { get; } + public bool ModEnable { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageWaterShake.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageWaterShake.cs index 8eb86e135..ceba0c17b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageWaterShake.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessageWaterShake.cs @@ -1,29 +1,19 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessageWaterShake : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 122; - - static string INetMessage.MessageName => "CUserMessageWaterShake"; - - static CUserMessageWaterShake ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageWaterShakeImpl(handle, isManuallyAllocated); - - - public uint Command { get; set; } - - - public float Amplitude { get; set; } - - - public float Frequency { get; set; } + static int INetMessage.MessageId => 122; + static string INetMessage.MessageName => "CUserMessageWaterShake"; - public float Duration { get; set; } + static CUserMessageWaterShake ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessageWaterShakeImpl(handle, isManuallyAllocated); -} + public uint Command { get; set; } + public float Amplitude { get; set; } + public float Frequency { get; set; } + public float Duration { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_Diagnostic_Response.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_Diagnostic_Response.cs index f89be9805..fd701a994 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_Diagnostic_Response.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_Diagnostic_Response.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,24 +6,12 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMessage_Diagnostic_Response : ITypedProtobuf { - static CUserMessage_Diagnostic_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessage_Diagnostic_ResponseImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType Diagnostics { get; } - - - public int BuildVersion { get; set; } - - - public int Instance { get; set; } - - - public long StartTime { get; set; } - - - public int Osversion { get; set; } - - - public int Platform { get; set; } - -} + static CUserMessage_Diagnostic_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessage_Diagnostic_ResponseImpl(handle, isManuallyAllocated); + + public IProtobufRepeatedFieldSubMessageType Diagnostics { get; } + public int BuildVersion { get; set; } + public int Instance { get; set; } + public long StartTime { get; set; } + public int Osversion { get; set; } + public int Platform { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_Diagnostic_Response_Diagnostic.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_Diagnostic_Response_Diagnostic.cs index 0b2b95395..27b61233e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_Diagnostic_Response_Diagnostic.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_Diagnostic_Response_Diagnostic.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,51 +6,21 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMessage_Diagnostic_Response_Diagnostic : ITypedProtobuf { - static CUserMessage_Diagnostic_Response_Diagnostic ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessage_Diagnostic_Response_DiagnosticImpl(handle, isManuallyAllocated); - - - public int Index { get; set; } - - - public long Offset { get; set; } - - - public int Param { get; set; } - - - public int Length { get; set; } - - - public byte[] Detail { get; set; } - - - public long Base { get; set; } - - - public long Range { get; set; } - - - public int Type { get; set; } - - - public string Name { get; set; } - - - public string Alias { get; set; } - - - public byte[] Backup { get; set; } - - - public int Context { get; set; } - - - public long Control { get; set; } - - - public long Augment { get; set; } - - - public long Placebo { get; set; } - -} + static CUserMessage_Diagnostic_Response_Diagnostic ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessage_Diagnostic_Response_DiagnosticImpl(handle, isManuallyAllocated); + + public int Index { get; set; } + public long Offset { get; set; } + public int Param { get; set; } + public int Length { get; set; } + public byte[] Detail { get; set; } + public long Base { get; set; } + public long Range { get; set; } + public int Type { get; set; } + public string Name { get; set; } + public string Alias { get; set; } + public byte[] Backup { get; set; } + public int Context { get; set; } + public long Control { get; set; } + public long Augment { get; set; } + public long Placebo { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_DllStatus.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_DllStatus.cs index f46867705..a0b950be0 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_DllStatus.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_DllStatus.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,30 +6,14 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMessage_DllStatus : ITypedProtobuf { - static CUserMessage_DllStatus ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessage_DllStatusImpl(handle, isManuallyAllocated); - - - public string FileReport { get; set; } - - - public string CommandLine { get; set; } - - - public uint TotalFiles { get; set; } - - - public uint ProcessId { get; set; } - - - public int Osversion { get; set; } - - - public ulong ClientTime { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Diagnostics { get; } - - - public IProtobufRepeatedFieldSubMessageType Modules { get; } - -} + static CUserMessage_DllStatus ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessage_DllStatusImpl(handle, isManuallyAllocated); + + public string FileReport { get; set; } + public string CommandLine { get; set; } + public uint TotalFiles { get; set; } + public uint ProcessId { get; set; } + public int Osversion { get; set; } + public ulong ClientTime { get; set; } + public IProtobufRepeatedFieldSubMessageType Diagnostics { get; } + public IProtobufRepeatedFieldSubMessageType Modules { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_DllStatus_CModule.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_DllStatus_CModule.cs index ac44a4c98..c36517d8a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_DllStatus_CModule.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_DllStatus_CModule.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMessage_DllStatus_CModule : ITypedProtobuf { - static CUserMessage_DllStatus_CModule ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessage_DllStatus_CModuleImpl(handle, isManuallyAllocated); - - - public ulong BaseAddr { get; set; } - - - public string Name { get; set; } - - - public uint Size { get; set; } - - - public uint Timestamp { get; set; } + static CUserMessage_DllStatus_CModule ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessage_DllStatus_CModuleImpl(handle, isManuallyAllocated); -} + public ulong BaseAddr { get; set; } + public string Name { get; set; } + public uint Size { get; set; } + public uint Timestamp { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_DllStatus_CVDiagnostic.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_DllStatus_CVDiagnostic.cs index 39ec06f17..82d54f4b6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_DllStatus_CVDiagnostic.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_DllStatus_CVDiagnostic.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMessage_DllStatus_CVDiagnostic : ITypedProtobuf { - static CUserMessage_DllStatus_CVDiagnostic ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessage_DllStatus_CVDiagnosticImpl(handle, isManuallyAllocated); - - - public uint Id { get; set; } - - - public uint Extended { get; set; } - - - public ulong Value { get; set; } - - - public string StringValue { get; set; } + static CUserMessage_DllStatus_CVDiagnostic ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessage_DllStatus_CVDiagnosticImpl(handle, isManuallyAllocated); -} + public uint Id { get; set; } + public uint Extended { get; set; } + public ulong Value { get; set; } + public string StringValue { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_ExtraUserData.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_ExtraUserData.cs index ae55d5ab6..5913edfc7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_ExtraUserData.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_ExtraUserData.cs @@ -1,32 +1,20 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessage_ExtraUserData : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 164; - - static string INetMessage.MessageName => "CUserMessage_ExtraUserData"; - - static CUserMessage_ExtraUserData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessage_ExtraUserDataImpl(handle, isManuallyAllocated); - - - public int Item { get; set; } - - - public long Value1 { get; set; } - - - public long Value2 { get; set; } - - - public IProtobufRepeatedFieldValueType Detail1 { get; } + static int INetMessage.MessageId => 164; + static string INetMessage.MessageName => "CUserMessage_ExtraUserData"; - public IProtobufRepeatedFieldValueType Detail2 { get; } + static CUserMessage_ExtraUserData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessage_ExtraUserDataImpl(handle, isManuallyAllocated); -} + public int Item { get; set; } + public long Value1 { get; set; } + public long Value2 { get; set; } + public IProtobufRepeatedFieldValueType Detail1 { get; } + public IProtobufRepeatedFieldValueType Detail2 { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_Inventory_Response.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_Inventory_Response.cs index d79ab28e9..25912efa6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_Inventory_Response.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_Inventory_Response.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,45 +6,19 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMessage_Inventory_Response : ITypedProtobuf { - static CUserMessage_Inventory_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessage_Inventory_ResponseImpl(handle, isManuallyAllocated); - - - public uint Crc { get; set; } - - - public int ItemCount { get; set; } - - - public int Osversion { get; set; } - - - public int PerfTime { get; set; } - - - public int ClientTimestamp { get; set; } - - - public int Platform { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Inventories { get; } - - - public IProtobufRepeatedFieldSubMessageType Inventories2 { get; } - - - public IProtobufRepeatedFieldSubMessageType Inventories3 { get; } - - - public int InvType { get; set; } - - - public int BuildVersion { get; set; } - - - public int Instance { get; set; } - - - public long StartTime { get; set; } - -} + static CUserMessage_Inventory_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessage_Inventory_ResponseImpl(handle, isManuallyAllocated); + + public uint Crc { get; set; } + public int ItemCount { get; set; } + public int Osversion { get; set; } + public int PerfTime { get; set; } + public int ClientTimestamp { get; set; } + public int Platform { get; set; } + public IProtobufRepeatedFieldSubMessageType Inventories { get; } + public IProtobufRepeatedFieldSubMessageType Inventories2 { get; } + public IProtobufRepeatedFieldSubMessageType Inventories3 { get; } + public int InvType { get; set; } + public int BuildVersion { get; set; } + public int Instance { get; set; } + public long StartTime { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_Inventory_Response_InventoryDetail.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_Inventory_Response_InventoryDetail.cs index bc7ba2c1a..267027214 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_Inventory_Response_InventoryDetail.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_Inventory_Response_InventoryDetail.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,36 +6,16 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMessage_Inventory_Response_InventoryDetail : ITypedProtobuf { - static CUserMessage_Inventory_Response_InventoryDetail ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessage_Inventory_Response_InventoryDetailImpl(handle, isManuallyAllocated); - - - public int Index { get; set; } - - - public long Primary { get; set; } - - - public long Offset { get; set; } - - - public long First { get; set; } - - - public long Base { get; set; } - - - public string Name { get; set; } - - - public string BaseName { get; set; } - - - public int BaseDetail { get; set; } - - - public int BaseTime { get; set; } - - - public int BaseHash { get; set; } - -} + static CUserMessage_Inventory_Response_InventoryDetail ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessage_Inventory_Response_InventoryDetailImpl(handle, isManuallyAllocated); + + public int Index { get; set; } + public long Primary { get; set; } + public long Offset { get; set; } + public long First { get; set; } + public long Base { get; set; } + public string Name { get; set; } + public string BaseName { get; set; } + public int BaseDetail { get; set; } + public int BaseTime { get; set; } + public int BaseHash { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_NotifyResponseFound.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_NotifyResponseFound.cs index 3afbaa82e..e5055f2fa 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_NotifyResponseFound.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_NotifyResponseFound.cs @@ -1,53 +1,27 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessage_NotifyResponseFound : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 165; - - static string INetMessage.MessageName => "CUserMessage_NotifyResponseFound"; - - static CUserMessage_NotifyResponseFound ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessage_NotifyResponseFoundImpl(handle, isManuallyAllocated); - - - public int EntIndex { get; set; } - - - public string RuleName { get; set; } - - - public string ResponseValue { get; set; } - - - public string ResponseConcept { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Criteria { get; } - - - public IProtobufRepeatedFieldValueType IntCriteriaNames { get; } - - - public IProtobufRepeatedFieldValueType IntCriteriaValues { get; } - - - public IProtobufRepeatedFieldValueType FloatCriteriaNames { get; } - - - public IProtobufRepeatedFieldValueType FloatCriteriaValues { get; } - - - public IProtobufRepeatedFieldValueType SymbolCriteriaNames { get; } - - - public IProtobufRepeatedFieldValueType SymbolCriteriaValues { get; } - - - public int SpeakResult { get; set; } - -} + static int INetMessage.MessageId => 165; + + static string INetMessage.MessageName => "CUserMessage_NotifyResponseFound"; + + static CUserMessage_NotifyResponseFound ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessage_NotifyResponseFoundImpl(handle, isManuallyAllocated); + + public int EntIndex { get; set; } + public string RuleName { get; set; } + public string ResponseValue { get; set; } + public string ResponseConcept { get; set; } + public IProtobufRepeatedFieldSubMessageType Criteria { get; } + public IProtobufRepeatedFieldValueType IntCriteriaNames { get; } + public IProtobufRepeatedFieldValueType IntCriteriaValues { get; } + public IProtobufRepeatedFieldValueType FloatCriteriaNames { get; } + public IProtobufRepeatedFieldValueType FloatCriteriaValues { get; } + public IProtobufRepeatedFieldValueType SymbolCriteriaNames { get; } + public IProtobufRepeatedFieldValueType SymbolCriteriaValues { get; } + public int SpeakResult { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_NotifyResponseFound_Criteria.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_NotifyResponseFound_Criteria.cs index 753a677f9..930e8e37f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_NotifyResponseFound_Criteria.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_NotifyResponseFound_Criteria.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMessage_NotifyResponseFound_Criteria : ITypedProtobuf { - static CUserMessage_NotifyResponseFound_Criteria ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessage_NotifyResponseFound_CriteriaImpl(handle, isManuallyAllocated); - - - public uint NameSymbol { get; set; } - - - public string Value { get; set; } + static CUserMessage_NotifyResponseFound_Criteria ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessage_NotifyResponseFound_CriteriaImpl(handle, isManuallyAllocated); -} + public uint NameSymbol { get; set; } + public string Value { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_PlayResponseConditional.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_PlayResponseConditional.cs index 50ee72a9e..3282a0ab1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_PlayResponseConditional.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_PlayResponseConditional.cs @@ -1,35 +1,21 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; namespace SwiftlyS2.Shared.ProtobufDefinitions; -using SwiftlyS2.Shared.NetMessages; public interface CUserMessage_PlayResponseConditional : ITypedProtobuf, INetMessage, IDisposable { - static int INetMessage.MessageId => 166; - - static string INetMessage.MessageName => "CUserMessage_PlayResponseConditional"; - - static CUserMessage_PlayResponseConditional ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessage_PlayResponseConditionalImpl(handle, isManuallyAllocated); - - - public int EntIndex { get; set; } - - - public IProtobufRepeatedFieldValueType PlayerSlots { get; } - - - public string Response { get; set; } - - - public Vector EntOrigin { get; set; } - - - public float PreDelay { get; set; } + static int INetMessage.MessageId => 166; + static string INetMessage.MessageName => "CUserMessage_PlayResponseConditional"; - public int MixPriority { get; set; } + static CUserMessage_PlayResponseConditional ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessage_PlayResponseConditionalImpl(handle, isManuallyAllocated); -} + public int EntIndex { get; set; } + public IProtobufRepeatedFieldValueType PlayerSlots { get; } + public string Response { get; set; } + public Vector EntOrigin { get; set; } + public float PreDelay { get; set; } + public int MixPriority { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_UtilMsg_Response.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_UtilMsg_Response.cs index 16b8abdc0..327480b4b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_UtilMsg_Response.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_UtilMsg_Response.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,42 +6,18 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMessage_UtilMsg_Response : ITypedProtobuf { - static CUserMessage_UtilMsg_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessage_UtilMsg_ResponseImpl(handle, isManuallyAllocated); - - - public uint Crc { get; set; } - - - public int ItemCount { get; set; } - - - public uint Crc2 { get; set; } - - - public int ItemCount2 { get; set; } - - - public IProtobufRepeatedFieldValueType CrcPart { get; } - - - public IProtobufRepeatedFieldValueType CrcPart2 { get; } - - - public int ClientTimestamp { get; set; } - - - public int Platform { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Itemdetails { get; } - - - public int Itemgroup { get; set; } - - - public int TotalCount { get; set; } - - - public int TotalCount2 { get; set; } - -} + static CUserMessage_UtilMsg_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessage_UtilMsg_ResponseImpl(handle, isManuallyAllocated); + + public uint Crc { get; set; } + public int ItemCount { get; set; } + public uint Crc2 { get; set; } + public int ItemCount2 { get; set; } + public IProtobufRepeatedFieldValueType CrcPart { get; } + public IProtobufRepeatedFieldValueType CrcPart2 { get; } + public int ClientTimestamp { get; set; } + public int Platform { get; set; } + public IProtobufRepeatedFieldSubMessageType Itemdetails { get; } + public int Itemgroup { get; set; } + public int TotalCount { get; set; } + public int TotalCount2 { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_UtilMsg_Response_ItemDetail.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_UtilMsg_Response_ItemDetail.cs index ae94fef0a..3e65053fa 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_UtilMsg_Response_ItemDetail.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMessage_UtilMsg_Response_ItemDetail.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMessage_UtilMsg_Response_ItemDetail : ITypedProtobuf { - static CUserMessage_UtilMsg_Response_ItemDetail ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessage_UtilMsg_Response_ItemDetailImpl(handle, isManuallyAllocated); - - - public int Index { get; set; } - - - public int Hash { get; set; } - - - public int Crc { get; set; } - - - public string Name { get; set; } + static CUserMessage_UtilMsg_Response_ItemDetail ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMessage_UtilMsg_Response_ItemDetailImpl(handle, isManuallyAllocated); -} + public int Index { get; set; } + public int Hash { get; set; } + public int Crc { get; set; } + public string Name { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_CustomGameEvent.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_CustomGameEvent.cs index d83b1d6dd..875392c5a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_CustomGameEvent.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_CustomGameEvent.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_CustomGameEvent : ITypedProtobuf { - static CUserMsg_CustomGameEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_CustomGameEventImpl(handle, isManuallyAllocated); - - - public string EventName { get; set; } - - - public byte[] Data { get; set; } + static CUserMsg_CustomGameEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_CustomGameEventImpl(handle, isManuallyAllocated); -} + public string EventName { get; set; } + public byte[] Data { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_HudError.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_HudError.cs index d5a2bbd88..43d0f68bb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_HudError.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_HudError.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_HudError : ITypedProtobuf { - static CUserMsg_HudError ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_HudErrorImpl(handle, isManuallyAllocated); - - - public int OrderId { get; set; } + static CUserMsg_HudError ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_HudErrorImpl(handle, isManuallyAllocated); -} + public int OrderId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager.cs index 5640064da..37217cf7d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,129 +6,47 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager : ITypedProtobuf { - static CUserMsg_ParticleManager ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManagerImpl(handle, isManuallyAllocated); - - - public PARTICLE_MESSAGE Type { get; set; } - - - public uint Index { get; set; } - - - public CUserMsg_ParticleManager_ReleaseParticleIndex ReleaseParticleIndex { get; } - - - public CUserMsg_ParticleManager_CreateParticle CreateParticle { get; } - - - public CUserMsg_ParticleManager_DestroyParticle DestroyParticle { get; } - - - public CUserMsg_ParticleManager_DestroyParticleInvolving DestroyParticleInvolving { get; } - - - public CUserMsg_ParticleManager_UpdateParticle_OBSOLETE UpdateParticle { get; } - - - public CUserMsg_ParticleManager_UpdateParticleFwd_OBSOLETE UpdateParticleFwd { get; } - - - public CUserMsg_ParticleManager_UpdateParticleOrient_OBSOLETE UpdateParticleOrient { get; } - - - public CUserMsg_ParticleManager_UpdateParticleFallback UpdateParticleFallback { get; } - - - public CUserMsg_ParticleManager_UpdateParticleOffset UpdateParticleOffset { get; } - - - public CUserMsg_ParticleManager_UpdateParticleEnt UpdateParticleEnt { get; } - - - public CUserMsg_ParticleManager_UpdateParticleShouldDraw UpdateParticleShouldDraw { get; } - - - public CUserMsg_ParticleManager_UpdateParticleSetFrozen UpdateParticleSetFrozen { get; } - - - public CUserMsg_ParticleManager_ChangeControlPointAttachment ChangeControlPointAttachment { get; } - - - public CUserMsg_ParticleManager_UpdateEntityPosition UpdateEntityPosition { get; } - - - public CUserMsg_ParticleManager_SetParticleFoWProperties SetParticleFowProperties { get; } - - - public CUserMsg_ParticleManager_SetParticleText SetParticleText { get; } - - - public CUserMsg_ParticleManager_SetParticleShouldCheckFoW SetParticleShouldCheckFow { get; } - - - public CUserMsg_ParticleManager_SetControlPointModel SetControlPointModel { get; } - - - public CUserMsg_ParticleManager_SetControlPointSnapshot SetControlPointSnapshot { get; } - - - public CUserMsg_ParticleManager_SetTextureAttribute SetTextureAttribute { get; } - - - public CUserMsg_ParticleManager_SetSceneObjectGenericFlag SetSceneObjectGenericFlag { get; } - - - public CUserMsg_ParticleManager_SetSceneObjectTintAndDesat SetSceneObjectTintAndDesat { get; } - - - public CUserMsg_ParticleManager_DestroyParticleNamed DestroyParticleNamed { get; } - - - public CUserMsg_ParticleManager_ParticleSkipToTime ParticleSkipToTime { get; } - - - public CUserMsg_ParticleManager_ParticleCanFreeze ParticleCanFreeze { get; } - - - public CUserMsg_ParticleManager_SetParticleNamedValueContext SetNamedValueContext { get; } - - - public CUserMsg_ParticleManager_UpdateParticleTransform UpdateParticleTransform { get; } - - - public CUserMsg_ParticleManager_ParticleFreezeTransitionOverride ParticleFreezeTransitionOverride { get; } - - - public CUserMsg_ParticleManager_FreezeParticleInvolving FreezeParticleInvolving { get; } - - - public CUserMsg_ParticleManager_AddModellistOverrideElement AddModellistOverrideElement { get; } - - - public CUserMsg_ParticleManager_ClearModellistOverride ClearModellistOverride { get; } - - - public CUserMsg_ParticleManager_CreatePhysicsSim CreatePhysicsSim { get; } - - - public CUserMsg_ParticleManager_DestroyPhysicsSim DestroyPhysicsSim { get; } - - - public CUserMsg_ParticleManager_SetVData SetVdata { get; } - - - public CUserMsg_ParticleManager_SetMaterialOverride SetMaterialOverride { get; } - - - public CUserMsg_ParticleManager_AddFan AddFan { get; } - - - public CUserMsg_ParticleManager_UpdateFan UpdateFan { get; } - - - public CUserMsg_ParticleManager_SetParticleClusterGrowth SetParticleClusterGrowth { get; } - - - public CUserMsg_ParticleManager_RemoveFan RemoveFan { get; } - -} + static CUserMsg_ParticleManager ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManagerImpl(handle, isManuallyAllocated); + + public PARTICLE_MESSAGE Type { get; set; } + public uint Index { get; set; } + public CUserMsg_ParticleManager_ReleaseParticleIndex ReleaseParticleIndex { get; } + public CUserMsg_ParticleManager_CreateParticle CreateParticle { get; } + public CUserMsg_ParticleManager_DestroyParticle DestroyParticle { get; } + public CUserMsg_ParticleManager_DestroyParticleInvolving DestroyParticleInvolving { get; } + public CUserMsg_ParticleManager_UpdateParticle_OBSOLETE UpdateParticle { get; } + public CUserMsg_ParticleManager_UpdateParticleFwd_OBSOLETE UpdateParticleFwd { get; } + public CUserMsg_ParticleManager_UpdateParticleOrient_OBSOLETE UpdateParticleOrient { get; } + public CUserMsg_ParticleManager_UpdateParticleFallback UpdateParticleFallback { get; } + public CUserMsg_ParticleManager_UpdateParticleOffset UpdateParticleOffset { get; } + public CUserMsg_ParticleManager_UpdateParticleEnt UpdateParticleEnt { get; } + public CUserMsg_ParticleManager_UpdateParticleShouldDraw UpdateParticleShouldDraw { get; } + public CUserMsg_ParticleManager_UpdateParticleSetFrozen UpdateParticleSetFrozen { get; } + public CUserMsg_ParticleManager_ChangeControlPointAttachment ChangeControlPointAttachment { get; } + public CUserMsg_ParticleManager_UpdateEntityPosition UpdateEntityPosition { get; } + public CUserMsg_ParticleManager_SetParticleFoWProperties SetParticleFowProperties { get; } + public CUserMsg_ParticleManager_SetParticleText SetParticleText { get; } + public CUserMsg_ParticleManager_SetParticleShouldCheckFoW SetParticleShouldCheckFow { get; } + public CUserMsg_ParticleManager_SetControlPointModel SetControlPointModel { get; } + public CUserMsg_ParticleManager_SetControlPointSnapshot SetControlPointSnapshot { get; } + public CUserMsg_ParticleManager_SetTextureAttribute SetTextureAttribute { get; } + public CUserMsg_ParticleManager_SetSceneObjectGenericFlag SetSceneObjectGenericFlag { get; } + public CUserMsg_ParticleManager_SetSceneObjectTintAndDesat SetSceneObjectTintAndDesat { get; } + public CUserMsg_ParticleManager_DestroyParticleNamed DestroyParticleNamed { get; } + public CUserMsg_ParticleManager_ParticleSkipToTime ParticleSkipToTime { get; } + public CUserMsg_ParticleManager_ParticleCanFreeze ParticleCanFreeze { get; } + public CUserMsg_ParticleManager_SetParticleNamedValueContext SetNamedValueContext { get; } + public CUserMsg_ParticleManager_UpdateParticleTransform UpdateParticleTransform { get; } + public CUserMsg_ParticleManager_ParticleFreezeTransitionOverride ParticleFreezeTransitionOverride { get; } + public CUserMsg_ParticleManager_FreezeParticleInvolving FreezeParticleInvolving { get; } + public CUserMsg_ParticleManager_AddModellistOverrideElement AddModellistOverrideElement { get; } + public CUserMsg_ParticleManager_ClearModellistOverride ClearModellistOverride { get; } + public CUserMsg_ParticleManager_CreatePhysicsSim CreatePhysicsSim { get; } + public CUserMsg_ParticleManager_DestroyPhysicsSim DestroyPhysicsSim { get; } + public CUserMsg_ParticleManager_SetVData SetVdata { get; } + public CUserMsg_ParticleManager_SetMaterialOverride SetMaterialOverride { get; } + public CUserMsg_ParticleManager_AddFan AddFan { get; } + public CUserMsg_ParticleManager_UpdateFan UpdateFan { get; } + public CUserMsg_ParticleManager_SetParticleClusterGrowth SetParticleClusterGrowth { get; } + public CUserMsg_ParticleManager_RemoveFan RemoveFan { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_AddFan.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_AddFan.cs index 1c8f3eeb9..299d62d68 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_AddFan.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_AddFan.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,60 +6,24 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_AddFan : ITypedProtobuf { - static CUserMsg_ParticleManager_AddFan ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_AddFanImpl(handle, isManuallyAllocated); - - - public bool Active { get; set; } - - - public Vector BoundsMins { get; set; } - - - public Vector BoundsMaxs { get; set; } - - - public Vector FanOrigin { get; set; } - - - public Vector FanOriginOffset { get; set; } - - - public Vector FanDirection { get; set; } - - - public float Force { get; set; } - - - public string FanForceCurve { get; set; } - - - public bool Falloff { get; set; } - - - public bool PullTowardsPoint { get; set; } - - - public float CurveMinDist { get; set; } - - - public float CurveMaxDist { get; set; } - - - public uint FanType { get; set; } - - - public float ConeStartRadius { get; set; } - - - public float ConeEndRadius { get; set; } - - - public float ConeLength { get; set; } - - - public uint EntityHandle { get; set; } - - - public string AttachmentName { get; set; } - -} + static CUserMsg_ParticleManager_AddFan ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_AddFanImpl(handle, isManuallyAllocated); + + public bool Active { get; set; } + public Vector BoundsMins { get; set; } + public Vector BoundsMaxs { get; set; } + public Vector FanOrigin { get; set; } + public Vector FanOriginOffset { get; set; } + public Vector FanDirection { get; set; } + public float Force { get; set; } + public string FanForceCurve { get; set; } + public bool Falloff { get; set; } + public bool PullTowardsPoint { get; set; } + public float CurveMinDist { get; set; } + public float CurveMaxDist { get; set; } + public uint FanType { get; set; } + public float ConeStartRadius { get; set; } + public float ConeEndRadius { get; set; } + public float ConeLength { get; set; } + public uint EntityHandle { get; set; } + public string AttachmentName { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_AddModellistOverrideElement.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_AddModellistOverrideElement.cs index f60183209..48000b69f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_AddModellistOverrideElement.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_AddModellistOverrideElement.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_AddModellistOverrideElement : ITypedProtobuf { - static CUserMsg_ParticleManager_AddModellistOverrideElement ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_AddModellistOverrideElementImpl(handle, isManuallyAllocated); - - - public string ModelName { get; set; } - - - public float SpawnProbability { get; set; } - - - public uint Groupid { get; set; } + static CUserMsg_ParticleManager_AddModellistOverrideElement ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_AddModellistOverrideElementImpl(handle, isManuallyAllocated); -} + public string ModelName { get; set; } + public float SpawnProbability { get; set; } + public uint Groupid { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_ChangeControlPointAttachment.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_ChangeControlPointAttachment.cs index b59afb3a2..517a55860 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_ChangeControlPointAttachment.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_ChangeControlPointAttachment.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_ChangeControlPointAttachment : ITypedProtobuf { - static CUserMsg_ParticleManager_ChangeControlPointAttachment ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_ChangeControlPointAttachmentImpl(handle, isManuallyAllocated); - - - public int AttachmentOld { get; set; } - - - public int AttachmentNew { get; set; } - - - public uint EntityHandle { get; set; } + static CUserMsg_ParticleManager_ChangeControlPointAttachment ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_ChangeControlPointAttachmentImpl(handle, isManuallyAllocated); -} + public int AttachmentOld { get; set; } + public int AttachmentNew { get; set; } + public uint EntityHandle { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_ClearModellistOverride.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_ClearModellistOverride.cs index 1ba0cf48c..1b41b8e36 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_ClearModellistOverride.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_ClearModellistOverride.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_ClearModellistOverride : ITypedProtobuf { - static CUserMsg_ParticleManager_ClearModellistOverride ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_ClearModellistOverrideImpl(handle, isManuallyAllocated); - - - public uint Groupid { get; set; } + static CUserMsg_ParticleManager_ClearModellistOverride ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_ClearModellistOverrideImpl(handle, isManuallyAllocated); -} + public uint Groupid { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_CreateParticle.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_CreateParticle.cs index 1d96aa2d3..020218976 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_CreateParticle.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_CreateParticle.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,36 +6,16 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_CreateParticle : ITypedProtobuf { - static CUserMsg_ParticleManager_CreateParticle ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_CreateParticleImpl(handle, isManuallyAllocated); - - - public ulong ParticleNameIndex { get; set; } - - - public int AttachType { get; set; } - - - public uint EntityHandle { get; set; } - - - public uint EntityHandleForModifiers { get; set; } - - - public bool ApplyVoiceBanRules { get; set; } - - - public int TeamBehavior { get; set; } - - - public string ControlPointConfiguration { get; set; } - - - public bool Cluster { get; set; } - - - public float EndcapTime { get; set; } - - - public Vector AggregationPosition { get; set; } - -} + static CUserMsg_ParticleManager_CreateParticle ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_CreateParticleImpl(handle, isManuallyAllocated); + + public ulong ParticleNameIndex { get; set; } + public int AttachType { get; set; } + public uint EntityHandle { get; set; } + public uint EntityHandleForModifiers { get; set; } + public bool ApplyVoiceBanRules { get; set; } + public int TeamBehavior { get; set; } + public string ControlPointConfiguration { get; set; } + public bool Cluster { get; set; } + public float EndcapTime { get; set; } + public Vector AggregationPosition { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_CreatePhysicsSim.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_CreatePhysicsSim.cs index 7c842e684..bcb1b5af3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_CreatePhysicsSim.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_CreatePhysicsSim.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_CreatePhysicsSim : ITypedProtobuf { - static CUserMsg_ParticleManager_CreatePhysicsSim ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_CreatePhysicsSimImpl(handle, isManuallyAllocated); - - - public string PropGroupName { get; set; } - - - public bool UseHighQualitySimulation { get; set; } - - - public uint MaxParticleCount { get; set; } + static CUserMsg_ParticleManager_CreatePhysicsSim ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_CreatePhysicsSimImpl(handle, isManuallyAllocated); -} + public string PropGroupName { get; set; } + public bool UseHighQualitySimulation { get; set; } + public uint MaxParticleCount { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_DestroyParticle.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_DestroyParticle.cs index 8f40b853e..a063e3b5c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_DestroyParticle.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_DestroyParticle.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_DestroyParticle : ITypedProtobuf { - static CUserMsg_ParticleManager_DestroyParticle ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_DestroyParticleImpl(handle, isManuallyAllocated); - - - public bool DestroyImmediately { get; set; } + static CUserMsg_ParticleManager_DestroyParticle ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_DestroyParticleImpl(handle, isManuallyAllocated); -} + public bool DestroyImmediately { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_DestroyParticleInvolving.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_DestroyParticleInvolving.cs index 68bad1b70..e54d1d3e1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_DestroyParticleInvolving.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_DestroyParticleInvolving.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_DestroyParticleInvolving : ITypedProtobuf { - static CUserMsg_ParticleManager_DestroyParticleInvolving ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_DestroyParticleInvolvingImpl(handle, isManuallyAllocated); - - - public bool DestroyImmediately { get; set; } - - - public uint EntityHandle { get; set; } + static CUserMsg_ParticleManager_DestroyParticleInvolving ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_DestroyParticleInvolvingImpl(handle, isManuallyAllocated); -} + public bool DestroyImmediately { get; set; } + public uint EntityHandle { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_DestroyParticleNamed.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_DestroyParticleNamed.cs index 44d8fd345..4b6874d67 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_DestroyParticleNamed.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_DestroyParticleNamed.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_DestroyParticleNamed : ITypedProtobuf { - static CUserMsg_ParticleManager_DestroyParticleNamed ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_DestroyParticleNamedImpl(handle, isManuallyAllocated); - - - public ulong ParticleNameIndex { get; set; } - - - public uint EntityHandle { get; set; } - - - public bool DestroyImmediately { get; set; } - - - public bool PlayEndcap { get; set; } + static CUserMsg_ParticleManager_DestroyParticleNamed ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_DestroyParticleNamedImpl(handle, isManuallyAllocated); -} + public ulong ParticleNameIndex { get; set; } + public uint EntityHandle { get; set; } + public bool DestroyImmediately { get; set; } + public bool PlayEndcap { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_DestroyPhysicsSim.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_DestroyPhysicsSim.cs index 2593d429e..24cd1edf4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_DestroyPhysicsSim.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_DestroyPhysicsSim.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,7 +6,6 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_DestroyPhysicsSim : ITypedProtobuf { - static CUserMsg_ParticleManager_DestroyPhysicsSim ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_DestroyPhysicsSimImpl(handle, isManuallyAllocated); - + static CUserMsg_ParticleManager_DestroyPhysicsSim ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_DestroyPhysicsSimImpl(handle, isManuallyAllocated); -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_FreezeParticleInvolving.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_FreezeParticleInvolving.cs index 1d37863e2..eb65b6614 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_FreezeParticleInvolving.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_FreezeParticleInvolving.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_FreezeParticleInvolving : ITypedProtobuf { - static CUserMsg_ParticleManager_FreezeParticleInvolving ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_FreezeParticleInvolvingImpl(handle, isManuallyAllocated); - - - public bool SetFrozen { get; set; } - - - public float TransitionDuration { get; set; } - - - public uint EntityHandle { get; set; } + static CUserMsg_ParticleManager_FreezeParticleInvolving ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_FreezeParticleInvolvingImpl(handle, isManuallyAllocated); -} + public bool SetFrozen { get; set; } + public float TransitionDuration { get; set; } + public uint EntityHandle { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_ParticleCanFreeze.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_ParticleCanFreeze.cs index 3b2c19831..3b0dddf0b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_ParticleCanFreeze.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_ParticleCanFreeze.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_ParticleCanFreeze : ITypedProtobuf { - static CUserMsg_ParticleManager_ParticleCanFreeze ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_ParticleCanFreezeImpl(handle, isManuallyAllocated); - - - public bool CanFreeze { get; set; } + static CUserMsg_ParticleManager_ParticleCanFreeze ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_ParticleCanFreezeImpl(handle, isManuallyAllocated); -} + public bool CanFreeze { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_ParticleFreezeTransitionOverride.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_ParticleFreezeTransitionOverride.cs index ebd524260..008410281 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_ParticleFreezeTransitionOverride.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_ParticleFreezeTransitionOverride.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_ParticleFreezeTransitionOverride : ITypedProtobuf { - static CUserMsg_ParticleManager_ParticleFreezeTransitionOverride ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_ParticleFreezeTransitionOverrideImpl(handle, isManuallyAllocated); - - - public float FreezeTransitionOverride { get; set; } + static CUserMsg_ParticleManager_ParticleFreezeTransitionOverride ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_ParticleFreezeTransitionOverrideImpl(handle, isManuallyAllocated); -} + public float FreezeTransitionOverride { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_ParticleSkipToTime.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_ParticleSkipToTime.cs index 9c7b13349..23c3f6005 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_ParticleSkipToTime.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_ParticleSkipToTime.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_ParticleSkipToTime : ITypedProtobuf { - static CUserMsg_ParticleManager_ParticleSkipToTime ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_ParticleSkipToTimeImpl(handle, isManuallyAllocated); - - - public float SkipToTime { get; set; } + static CUserMsg_ParticleManager_ParticleSkipToTime ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_ParticleSkipToTimeImpl(handle, isManuallyAllocated); -} + public float SkipToTime { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_ReleaseParticleIndex.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_ReleaseParticleIndex.cs index 6fb4c7381..a756760ea 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_ReleaseParticleIndex.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_ReleaseParticleIndex.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,7 +6,6 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_ReleaseParticleIndex : ITypedProtobuf { - static CUserMsg_ParticleManager_ReleaseParticleIndex ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_ReleaseParticleIndexImpl(handle, isManuallyAllocated); - + static CUserMsg_ParticleManager_ReleaseParticleIndex ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_ReleaseParticleIndexImpl(handle, isManuallyAllocated); -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_RemoveFan.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_RemoveFan.cs index f4bd1d666..1a3b3e96a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_RemoveFan.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_RemoveFan.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,7 +6,6 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_RemoveFan : ITypedProtobuf { - static CUserMsg_ParticleManager_RemoveFan ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_RemoveFanImpl(handle, isManuallyAllocated); - + static CUserMsg_ParticleManager_RemoveFan ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_RemoveFanImpl(handle, isManuallyAllocated); -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetControlPointModel.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetControlPointModel.cs index bf3bd5ba8..992383c83 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetControlPointModel.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetControlPointModel.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_SetControlPointModel : ITypedProtobuf { - static CUserMsg_ParticleManager_SetControlPointModel ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetControlPointModelImpl(handle, isManuallyAllocated); - - - public int ControlPoint { get; set; } - - - public string ModelName { get; set; } + static CUserMsg_ParticleManager_SetControlPointModel ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetControlPointModelImpl(handle, isManuallyAllocated); -} + public int ControlPoint { get; set; } + public string ModelName { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetControlPointSnapshot.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetControlPointSnapshot.cs index 49d141a3f..80eb2849e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetControlPointSnapshot.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetControlPointSnapshot.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_SetControlPointSnapshot : ITypedProtobuf { - static CUserMsg_ParticleManager_SetControlPointSnapshot ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetControlPointSnapshotImpl(handle, isManuallyAllocated); - - - public int ControlPoint { get; set; } - - - public string SnapshotName { get; set; } + static CUserMsg_ParticleManager_SetControlPointSnapshot ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetControlPointSnapshotImpl(handle, isManuallyAllocated); -} + public int ControlPoint { get; set; } + public string SnapshotName { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetMaterialOverride.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetMaterialOverride.cs index 2af1e213b..2dc250b6e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetMaterialOverride.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetMaterialOverride.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_SetMaterialOverride : ITypedProtobuf { - static CUserMsg_ParticleManager_SetMaterialOverride ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetMaterialOverrideImpl(handle, isManuallyAllocated); - - - public string MaterialName { get; set; } - - - public bool IncludeChildren { get; set; } + static CUserMsg_ParticleManager_SetMaterialOverride ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetMaterialOverrideImpl(handle, isManuallyAllocated); -} + public string MaterialName { get; set; } + public bool IncludeChildren { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleClusterGrowth.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleClusterGrowth.cs index b918f664f..a85d75efc 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleClusterGrowth.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleClusterGrowth.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_SetParticleClusterGrowth : ITypedProtobuf { - static CUserMsg_ParticleManager_SetParticleClusterGrowth ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetParticleClusterGrowthImpl(handle, isManuallyAllocated); - - - public float Duration { get; set; } - - - public Vector Origin { get; set; } + static CUserMsg_ParticleManager_SetParticleClusterGrowth ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetParticleClusterGrowthImpl(handle, isManuallyAllocated); -} + public float Duration { get; set; } + public Vector Origin { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleFoWProperties.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleFoWProperties.cs index 64cd5f669..9a217e550 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleFoWProperties.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleFoWProperties.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_SetParticleFoWProperties : ITypedProtobuf { - static CUserMsg_ParticleManager_SetParticleFoWProperties ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetParticleFoWPropertiesImpl(handle, isManuallyAllocated); - - - public int FowControlPoint { get; set; } - - - public int FowControlPoint2 { get; set; } - - - public float FowRadius { get; set; } + static CUserMsg_ParticleManager_SetParticleFoWProperties ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetParticleFoWPropertiesImpl(handle, isManuallyAllocated); -} + public int FowControlPoint { get; set; } + public int FowControlPoint2 { get; set; } + public float FowRadius { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleNamedValueContext.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleNamedValueContext.cs index 8d0fff8d5..8310880a3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleNamedValueContext.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleNamedValueContext.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_SetParticleNamedValueContext : ITypedProtobuf { - static CUserMsg_ParticleManager_SetParticleNamedValueContext ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetParticleNamedValueContextImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldSubMessageType FloatValues { get; } - - - public IProtobufRepeatedFieldSubMessageType VectorValues { get; } - - - public IProtobufRepeatedFieldSubMessageType TransformValues { get; } - - - public IProtobufRepeatedFieldSubMessageType EhandleValues { get; } + static CUserMsg_ParticleManager_SetParticleNamedValueContext ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetParticleNamedValueContextImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldSubMessageType FloatValues { get; } + public IProtobufRepeatedFieldSubMessageType VectorValues { get; } + public IProtobufRepeatedFieldSubMessageType TransformValues { get; } + public IProtobufRepeatedFieldSubMessageType EhandleValues { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleNamedValueContext_EHandleContext.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleNamedValueContext_EHandleContext.cs index 7179997e3..85c619821 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleNamedValueContext_EHandleContext.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleNamedValueContext_EHandleContext.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_SetParticleNamedValueContext_EHandleContext : ITypedProtobuf { - static CUserMsg_ParticleManager_SetParticleNamedValueContext_EHandleContext ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetParticleNamedValueContext_EHandleContextImpl(handle, isManuallyAllocated); - - - public uint ValueNameHash { get; set; } - - - public uint EntIndex { get; set; } + static CUserMsg_ParticleManager_SetParticleNamedValueContext_EHandleContext ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetParticleNamedValueContext_EHandleContextImpl(handle, isManuallyAllocated); -} + public uint ValueNameHash { get; set; } + public uint EntIndex { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleNamedValueContext_FloatContextValue.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleNamedValueContext_FloatContextValue.cs index 825ca4363..03f24a3be 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleNamedValueContext_FloatContextValue.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleNamedValueContext_FloatContextValue.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_SetParticleNamedValueContext_FloatContextValue : ITypedProtobuf { - static CUserMsg_ParticleManager_SetParticleNamedValueContext_FloatContextValue ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetParticleNamedValueContext_FloatContextValueImpl(handle, isManuallyAllocated); - - - public uint ValueNameHash { get; set; } - - - public float Value { get; set; } + static CUserMsg_ParticleManager_SetParticleNamedValueContext_FloatContextValue ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetParticleNamedValueContext_FloatContextValueImpl(handle, isManuallyAllocated); -} + public uint ValueNameHash { get; set; } + public float Value { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleNamedValueContext_TransformContextValue.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleNamedValueContext_TransformContextValue.cs index bfef60300..762e11cb1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleNamedValueContext_TransformContextValue.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleNamedValueContext_TransformContextValue.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_SetParticleNamedValueContext_TransformContextValue : ITypedProtobuf { - static CUserMsg_ParticleManager_SetParticleNamedValueContext_TransformContextValue ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetParticleNamedValueContext_TransformContextValueImpl(handle, isManuallyAllocated); - - - public uint ValueNameHash { get; set; } - - - public QAngle Angles { get; set; } - - - public Vector Translation { get; set; } + static CUserMsg_ParticleManager_SetParticleNamedValueContext_TransformContextValue ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetParticleNamedValueContext_TransformContextValueImpl(handle, isManuallyAllocated); -} + public uint ValueNameHash { get; set; } + public QAngle Angles { get; set; } + public Vector Translation { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleNamedValueContext_VectorContextValue.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleNamedValueContext_VectorContextValue.cs index b909a5f32..f059479e8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleNamedValueContext_VectorContextValue.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleNamedValueContext_VectorContextValue.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_SetParticleNamedValueContext_VectorContextValue : ITypedProtobuf { - static CUserMsg_ParticleManager_SetParticleNamedValueContext_VectorContextValue ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetParticleNamedValueContext_VectorContextValueImpl(handle, isManuallyAllocated); - - - public uint ValueNameHash { get; set; } - - - public Vector Value { get; set; } + static CUserMsg_ParticleManager_SetParticleNamedValueContext_VectorContextValue ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetParticleNamedValueContext_VectorContextValueImpl(handle, isManuallyAllocated); -} + public uint ValueNameHash { get; set; } + public Vector Value { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleShouldCheckFoW.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleShouldCheckFoW.cs index 6fd936e66..23c4b2812 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleShouldCheckFoW.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleShouldCheckFoW.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_SetParticleShouldCheckFoW : ITypedProtobuf { - static CUserMsg_ParticleManager_SetParticleShouldCheckFoW ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetParticleShouldCheckFoWImpl(handle, isManuallyAllocated); - - - public bool CheckFow { get; set; } + static CUserMsg_ParticleManager_SetParticleShouldCheckFoW ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetParticleShouldCheckFoWImpl(handle, isManuallyAllocated); -} + public bool CheckFow { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleText.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleText.cs index a12d09193..7628c8144 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleText.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetParticleText.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_SetParticleText : ITypedProtobuf { - static CUserMsg_ParticleManager_SetParticleText ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetParticleTextImpl(handle, isManuallyAllocated); - - - public string Text { get; set; } + static CUserMsg_ParticleManager_SetParticleText ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetParticleTextImpl(handle, isManuallyAllocated); -} + public string Text { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetSceneObjectGenericFlag.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetSceneObjectGenericFlag.cs index 7114f11a6..797da6a70 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetSceneObjectGenericFlag.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetSceneObjectGenericFlag.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_SetSceneObjectGenericFlag : ITypedProtobuf { - static CUserMsg_ParticleManager_SetSceneObjectGenericFlag ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetSceneObjectGenericFlagImpl(handle, isManuallyAllocated); - - - public bool FlagValue { get; set; } + static CUserMsg_ParticleManager_SetSceneObjectGenericFlag ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetSceneObjectGenericFlagImpl(handle, isManuallyAllocated); -} + public bool FlagValue { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetSceneObjectTintAndDesat.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetSceneObjectTintAndDesat.cs index d608d34ea..77d59eb57 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetSceneObjectTintAndDesat.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetSceneObjectTintAndDesat.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_SetSceneObjectTintAndDesat : ITypedProtobuf { - static CUserMsg_ParticleManager_SetSceneObjectTintAndDesat ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetSceneObjectTintAndDesatImpl(handle, isManuallyAllocated); - - - public uint Tint { get; set; } - - - public float Desat { get; set; } + static CUserMsg_ParticleManager_SetSceneObjectTintAndDesat ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetSceneObjectTintAndDesatImpl(handle, isManuallyAllocated); -} + public uint Tint { get; set; } + public float Desat { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetTextureAttribute.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetTextureAttribute.cs index 40e3a1901..6d20b708b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetTextureAttribute.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetTextureAttribute.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_SetTextureAttribute : ITypedProtobuf { - static CUserMsg_ParticleManager_SetTextureAttribute ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetTextureAttributeImpl(handle, isManuallyAllocated); - - - public string AttributeName { get; set; } - - - public string TextureName { get; set; } + static CUserMsg_ParticleManager_SetTextureAttribute ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetTextureAttributeImpl(handle, isManuallyAllocated); -} + public string AttributeName { get; set; } + public string TextureName { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetVData.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetVData.cs index 647aeb777..61f7afa8f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetVData.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_SetVData.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_SetVData : ITypedProtobuf { - static CUserMsg_ParticleManager_SetVData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetVDataImpl(handle, isManuallyAllocated); - - - public string VdataName { get; set; } + static CUserMsg_ParticleManager_SetVData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_SetVDataImpl(handle, isManuallyAllocated); -} + public string VdataName { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateEntityPosition.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateEntityPosition.cs index 47e81e490..dad565305 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateEntityPosition.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateEntityPosition.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_UpdateEntityPosition : ITypedProtobuf { - static CUserMsg_ParticleManager_UpdateEntityPosition ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_UpdateEntityPositionImpl(handle, isManuallyAllocated); - - - public uint EntityHandle { get; set; } - - - public Vector Position { get; set; } + static CUserMsg_ParticleManager_UpdateEntityPosition ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_UpdateEntityPositionImpl(handle, isManuallyAllocated); -} + public uint EntityHandle { get; set; } + public Vector Position { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateFan.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateFan.cs index d60363ca9..1e5647d8b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateFan.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateFan.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,27 +6,13 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_UpdateFan : ITypedProtobuf { - static CUserMsg_ParticleManager_UpdateFan ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_UpdateFanImpl(handle, isManuallyAllocated); - - - public bool Active { get; set; } - - - public Vector FanOrigin { get; set; } - - - public Vector FanOriginOffset { get; set; } - - - public Vector FanDirection { get; set; } - - - public float FanRampRatio { get; set; } - - - public Vector BoundsMins { get; set; } - - - public Vector BoundsMaxs { get; set; } - -} + static CUserMsg_ParticleManager_UpdateFan ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_UpdateFanImpl(handle, isManuallyAllocated); + + public bool Active { get; set; } + public Vector FanOrigin { get; set; } + public Vector FanOriginOffset { get; set; } + public Vector FanDirection { get; set; } + public float FanRampRatio { get; set; } + public Vector BoundsMins { get; set; } + public Vector BoundsMaxs { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleEnt.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleEnt.cs index 7971c9819..4901d78e4 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleEnt.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleEnt.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,30 +6,14 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_UpdateParticleEnt : ITypedProtobuf { - static CUserMsg_ParticleManager_UpdateParticleEnt ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_UpdateParticleEntImpl(handle, isManuallyAllocated); - - - public int ControlPoint { get; set; } - - - public uint EntityHandle { get; set; } - - - public int AttachType { get; set; } - - - public int Attachment { get; set; } - - - public Vector FallbackPosition { get; set; } - - - public bool IncludeWearables { get; set; } - - - public Vector OffsetPosition { get; set; } - - - public QAngle OffsetAngles { get; set; } - -} + static CUserMsg_ParticleManager_UpdateParticleEnt ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_UpdateParticleEntImpl(handle, isManuallyAllocated); + + public int ControlPoint { get; set; } + public uint EntityHandle { get; set; } + public int AttachType { get; set; } + public int Attachment { get; set; } + public Vector FallbackPosition { get; set; } + public bool IncludeWearables { get; set; } + public Vector OffsetPosition { get; set; } + public QAngle OffsetAngles { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleFallback.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleFallback.cs index 72171bad8..3dd322161 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleFallback.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleFallback.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_UpdateParticleFallback : ITypedProtobuf { - static CUserMsg_ParticleManager_UpdateParticleFallback ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_UpdateParticleFallbackImpl(handle, isManuallyAllocated); - - - public int ControlPoint { get; set; } - - - public Vector Position { get; set; } + static CUserMsg_ParticleManager_UpdateParticleFallback ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_UpdateParticleFallbackImpl(handle, isManuallyAllocated); -} + public int ControlPoint { get; set; } + public Vector Position { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleFwd_OBSOLETE.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleFwd_OBSOLETE.cs index e4c138596..66762067c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleFwd_OBSOLETE.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleFwd_OBSOLETE.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_UpdateParticleFwd_OBSOLETE : ITypedProtobuf { - static CUserMsg_ParticleManager_UpdateParticleFwd_OBSOLETE ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_UpdateParticleFwd_OBSOLETEImpl(handle, isManuallyAllocated); - - - public int ControlPoint { get; set; } - - - public Vector Forward { get; set; } + static CUserMsg_ParticleManager_UpdateParticleFwd_OBSOLETE ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_UpdateParticleFwd_OBSOLETEImpl(handle, isManuallyAllocated); -} + public int ControlPoint { get; set; } + public Vector Forward { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleOffset.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleOffset.cs index cce902fce..7a793152a 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleOffset.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleOffset.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_UpdateParticleOffset : ITypedProtobuf { - static CUserMsg_ParticleManager_UpdateParticleOffset ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_UpdateParticleOffsetImpl(handle, isManuallyAllocated); - - - public int ControlPoint { get; set; } - - - public Vector OriginOffset { get; set; } - - - public QAngle AngleOffset { get; set; } + static CUserMsg_ParticleManager_UpdateParticleOffset ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_UpdateParticleOffsetImpl(handle, isManuallyAllocated); -} + public int ControlPoint { get; set; } + public Vector OriginOffset { get; set; } + public QAngle AngleOffset { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleOrient_OBSOLETE.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleOrient_OBSOLETE.cs index fbbb8562d..e7f8e5700 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleOrient_OBSOLETE.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleOrient_OBSOLETE.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,21 +6,11 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_UpdateParticleOrient_OBSOLETE : ITypedProtobuf { - static CUserMsg_ParticleManager_UpdateParticleOrient_OBSOLETE ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_UpdateParticleOrient_OBSOLETEImpl(handle, isManuallyAllocated); - - - public int ControlPoint { get; set; } - - - public Vector Forward { get; set; } - - - public Vector DeprecatedRight { get; set; } - - - public Vector Up { get; set; } - - - public Vector Left { get; set; } - -} + static CUserMsg_ParticleManager_UpdateParticleOrient_OBSOLETE ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_UpdateParticleOrient_OBSOLETEImpl(handle, isManuallyAllocated); + + public int ControlPoint { get; set; } + public Vector Forward { get; set; } + public Vector DeprecatedRight { get; set; } + public Vector Up { get; set; } + public Vector Left { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleSetFrozen.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleSetFrozen.cs index e999e7aa0..6868cf2a1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleSetFrozen.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleSetFrozen.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_UpdateParticleSetFrozen : ITypedProtobuf { - static CUserMsg_ParticleManager_UpdateParticleSetFrozen ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_UpdateParticleSetFrozenImpl(handle, isManuallyAllocated); - - - public bool SetFrozen { get; set; } - - - public float TransitionDuration { get; set; } + static CUserMsg_ParticleManager_UpdateParticleSetFrozen ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_UpdateParticleSetFrozenImpl(handle, isManuallyAllocated); -} + public bool SetFrozen { get; set; } + public float TransitionDuration { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleShouldDraw.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleShouldDraw.cs index e93509dd0..30864fa61 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleShouldDraw.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleShouldDraw.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_UpdateParticleShouldDraw : ITypedProtobuf { - static CUserMsg_ParticleManager_UpdateParticleShouldDraw ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_UpdateParticleShouldDrawImpl(handle, isManuallyAllocated); - - - public bool ShouldDraw { get; set; } + static CUserMsg_ParticleManager_UpdateParticleShouldDraw ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_UpdateParticleShouldDrawImpl(handle, isManuallyAllocated); -} + public bool ShouldDraw { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleTransform.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleTransform.cs index eda7a43ce..f80685911 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleTransform.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticleTransform.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_UpdateParticleTransform : ITypedProtobuf { - static CUserMsg_ParticleManager_UpdateParticleTransform ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_UpdateParticleTransformImpl(handle, isManuallyAllocated); - - - public int ControlPoint { get; set; } - - - public Vector Position { get; set; } - - - public CMsgQuaternion Orientation { get; } - - - public float InterpolationInterval { get; set; } + static CUserMsg_ParticleManager_UpdateParticleTransform ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_UpdateParticleTransformImpl(handle, isManuallyAllocated); -} + public int ControlPoint { get; set; } + public Vector Position { get; set; } + public CMsgQuaternion Orientation { get; } + public float InterpolationInterval { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticle_OBSOLETE.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticle_OBSOLETE.cs index 8610e1b8e..72ec884a7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticle_OBSOLETE.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CUserMsg_ParticleManager_UpdateParticle_OBSOLETE.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CUserMsg_ParticleManager_UpdateParticle_OBSOLETE : ITypedProtobuf { - static CUserMsg_ParticleManager_UpdateParticle_OBSOLETE ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_UpdateParticle_OBSOLETEImpl(handle, isManuallyAllocated); - - - public int ControlPoint { get; set; } - - - public Vector Position { get; set; } + static CUserMsg_ParticleManager_UpdateParticle_OBSOLETE ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CUserMsg_ParticleManager_UpdateParticle_OBSOLETEImpl(handle, isManuallyAllocated); -} + public int ControlPoint { get; set; } + public Vector Position { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CVDiagnostic.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CVDiagnostic.cs index 22e3353f0..ce206eaca 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CVDiagnostic.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CVDiagnostic.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CVDiagnostic : ITypedProtobuf { - static CVDiagnostic ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CVDiagnosticImpl(handle, isManuallyAllocated); - - - public uint Id { get; set; } - - - public uint Extended { get; set; } - - - public ulong Value { get; set; } - - - public string StringValue { get; set; } + static CVDiagnostic ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CVDiagnosticImpl(handle, isManuallyAllocated); -} + public uint Id { get; set; } + public uint Extended { get; set; } + public ulong Value { get; set; } + public string StringValue { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_AddSpecialPayment_Request.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_AddSpecialPayment_Request.cs index 1884eb332..3acf43827 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_AddSpecialPayment_Request.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_AddSpecialPayment_Request.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,21 +6,11 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CWorkshop_AddSpecialPayment_Request : ITypedProtobuf { - static CWorkshop_AddSpecialPayment_Request ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CWorkshop_AddSpecialPayment_RequestImpl(handle, isManuallyAllocated); - - - public uint Appid { get; set; } - - - public uint Gameitemid { get; set; } - - - public string Date { get; set; } - - - public ulong PaymentUsUsd { get; set; } - - - public ulong PaymentRowUsd { get; set; } - -} + static CWorkshop_AddSpecialPayment_Request ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CWorkshop_AddSpecialPayment_RequestImpl(handle, isManuallyAllocated); + + public uint Appid { get; set; } + public uint Gameitemid { get; set; } + public string Date { get; set; } + public ulong PaymentUsUsd { get; set; } + public ulong PaymentRowUsd { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_AddSpecialPayment_Response.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_AddSpecialPayment_Response.cs index b9300d9f5..c2cf98830 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_AddSpecialPayment_Response.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_AddSpecialPayment_Response.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,7 +6,6 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CWorkshop_AddSpecialPayment_Response : ITypedProtobuf { - static CWorkshop_AddSpecialPayment_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CWorkshop_AddSpecialPayment_ResponseImpl(handle, isManuallyAllocated); - + static CWorkshop_AddSpecialPayment_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CWorkshop_AddSpecialPayment_ResponseImpl(handle, isManuallyAllocated); -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_GetContributors_Request.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_GetContributors_Request.cs index 3aa87799a..1e4c4a1f8 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_GetContributors_Request.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_GetContributors_Request.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CWorkshop_GetContributors_Request : ITypedProtobuf { - static CWorkshop_GetContributors_Request ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CWorkshop_GetContributors_RequestImpl(handle, isManuallyAllocated); - - - public uint Appid { get; set; } - - - public uint Gameitemid { get; set; } + static CWorkshop_GetContributors_Request ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CWorkshop_GetContributors_RequestImpl(handle, isManuallyAllocated); -} + public uint Appid { get; set; } + public uint Gameitemid { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_GetContributors_Response.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_GetContributors_Response.cs index 866e61474..525fdf7cf 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_GetContributors_Response.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_GetContributors_Response.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CWorkshop_GetContributors_Response : ITypedProtobuf { - static CWorkshop_GetContributors_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CWorkshop_GetContributors_ResponseImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldValueType Contributors { get; } + static CWorkshop_GetContributors_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CWorkshop_GetContributors_ResponseImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldValueType Contributors { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_PopulateItemDescriptions_Request.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_PopulateItemDescriptions_Request.cs index a3c3d3b08..cb97628e6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_PopulateItemDescriptions_Request.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_PopulateItemDescriptions_Request.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CWorkshop_PopulateItemDescriptions_Request : ITypedProtobuf { - static CWorkshop_PopulateItemDescriptions_Request ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CWorkshop_PopulateItemDescriptions_RequestImpl(handle, isManuallyAllocated); - - - public uint Appid { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Languages { get; } + static CWorkshop_PopulateItemDescriptions_Request ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CWorkshop_PopulateItemDescriptions_RequestImpl(handle, isManuallyAllocated); -} + public uint Appid { get; set; } + public IProtobufRepeatedFieldSubMessageType Languages { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_PopulateItemDescriptions_Request_ItemDescriptionsLanguageBlock.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_PopulateItemDescriptions_Request_ItemDescriptionsLanguageBlock.cs index 4f2200e15..41ebc3adb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_PopulateItemDescriptions_Request_ItemDescriptionsLanguageBlock.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_PopulateItemDescriptions_Request_ItemDescriptionsLanguageBlock.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CWorkshop_PopulateItemDescriptions_Request_ItemDescriptionsLanguageBlock : ITypedProtobuf { - static CWorkshop_PopulateItemDescriptions_Request_ItemDescriptionsLanguageBlock ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CWorkshop_PopulateItemDescriptions_Request_ItemDescriptionsLanguageBlockImpl(handle, isManuallyAllocated); - - - public string Language { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Descriptions { get; } + static CWorkshop_PopulateItemDescriptions_Request_ItemDescriptionsLanguageBlock ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CWorkshop_PopulateItemDescriptions_Request_ItemDescriptionsLanguageBlockImpl(handle, isManuallyAllocated); -} + public string Language { get; set; } + public IProtobufRepeatedFieldSubMessageType Descriptions { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_PopulateItemDescriptions_Request_SingleItemDescription.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_PopulateItemDescriptions_Request_SingleItemDescription.cs index f65845000..7786e783b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_PopulateItemDescriptions_Request_SingleItemDescription.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_PopulateItemDescriptions_Request_SingleItemDescription.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CWorkshop_PopulateItemDescriptions_Request_SingleItemDescription : ITypedProtobuf { - static CWorkshop_PopulateItemDescriptions_Request_SingleItemDescription ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CWorkshop_PopulateItemDescriptions_Request_SingleItemDescriptionImpl(handle, isManuallyAllocated); - - - public uint Gameitemid { get; set; } - - - public string ItemDescription { get; set; } - - - public bool OnePerAccount { get; set; } + static CWorkshop_PopulateItemDescriptions_Request_SingleItemDescription ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CWorkshop_PopulateItemDescriptions_Request_SingleItemDescriptionImpl(handle, isManuallyAllocated); -} + public uint Gameitemid { get; set; } + public string ItemDescription { get; set; } + public bool OnePerAccount { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_SetItemPaymentRules_Request.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_SetItemPaymentRules_Request.cs index e50679b77..6367518a3 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_SetItemPaymentRules_Request.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_SetItemPaymentRules_Request.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,27 +6,13 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CWorkshop_SetItemPaymentRules_Request : ITypedProtobuf { - static CWorkshop_SetItemPaymentRules_Request ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CWorkshop_SetItemPaymentRules_RequestImpl(handle, isManuallyAllocated); - - - public uint Appid { get; set; } - - - public uint Gameitemid { get; set; } - - - public IProtobufRepeatedFieldSubMessageType AssociatedWorkshopFiles { get; } - - - public IProtobufRepeatedFieldSubMessageType PartnerAccounts { get; } - - - public bool ValidateOnly { get; set; } - - - public bool MakeWorkshopFilesSubscribable { get; set; } - - - public CWorkshop_SetItemPaymentRules_Request_WorkshopDirectPaymentRule AssociatedWorkshopFileForDirectPayments { get; } - -} + static CWorkshop_SetItemPaymentRules_Request ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CWorkshop_SetItemPaymentRules_RequestImpl(handle, isManuallyAllocated); + + public uint Appid { get; set; } + public uint Gameitemid { get; set; } + public IProtobufRepeatedFieldSubMessageType AssociatedWorkshopFiles { get; } + public IProtobufRepeatedFieldSubMessageType PartnerAccounts { get; } + public bool ValidateOnly { get; set; } + public bool MakeWorkshopFilesSubscribable { get; set; } + public CWorkshop_SetItemPaymentRules_Request_WorkshopDirectPaymentRule AssociatedWorkshopFileForDirectPayments { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_SetItemPaymentRules_Request_PartnerItemPaymentRule.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_SetItemPaymentRules_Request_PartnerItemPaymentRule.cs index 3259d9bef..838b8916b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_SetItemPaymentRules_Request_PartnerItemPaymentRule.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_SetItemPaymentRules_Request_PartnerItemPaymentRule.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CWorkshop_SetItemPaymentRules_Request_PartnerItemPaymentRule : ITypedProtobuf { - static CWorkshop_SetItemPaymentRules_Request_PartnerItemPaymentRule ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CWorkshop_SetItemPaymentRules_Request_PartnerItemPaymentRuleImpl(handle, isManuallyAllocated); - - - public uint AccountId { get; set; } - - - public float RevenuePercentage { get; set; } - - - public string RuleDescription { get; set; } + static CWorkshop_SetItemPaymentRules_Request_PartnerItemPaymentRule ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CWorkshop_SetItemPaymentRules_Request_PartnerItemPaymentRuleImpl(handle, isManuallyAllocated); -} + public uint AccountId { get; set; } + public float RevenuePercentage { get; set; } + public string RuleDescription { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_SetItemPaymentRules_Request_WorkshopDirectPaymentRule.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_SetItemPaymentRules_Request_WorkshopDirectPaymentRule.cs index 04681f273..a4b1b40ec 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_SetItemPaymentRules_Request_WorkshopDirectPaymentRule.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_SetItemPaymentRules_Request_WorkshopDirectPaymentRule.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CWorkshop_SetItemPaymentRules_Request_WorkshopDirectPaymentRule : ITypedProtobuf { - static CWorkshop_SetItemPaymentRules_Request_WorkshopDirectPaymentRule ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CWorkshop_SetItemPaymentRules_Request_WorkshopDirectPaymentRuleImpl(handle, isManuallyAllocated); - - - public ulong WorkshopFileId { get; set; } - - - public string RuleDescription { get; set; } + static CWorkshop_SetItemPaymentRules_Request_WorkshopDirectPaymentRule ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CWorkshop_SetItemPaymentRules_Request_WorkshopDirectPaymentRuleImpl(handle, isManuallyAllocated); -} + public ulong WorkshopFileId { get; set; } + public string RuleDescription { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_SetItemPaymentRules_Request_WorkshopItemPaymentRule.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_SetItemPaymentRules_Request_WorkshopItemPaymentRule.cs index 10b61fd2d..b51025e97 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_SetItemPaymentRules_Request_WorkshopItemPaymentRule.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_SetItemPaymentRules_Request_WorkshopItemPaymentRule.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CWorkshop_SetItemPaymentRules_Request_WorkshopItemPaymentRule : ITypedProtobuf { - static CWorkshop_SetItemPaymentRules_Request_WorkshopItemPaymentRule ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CWorkshop_SetItemPaymentRules_Request_WorkshopItemPaymentRuleImpl(handle, isManuallyAllocated); - - - public ulong WorkshopFileId { get; set; } - - - public float RevenuePercentage { get; set; } - - - public string RuleDescription { get; set; } - - - public uint RuleType { get; set; } + static CWorkshop_SetItemPaymentRules_Request_WorkshopItemPaymentRule ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CWorkshop_SetItemPaymentRules_Request_WorkshopItemPaymentRuleImpl(handle, isManuallyAllocated); -} + public ulong WorkshopFileId { get; set; } + public float RevenuePercentage { get; set; } + public string RuleDescription { get; set; } + public uint RuleType { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_SetItemPaymentRules_Response.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_SetItemPaymentRules_Response.cs index 1393743a7..ea05f9eb1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_SetItemPaymentRules_Response.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/CWorkshop_SetItemPaymentRules_Response.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,7 +6,6 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface CWorkshop_SetItemPaymentRules_Response : ITypedProtobuf { - static CWorkshop_SetItemPaymentRules_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CWorkshop_SetItemPaymentRules_ResponseImpl(handle, isManuallyAllocated); - + static CWorkshop_SetItemPaymentRules_Response ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new CWorkshop_SetItemPaymentRules_ResponseImpl(handle, isManuallyAllocated); -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/DataCenterPing.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/DataCenterPing.cs index 211977942..fc0077dd9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/DataCenterPing.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/DataCenterPing.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface DataCenterPing : ITypedProtobuf { - static DataCenterPing ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new DataCenterPingImpl(handle, isManuallyAllocated); - - - public uint DataCenterId { get; set; } - - - public int Ping { get; set; } + static DataCenterPing ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new DataCenterPingImpl(handle, isManuallyAllocated); -} + public uint DataCenterId { get; set; } + public int Ping { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/DeepPlayerMatchEvent.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/DeepPlayerMatchEvent.cs index 6d84d0ccc..cb573dbd7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/DeepPlayerMatchEvent.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/DeepPlayerMatchEvent.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,48 +6,20 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface DeepPlayerMatchEvent : ITypedProtobuf { - static DeepPlayerMatchEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new DeepPlayerMatchEventImpl(handle, isManuallyAllocated); - - - public uint Accountid { get; set; } - - - public ulong MatchId { get; set; } - - - public uint EventId { get; set; } - - - public uint EventType { get; set; } - - - public bool BPlayingCt { get; set; } - - - public int UserPosX { get; set; } - - - public int UserPosY { get; set; } - - - public int UserPosZ { get; set; } - - - public uint UserDefidx { get; set; } - - - public int OtherPosX { get; set; } - - - public int OtherPosY { get; set; } - - - public int OtherPosZ { get; set; } - - - public uint OtherDefidx { get; set; } - - - public int EventData { get; set; } - -} + static DeepPlayerMatchEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new DeepPlayerMatchEventImpl(handle, isManuallyAllocated); + + public uint Accountid { get; set; } + public ulong MatchId { get; set; } + public uint EventId { get; set; } + public uint EventType { get; set; } + public bool BPlayingCt { get; set; } + public int UserPosX { get; set; } + public int UserPosY { get; set; } + public int UserPosZ { get; set; } + public uint UserDefidx { get; set; } + public int OtherPosX { get; set; } + public int OtherPosY { get; set; } + public int OtherPosZ { get; set; } + public uint OtherDefidx { get; set; } + public int EventData { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/DeepPlayerStatsEntry.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/DeepPlayerStatsEntry.cs index d290abcd5..30b198417 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/DeepPlayerStatsEntry.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/DeepPlayerStatsEntry.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,90 +6,34 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface DeepPlayerStatsEntry : ITypedProtobuf { - static DeepPlayerStatsEntry ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new DeepPlayerStatsEntryImpl(handle, isManuallyAllocated); - - - public uint Accountid { get; set; } - - - public ulong MatchId { get; set; } - - - public uint MmGameMode { get; set; } - - - public uint Mapid { get; set; } - - - public bool BStartingCt { get; set; } - - - public uint MatchOutcome { get; set; } - - - public uint RoundsWon { get; set; } - - - public uint RoundsLost { get; set; } - - - public uint StatScore { get; set; } - - - public uint StatDeaths { get; set; } - - - public uint StatMvps { get; set; } - - - public uint EnemyKills { get; set; } - - - public uint EnemyHeadshots { get; set; } - - - public uint Enemy2ks { get; set; } - - - public uint Enemy3ks { get; set; } - - - public uint Enemy4ks { get; set; } - - - public uint TotalDamage { get; set; } - - - public uint EngagementsEntryCount { get; set; } - - - public uint EngagementsEntryWins { get; set; } - - - public uint Engagements1v1Count { get; set; } - - - public uint Engagements1v1Wins { get; set; } - - - public uint Engagements1v2Count { get; set; } - - - public uint Engagements1v2Wins { get; set; } - - - public uint UtilityCount { get; set; } - - - public uint UtilitySuccess { get; set; } - - - public uint FlashCount { get; set; } - - - public uint FlashSuccess { get; set; } - - - public IProtobufRepeatedFieldValueType Mates { get; } - -} + static DeepPlayerStatsEntry ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new DeepPlayerStatsEntryImpl(handle, isManuallyAllocated); + + public uint Accountid { get; set; } + public ulong MatchId { get; set; } + public uint MmGameMode { get; set; } + public uint Mapid { get; set; } + public bool BStartingCt { get; set; } + public uint MatchOutcome { get; set; } + public uint RoundsWon { get; set; } + public uint RoundsLost { get; set; } + public uint StatScore { get; set; } + public uint StatDeaths { get; set; } + public uint StatMvps { get; set; } + public uint EnemyKills { get; set; } + public uint EnemyHeadshots { get; set; } + public uint Enemy2ks { get; set; } + public uint Enemy3ks { get; set; } + public uint Enemy4ks { get; set; } + public uint TotalDamage { get; set; } + public uint EngagementsEntryCount { get; set; } + public uint EngagementsEntryWins { get; set; } + public uint Engagements1v1Count { get; set; } + public uint Engagements1v1Wins { get; set; } + public uint Engagements1v2Count { get; set; } + public uint Engagements1v2Wins { get; set; } + public uint UtilityCount { get; set; } + public uint UtilitySuccess { get; set; } + public uint FlashCount { get; set; } + public uint FlashSuccess { get; set; } + public IProtobufRepeatedFieldValueType Mates { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/DetailedSearchStatistic.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/DetailedSearchStatistic.cs index f3d929dd6..a18b5c40e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/DetailedSearchStatistic.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/DetailedSearchStatistic.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface DetailedSearchStatistic : ITypedProtobuf { - static DetailedSearchStatistic ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new DetailedSearchStatisticImpl(handle, isManuallyAllocated); - - - public uint GameType { get; set; } - - - public uint SearchTimeAvg { get; set; } - - - public uint PlayersSearching { get; set; } + static DetailedSearchStatistic ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new DetailedSearchStatisticImpl(handle, isManuallyAllocated); -} + public uint GameType { get; set; } + public uint SearchTimeAvg { get; set; } + public uint PlayersSearching { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/GameServerPing.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/GameServerPing.cs index 7bbc84dec..aedad3221 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/GameServerPing.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/GameServerPing.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface GameServerPing : ITypedProtobuf { - static GameServerPing ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new GameServerPingImpl(handle, isManuallyAllocated); - - - public int Ping { get; set; } - - - public uint Ip { get; set; } - - - public uint Instances { get; set; } + static GameServerPing ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new GameServerPingImpl(handle, isManuallyAllocated); -} + public int Ping { get; set; } + public uint Ip { get; set; } + public uint Instances { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/GlobalStatistics.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/GlobalStatistics.cs index 2e5c33ccf..f0a0b8be1 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/GlobalStatistics.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/GlobalStatistics.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,51 +6,21 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface GlobalStatistics : ITypedProtobuf { - static GlobalStatistics ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new GlobalStatisticsImpl(handle, isManuallyAllocated); - - - public uint PlayersOnline { get; set; } - - - public uint ServersOnline { get; set; } - - - public uint PlayersSearching { get; set; } - - - public uint ServersAvailable { get; set; } - - - public uint OngoingMatches { get; set; } - - - public uint SearchTimeAvg { get; set; } - - - public IProtobufRepeatedFieldSubMessageType SearchStatistics { get; } - - - public string MainPostUrl { get; set; } - - - public uint RequiredAppidVersion { get; set; } - - - public uint PricesheetVersion { get; set; } - - - public uint TwitchStreamsVersion { get; set; } - - - public uint ActiveTournamentEventid { get; set; } - - - public uint ActiveSurveyId { get; set; } - - - public uint Rtime32Cur { get; set; } - - - public uint RequiredAppidVersion2 { get; set; } - -} + static GlobalStatistics ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new GlobalStatisticsImpl(handle, isManuallyAllocated); + + public uint PlayersOnline { get; set; } + public uint ServersOnline { get; set; } + public uint PlayersSearching { get; set; } + public uint ServersAvailable { get; set; } + public uint OngoingMatches { get; set; } + public uint SearchTimeAvg { get; set; } + public IProtobufRepeatedFieldSubMessageType SearchStatistics { get; } + public string MainPostUrl { get; set; } + public uint RequiredAppidVersion { get; set; } + public uint PricesheetVersion { get; set; } + public uint TwitchStreamsVersion { get; set; } + public uint ActiveTournamentEventid { get; set; } + public uint ActiveSurveyId { get; set; } + public uint Rtime32Cur { get; set; } + public uint RequiredAppidVersion2 { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/IpAddressMask.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/IpAddressMask.cs index e0bce4d38..23bece56c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/IpAddressMask.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/IpAddressMask.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,24 +6,12 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface IpAddressMask : ITypedProtobuf { - static IpAddressMask ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new IpAddressMaskImpl(handle, isManuallyAllocated); - - - public uint A { get; set; } - - - public uint B { get; set; } - - - public uint C { get; set; } - - - public uint D { get; set; } - - - public uint Bits { get; set; } - - - public uint Token { get; set; } - -} + static IpAddressMask ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new IpAddressMaskImpl(handle, isManuallyAllocated); + + public uint A { get; set; } + public uint B { get; set; } + public uint C { get; set; } + public uint D { get; set; } + public uint Bits { get; set; } + public uint Token { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLDemoHeader.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLDemoHeader.cs index abe97e335..c9346c259 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLDemoHeader.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLDemoHeader.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface MLDemoHeader : ITypedProtobuf { - static MLDemoHeader ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new MLDemoHeaderImpl(handle, isManuallyAllocated); - - - public string MapName { get; set; } - - - public int TickRate { get; set; } - - - public uint Version { get; set; } - - - public uint SteamUniverse { get; set; } + static MLDemoHeader ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new MLDemoHeaderImpl(handle, isManuallyAllocated); -} + public string MapName { get; set; } + public int TickRate { get; set; } + public uint Version { get; set; } + public uint SteamUniverse { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLDict.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLDict.cs index 872111354..ee3920229 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLDict.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLDict.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface MLDict : ITypedProtobuf { - static MLDict ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new MLDictImpl(handle, isManuallyAllocated); - - - public string Key { get; set; } - - - public string ValString { get; set; } - - - public int ValInt { get; set; } - - - public float ValFloat { get; set; } + static MLDict ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new MLDictImpl(handle, isManuallyAllocated); -} + public string Key { get; set; } + public string ValString { get; set; } + public int ValInt { get; set; } + public float ValFloat { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLEvent.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLEvent.cs index 50dca08f3..73f90df7f 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLEvent.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLEvent.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface MLEvent : ITypedProtobuf { - static MLEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new MLEventImpl(handle, isManuallyAllocated); - - - public string EventName { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Data { get; } + static MLEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new MLEventImpl(handle, isManuallyAllocated); -} + public string EventName { get; set; } + public IProtobufRepeatedFieldSubMessageType Data { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLGameState.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLGameState.cs index 657c7fb7d..05b0a3a9b 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLGameState.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLGameState.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface MLGameState : ITypedProtobuf { - static MLGameState ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new MLGameStateImpl(handle, isManuallyAllocated); - - - public MLMatchState Match { get; } - - - public MLRoundState Round { get; } - - - public IProtobufRepeatedFieldSubMessageType Players { get; } + static MLGameState ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new MLGameStateImpl(handle, isManuallyAllocated); -} + public MLMatchState Match { get; } + public MLRoundState Round { get; } + public IProtobufRepeatedFieldSubMessageType Players { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLMatchState.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLMatchState.cs index f86d5c46c..7702a1b56 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLMatchState.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLMatchState.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,21 +6,11 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface MLMatchState : ITypedProtobuf { - static MLMatchState ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new MLMatchStateImpl(handle, isManuallyAllocated); - - - public string GameMode { get; set; } - - - public string Phase { get; set; } - - - public int Round { get; set; } - - - public int ScoreCt { get; set; } - - - public int ScoreT { get; set; } - -} + static MLMatchState ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new MLMatchStateImpl(handle, isManuallyAllocated); + + public string GameMode { get; set; } + public string Phase { get; set; } + public int Round { get; set; } + public int ScoreCt { get; set; } + public int ScoreT { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLPlayerState.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLPlayerState.cs index 1ed2643df..8eb945b20 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLPlayerState.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLPlayerState.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,66 +6,26 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface MLPlayerState : ITypedProtobuf { - static MLPlayerState ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new MLPlayerStateImpl(handle, isManuallyAllocated); - - - public int AccountId { get; set; } - - - public int PlayerSlot { get; set; } - - - public int Entindex { get; set; } - - - public string Name { get; set; } - - - public string Clan { get; set; } - - - public ETeam Team { get; set; } - - - public Vector Abspos { get; set; } - - - public QAngle Eyeangle { get; set; } - - - public Vector EyeangleFwd { get; set; } - - - public int Health { get; set; } - - - public int Armor { get; set; } - - - public float Flashed { get; set; } - - - public float Smoked { get; set; } - - - public int Money { get; set; } - - - public int RoundKills { get; set; } - - - public int RoundKillhs { get; set; } - - - public float Burning { get; set; } - - - public bool Helmet { get; set; } - - - public bool DefuseKit { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Weapons { get; } - -} + static MLPlayerState ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new MLPlayerStateImpl(handle, isManuallyAllocated); + + public int AccountId { get; set; } + public int PlayerSlot { get; set; } + public int Entindex { get; set; } + public string Name { get; set; } + public string Clan { get; set; } + public ETeam Team { get; set; } + public Vector Abspos { get; set; } + public QAngle Eyeangle { get; set; } + public Vector EyeangleFwd { get; set; } + public int Health { get; set; } + public int Armor { get; set; } + public float Flashed { get; set; } + public float Smoked { get; set; } + public int Money { get; set; } + public int RoundKills { get; set; } + public int RoundKillhs { get; set; } + public float Burning { get; set; } + public bool Helmet { get; set; } + public bool DefuseKit { get; set; } + public IProtobufRepeatedFieldSubMessageType Weapons { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLRoundState.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLRoundState.cs index 8e5ad0c6c..77805e4e2 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLRoundState.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLRoundState.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface MLRoundState : ITypedProtobuf { - static MLRoundState ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new MLRoundStateImpl(handle, isManuallyAllocated); - - - public string Phase { get; set; } - - - public ETeam WinTeam { get; set; } - - - public string BombState { get; set; } + static MLRoundState ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new MLRoundStateImpl(handle, isManuallyAllocated); -} + public string Phase { get; set; } + public ETeam WinTeam { get; set; } + public string BombState { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLTick.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLTick.cs index d9ced5570..62890fc34 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLTick.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLTick.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface MLTick : ITypedProtobuf { - static MLTick ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new MLTickImpl(handle, isManuallyAllocated); - - - public int TickCount { get; set; } - - - public MLGameState State { get; } - - - public IProtobufRepeatedFieldSubMessageType Events { get; } + static MLTick ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new MLTickImpl(handle, isManuallyAllocated); -} + public int TickCount { get; set; } + public MLGameState State { get; } + public IProtobufRepeatedFieldSubMessageType Events { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLWeaponState.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLWeaponState.cs index 04664f231..27053ded6 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLWeaponState.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MLWeaponState.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,30 +6,14 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface MLWeaponState : ITypedProtobuf { - static MLWeaponState ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new MLWeaponStateImpl(handle, isManuallyAllocated); - - - public int Index { get; set; } - - - public string Name { get; set; } - - - public EWeaponType Type { get; set; } - - - public int AmmoClip { get; set; } - - - public int AmmoClipMax { get; set; } - - - public int AmmoReserve { get; set; } - - - public string State { get; set; } - - - public float RecoilIndex { get; set; } - -} + static MLWeaponState ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new MLWeaponStateImpl(handle, isManuallyAllocated); + + public int Index { get; set; } + public string Name { get; set; } + public EWeaponType Type { get; set; } + public int AmmoClip { get; set; } + public int AmmoClipMax { get; set; } + public int AmmoReserve { get; set; } + public string State { get; set; } + public float RecoilIndex { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MatchEndItemUpdates.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MatchEndItemUpdates.cs index 813ffea2d..6aed1a601 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MatchEndItemUpdates.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/MatchEndItemUpdates.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface MatchEndItemUpdates : ITypedProtobuf { - static MatchEndItemUpdates ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new MatchEndItemUpdatesImpl(handle, isManuallyAllocated); - - - public ulong ItemId { get; set; } - - - public uint ItemAttrDefidx { get; set; } - - - public uint ItemAttrDeltaValue { get; set; } + static MatchEndItemUpdates ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new MatchEndItemUpdatesImpl(handle, isManuallyAllocated); -} + public ulong ItemId { get; set; } + public uint ItemAttrDefidx { get; set; } + public uint ItemAttrDeltaValue { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/NetMessageConnectionClosed.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/NetMessageConnectionClosed.cs index c9dc934d1..e3c5198fb 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/NetMessageConnectionClosed.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/NetMessageConnectionClosed.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface NetMessageConnectionClosed : ITypedProtobuf { - static NetMessageConnectionClosed ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new NetMessageConnectionClosedImpl(handle, isManuallyAllocated); - - - public uint Reason { get; set; } - - - public string Message { get; set; } + static NetMessageConnectionClosed ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new NetMessageConnectionClosedImpl(handle, isManuallyAllocated); -} + public uint Reason { get; set; } + public string Message { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/NetMessageConnectionCrashed.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/NetMessageConnectionCrashed.cs index b4275fd66..079587574 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/NetMessageConnectionCrashed.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/NetMessageConnectionCrashed.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface NetMessageConnectionCrashed : ITypedProtobuf { - static NetMessageConnectionCrashed ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new NetMessageConnectionCrashedImpl(handle, isManuallyAllocated); - - - public uint Reason { get; set; } - - - public string Message { get; set; } + static NetMessageConnectionCrashed ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new NetMessageConnectionCrashedImpl(handle, isManuallyAllocated); -} + public uint Reason { get; set; } + public string Message { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/NetMessagePacketEnd.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/NetMessagePacketEnd.cs index 127c2649d..a354b6a35 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/NetMessagePacketEnd.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/NetMessagePacketEnd.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,7 +6,6 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface NetMessagePacketEnd : ITypedProtobuf { - static NetMessagePacketEnd ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new NetMessagePacketEndImpl(handle, isManuallyAllocated); - + static NetMessagePacketEnd ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new NetMessagePacketEndImpl(handle, isManuallyAllocated); -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/NetMessagePacketStart.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/NetMessagePacketStart.cs index f32e1cf63..0fd60451d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/NetMessagePacketStart.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/NetMessagePacketStart.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,7 +6,6 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface NetMessagePacketStart : ITypedProtobuf { - static NetMessagePacketStart ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new NetMessagePacketStartImpl(handle, isManuallyAllocated); - + static NetMessagePacketStart ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new NetMessagePacketStartImpl(handle, isManuallyAllocated); -} +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/NetMessageSplitscreenUserChanged.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/NetMessageSplitscreenUserChanged.cs index 5db16e750..59d3355fe 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/NetMessageSplitscreenUserChanged.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/NetMessageSplitscreenUserChanged.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,9 +6,7 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface NetMessageSplitscreenUserChanged : ITypedProtobuf { - static NetMessageSplitscreenUserChanged ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new NetMessageSplitscreenUserChangedImpl(handle, isManuallyAllocated); - - - public uint Slot { get; set; } + static NetMessageSplitscreenUserChanged ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new NetMessageSplitscreenUserChangedImpl(handle, isManuallyAllocated); -} + public uint Slot { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/OperationalStatisticDescription.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/OperationalStatisticDescription.cs index 3d3936fd5..a3ab05310 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/OperationalStatisticDescription.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/OperationalStatisticDescription.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface OperationalStatisticDescription : ITypedProtobuf { - static OperationalStatisticDescription ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new OperationalStatisticDescriptionImpl(handle, isManuallyAllocated); - - - public string Name { get; set; } - - - public uint Idkey { get; set; } + static OperationalStatisticDescription ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new OperationalStatisticDescriptionImpl(handle, isManuallyAllocated); -} + public string Name { get; set; } + public uint Idkey { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/OperationalStatisticElement.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/OperationalStatisticElement.cs index 4885146aa..9d55f4a75 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/OperationalStatisticElement.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/OperationalStatisticElement.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface OperationalStatisticElement : ITypedProtobuf { - static OperationalStatisticElement ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new OperationalStatisticElementImpl(handle, isManuallyAllocated); - - - public uint Idkey { get; set; } - - - public IProtobufRepeatedFieldValueType Values { get; } + static OperationalStatisticElement ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new OperationalStatisticElementImpl(handle, isManuallyAllocated); -} + public uint Idkey { get; set; } + public IProtobufRepeatedFieldValueType Values { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/OperationalStatisticsPacket.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/OperationalStatisticsPacket.cs index 926807eb0..8f0e28ccd 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/OperationalStatisticsPacket.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/OperationalStatisticsPacket.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface OperationalStatisticsPacket : ITypedProtobuf { - static OperationalStatisticsPacket ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new OperationalStatisticsPacketImpl(handle, isManuallyAllocated); - - - public int Packetid { get; set; } - - - public int Mstimestamp { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Values { get; } + static OperationalStatisticsPacket ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new OperationalStatisticsPacketImpl(handle, isManuallyAllocated); -} + public int Packetid { get; set; } + public int Mstimestamp { get; set; } + public IProtobufRepeatedFieldSubMessageType Values { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/OperationalVarValue.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/OperationalVarValue.cs index 853c42328..f321014d5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/OperationalVarValue.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/OperationalVarValue.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface OperationalVarValue : ITypedProtobuf { - static OperationalVarValue ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new OperationalVarValueImpl(handle, isManuallyAllocated); - - - public string Name { get; set; } - - - public int Ivalue { get; set; } - - - public float Fvalue { get; set; } - - - public byte[] Svalue { get; set; } + static OperationalVarValue ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new OperationalVarValueImpl(handle, isManuallyAllocated); -} + public string Name { get; set; } + public int Ivalue { get; set; } + public float Fvalue { get; set; } + public byte[] Svalue { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/PlayerCommendationInfo.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/PlayerCommendationInfo.cs index e7325b286..8f66e2d73 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/PlayerCommendationInfo.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/PlayerCommendationInfo.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface PlayerCommendationInfo : ITypedProtobuf { - static PlayerCommendationInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new PlayerCommendationInfoImpl(handle, isManuallyAllocated); - - - public uint CmdFriendly { get; set; } - - - public uint CmdTeaching { get; set; } - - - public uint CmdLeader { get; set; } + static PlayerCommendationInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new PlayerCommendationInfoImpl(handle, isManuallyAllocated); -} + public uint CmdFriendly { get; set; } + public uint CmdTeaching { get; set; } + public uint CmdLeader { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/PlayerDecalDigitalSignature.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/PlayerDecalDigitalSignature.cs index 4ce826f03..b1cb60037 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/PlayerDecalDigitalSignature.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/PlayerDecalDigitalSignature.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,48 +6,20 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface PlayerDecalDigitalSignature : ITypedProtobuf { - static PlayerDecalDigitalSignature ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new PlayerDecalDigitalSignatureImpl(handle, isManuallyAllocated); - - - public byte[] Signature { get; set; } - - - public uint Accountid { get; set; } - - - public uint Rtime { get; set; } - - - public IProtobufRepeatedFieldValueType Endpos { get; } - - - public IProtobufRepeatedFieldValueType Startpos { get; } - - - public IProtobufRepeatedFieldValueType Left { get; } - - - public uint TxDefidx { get; set; } - - - public int Entindex { get; set; } - - - public uint Hitbox { get; set; } - - - public float Creationtime { get; set; } - - - public uint Equipslot { get; set; } - - - public uint TraceId { get; set; } - - - public IProtobufRepeatedFieldValueType Normal { get; } - - - public uint TintId { get; set; } - -} + static PlayerDecalDigitalSignature ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new PlayerDecalDigitalSignatureImpl(handle, isManuallyAllocated); + + public byte[] Signature { get; set; } + public uint Accountid { get; set; } + public uint Rtime { get; set; } + public IProtobufRepeatedFieldValueType Endpos { get; } + public IProtobufRepeatedFieldValueType Startpos { get; } + public IProtobufRepeatedFieldValueType Left { get; } + public uint TxDefidx { get; set; } + public int Entindex { get; set; } + public uint Hitbox { get; set; } + public float Creationtime { get; set; } + public uint Equipslot { get; set; } + public uint TraceId { get; set; } + public IProtobufRepeatedFieldValueType Normal { get; } + public uint TintId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/PlayerMedalsInfo.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/PlayerMedalsInfo.cs index 584873a1c..b41e65ed5 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/PlayerMedalsInfo.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/PlayerMedalsInfo.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface PlayerMedalsInfo : ITypedProtobuf { - static PlayerMedalsInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new PlayerMedalsInfoImpl(handle, isManuallyAllocated); - - - public IProtobufRepeatedFieldValueType DisplayItemsDefidx { get; } - - - public uint FeaturedDisplayItemDefidx { get; set; } + static PlayerMedalsInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new PlayerMedalsInfoImpl(handle, isManuallyAllocated); -} + public IProtobufRepeatedFieldValueType DisplayItemsDefidx { get; } + public uint FeaturedDisplayItemDefidx { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/PlayerQuestData.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/PlayerQuestData.cs index 5c4460281..7f1bc3eb7 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/PlayerQuestData.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/PlayerQuestData.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,30 +6,14 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface PlayerQuestData : ITypedProtobuf { - static PlayerQuestData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new PlayerQuestDataImpl(handle, isManuallyAllocated); - - - public uint QuesterAccountId { get; set; } - - - public IProtobufRepeatedFieldSubMessageType QuestItemData { get; } - - - public IProtobufRepeatedFieldSubMessageType XpProgressData { get; } - - - public uint TimePlayed { get; set; } - - - public uint MmGameMode { get; set; } - - - public IProtobufRepeatedFieldSubMessageType ItemUpdates { get; } - - - public bool OperationPointsEligible { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Userstatchanges { get; } - -} + static PlayerQuestData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new PlayerQuestDataImpl(handle, isManuallyAllocated); + + public uint QuesterAccountId { get; set; } + public IProtobufRepeatedFieldSubMessageType QuestItemData { get; } + public IProtobufRepeatedFieldSubMessageType XpProgressData { get; } + public uint TimePlayed { get; set; } + public uint MmGameMode { get; set; } + public IProtobufRepeatedFieldSubMessageType ItemUpdates { get; } + public bool OperationPointsEligible { get; set; } + public IProtobufRepeatedFieldSubMessageType Userstatchanges { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/PlayerQuestData_QuestItemData.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/PlayerQuestData_QuestItemData.cs index 01f6941b6..256f1a83c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/PlayerQuestData_QuestItemData.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/PlayerQuestData_QuestItemData.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,27 +6,13 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface PlayerQuestData_QuestItemData : ITypedProtobuf { - static PlayerQuestData_QuestItemData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new PlayerQuestData_QuestItemDataImpl(handle, isManuallyAllocated); - - - public ulong QuestId { get; set; } - - - public int QuestNormalPointsEarned { get; set; } - - - public int QuestBonusPointsEarned { get; set; } - - - public IProtobufRepeatedFieldValueType QuestNormalPointsRequired { get; } - - - public IProtobufRepeatedFieldValueType QuestRewardXp { get; } - - - public int QuestPeriod { get; set; } - - - public QuestType QuestType { get; set; } - -} + static PlayerQuestData_QuestItemData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new PlayerQuestData_QuestItemDataImpl(handle, isManuallyAllocated); + + public ulong QuestId { get; set; } + public int QuestNormalPointsEarned { get; set; } + public int QuestBonusPointsEarned { get; set; } + public IProtobufRepeatedFieldValueType QuestNormalPointsRequired { get; } + public IProtobufRepeatedFieldValueType QuestRewardXp { get; } + public int QuestPeriod { get; set; } + public QuestType QuestType { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/PlayerRankingInfo.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/PlayerRankingInfo.cs index 4d5c7ef4e..a3be28c33 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/PlayerRankingInfo.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/PlayerRankingInfo.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,51 +6,21 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface PlayerRankingInfo : ITypedProtobuf { - static PlayerRankingInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new PlayerRankingInfoImpl(handle, isManuallyAllocated); - - - public uint AccountId { get; set; } - - - public uint RankId { get; set; } - - - public uint Wins { get; set; } - - - public float RankChange { get; set; } - - - public uint RankTypeId { get; set; } - - - public uint TvControl { get; set; } - - - public ulong RankWindowStats { get; set; } - - - public string LeaderboardName { get; set; } - - - public uint RankIfWin { get; set; } - - - public uint RankIfLose { get; set; } - - - public uint RankIfTie { get; set; } - - - public IProtobufRepeatedFieldSubMessageType PerMapRank { get; } - - - public uint LeaderboardNameStatus { get; set; } - - - public uint HighestRank { get; set; } - - - public uint RankExpiry { get; set; } - -} + static PlayerRankingInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new PlayerRankingInfoImpl(handle, isManuallyAllocated); + + public uint AccountId { get; set; } + public uint RankId { get; set; } + public uint Wins { get; set; } + public float RankChange { get; set; } + public uint RankTypeId { get; set; } + public uint TvControl { get; set; } + public ulong RankWindowStats { get; set; } + public string LeaderboardName { get; set; } + public uint RankIfWin { get; set; } + public uint RankIfLose { get; set; } + public uint RankIfTie { get; set; } + public IProtobufRepeatedFieldSubMessageType PerMapRank { get; } + public uint LeaderboardNameStatus { get; set; } + public uint HighestRank { get; set; } + public uint RankExpiry { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/PlayerRankingInfo_PerMapRank.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/PlayerRankingInfo_PerMapRank.cs index 1fe51c335..2bc27b2a0 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/PlayerRankingInfo_PerMapRank.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/PlayerRankingInfo_PerMapRank.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface PlayerRankingInfo_PerMapRank : ITypedProtobuf { - static PlayerRankingInfo_PerMapRank ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new PlayerRankingInfo_PerMapRankImpl(handle, isManuallyAllocated); - - - public uint MapId { get; set; } - - - public uint RankId { get; set; } - - - public uint Wins { get; set; } + static PlayerRankingInfo_PerMapRank ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new PlayerRankingInfo_PerMapRankImpl(handle, isManuallyAllocated); -} + public uint MapId { get; set; } + public uint RankId { get; set; } + public uint Wins { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/ProtoFlattenedSerializerField_t.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/ProtoFlattenedSerializerField_t.cs index 2ff4250a1..84009fdbf 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/ProtoFlattenedSerializerField_t.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/ProtoFlattenedSerializerField_t.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,42 +6,18 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface ProtoFlattenedSerializerField_t : ITypedProtobuf { - static ProtoFlattenedSerializerField_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new ProtoFlattenedSerializerField_tImpl(handle, isManuallyAllocated); - - - public int VarTypeSym { get; set; } - - - public int VarNameSym { get; set; } - - - public int BitCount { get; set; } - - - public float LowValue { get; set; } - - - public float HighValue { get; set; } - - - public int EncodeFlags { get; set; } - - - public int FieldSerializerNameSym { get; set; } - - - public int FieldSerializerVersion { get; set; } - - - public int SendNodeSym { get; set; } - - - public int VarEncoderSym { get; set; } - - - public IProtobufRepeatedFieldSubMessageType PolymorphicTypes { get; } - - - public int VarSerializerSym { get; set; } - -} + static ProtoFlattenedSerializerField_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new ProtoFlattenedSerializerField_tImpl(handle, isManuallyAllocated); + + public int VarTypeSym { get; set; } + public int VarNameSym { get; set; } + public int BitCount { get; set; } + public float LowValue { get; set; } + public float HighValue { get; set; } + public int EncodeFlags { get; set; } + public int FieldSerializerNameSym { get; set; } + public int FieldSerializerVersion { get; set; } + public int SendNodeSym { get; set; } + public int VarEncoderSym { get; set; } + public IProtobufRepeatedFieldSubMessageType PolymorphicTypes { get; } + public int VarSerializerSym { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/ProtoFlattenedSerializerField_t_polymorphic_field_t.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/ProtoFlattenedSerializerField_t_polymorphic_field_t.cs index 77aa55c54..7f45e832d 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/ProtoFlattenedSerializerField_t_polymorphic_field_t.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/ProtoFlattenedSerializerField_t_polymorphic_field_t.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface ProtoFlattenedSerializerField_t_polymorphic_field_t : ITypedProtobuf { - static ProtoFlattenedSerializerField_t_polymorphic_field_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new ProtoFlattenedSerializerField_t_polymorphic_field_tImpl(handle, isManuallyAllocated); - - - public int PolymorphicFieldSerializerNameSym { get; set; } - - - public int PolymorphicFieldSerializerVersion { get; set; } + static ProtoFlattenedSerializerField_t_polymorphic_field_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new ProtoFlattenedSerializerField_t_polymorphic_field_tImpl(handle, isManuallyAllocated); -} + public int PolymorphicFieldSerializerNameSym { get; set; } + public int PolymorphicFieldSerializerVersion { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/ProtoFlattenedSerializer_t.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/ProtoFlattenedSerializer_t.cs index f70ee9016..4656abae9 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/ProtoFlattenedSerializer_t.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/ProtoFlattenedSerializer_t.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,15 +6,9 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface ProtoFlattenedSerializer_t : ITypedProtobuf { - static ProtoFlattenedSerializer_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new ProtoFlattenedSerializer_tImpl(handle, isManuallyAllocated); - - - public int SerializerNameSym { get; set; } - - - public int SerializerVersion { get; set; } - - - public IProtobufRepeatedFieldValueType FieldsIndex { get; } + static ProtoFlattenedSerializer_t ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new ProtoFlattenedSerializer_tImpl(handle, isManuallyAllocated); -} + public int SerializerNameSym { get; set; } + public int SerializerVersion { get; set; } + public IProtobufRepeatedFieldValueType FieldsIndex { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/ScoreLeaderboardData.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/ScoreLeaderboardData.cs index 6d4883bba..3fa5f1bec 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/ScoreLeaderboardData.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/ScoreLeaderboardData.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,21 +6,11 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface ScoreLeaderboardData : ITypedProtobuf { - static ScoreLeaderboardData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new ScoreLeaderboardDataImpl(handle, isManuallyAllocated); - - - public ulong QuestId { get; set; } - - - public uint Score { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Accountentries { get; } - - - public IProtobufRepeatedFieldSubMessageType Matchentries { get; } - - - public string LeaderboardName { get; set; } - -} + static ScoreLeaderboardData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new ScoreLeaderboardDataImpl(handle, isManuallyAllocated); + + public ulong QuestId { get; set; } + public uint Score { get; set; } + public IProtobufRepeatedFieldSubMessageType Accountentries { get; } + public IProtobufRepeatedFieldSubMessageType Matchentries { get; } + public string LeaderboardName { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/ScoreLeaderboardData_AccountEntries.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/ScoreLeaderboardData_AccountEntries.cs index 7f21508b6..ac1915048 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/ScoreLeaderboardData_AccountEntries.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/ScoreLeaderboardData_AccountEntries.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface ScoreLeaderboardData_AccountEntries : ITypedProtobuf { - static ScoreLeaderboardData_AccountEntries ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new ScoreLeaderboardData_AccountEntriesImpl(handle, isManuallyAllocated); - - - public uint Accountid { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Entries { get; } + static ScoreLeaderboardData_AccountEntries ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new ScoreLeaderboardData_AccountEntriesImpl(handle, isManuallyAllocated); -} + public uint Accountid { get; set; } + public IProtobufRepeatedFieldSubMessageType Entries { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/ScoreLeaderboardData_Entry.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/ScoreLeaderboardData_Entry.cs index 86a79384f..72699f6ba 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/ScoreLeaderboardData_Entry.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/ScoreLeaderboardData_Entry.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface ScoreLeaderboardData_Entry : ITypedProtobuf { - static ScoreLeaderboardData_Entry ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new ScoreLeaderboardData_EntryImpl(handle, isManuallyAllocated); - - - public uint Tag { get; set; } - - - public uint Val { get; set; } + static ScoreLeaderboardData_Entry ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new ScoreLeaderboardData_EntryImpl(handle, isManuallyAllocated); -} + public uint Tag { get; set; } + public uint Val { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/ServerHltvInfo.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/ServerHltvInfo.cs index d71d424b9..c347b905c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/ServerHltvInfo.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/ServerHltvInfo.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,66 +6,26 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface ServerHltvInfo : ITypedProtobuf { - static ServerHltvInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new ServerHltvInfoImpl(handle, isManuallyAllocated); - - - public uint TvUdpPort { get; set; } - - - public ulong TvWatchKey { get; set; } - - - public uint TvSlots { get; set; } - - - public uint TvClients { get; set; } - - - public uint TvProxies { get; set; } - - - public uint TvTime { get; set; } - - - public uint GameType { get; set; } - - - public string GameMapgroup { get; set; } - - - public string GameMap { get; set; } - - - public ulong TvMasterSteamid { get; set; } - - - public uint TvLocalSlots { get; set; } - - - public uint TvLocalClients { get; set; } - - - public uint TvLocalProxies { get; set; } - - - public uint TvRelaySlots { get; set; } - - - public uint TvRelayClients { get; set; } - - - public uint TvRelayProxies { get; set; } - - - public uint TvRelayAddress { get; set; } - - - public uint TvRelayPort { get; set; } - - - public ulong TvRelaySteamid { get; set; } - - - public uint Flags { get; set; } - -} + static ServerHltvInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new ServerHltvInfoImpl(handle, isManuallyAllocated); + + public uint TvUdpPort { get; set; } + public ulong TvWatchKey { get; set; } + public uint TvSlots { get; set; } + public uint TvClients { get; set; } + public uint TvProxies { get; set; } + public uint TvTime { get; set; } + public uint GameType { get; set; } + public string GameMapgroup { get; set; } + public string GameMap { get; set; } + public ulong TvMasterSteamid { get; set; } + public uint TvLocalSlots { get; set; } + public uint TvLocalClients { get; set; } + public uint TvLocalProxies { get; set; } + public uint TvRelaySlots { get; set; } + public uint TvRelayClients { get; set; } + public uint TvRelayProxies { get; set; } + public uint TvRelayAddress { get; set; } + public uint TvRelayPort { get; set; } + public ulong TvRelaySteamid { get; set; } + public uint Flags { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/TournamentEvent.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/TournamentEvent.cs index dbcb1831b..e8f9393ed 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/TournamentEvent.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/TournamentEvent.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,33 +6,15 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface TournamentEvent : ITypedProtobuf { - static TournamentEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new TournamentEventImpl(handle, isManuallyAllocated); - - - public int EventId { get; set; } - - - public string EventTag { get; set; } - - - public string EventName { get; set; } - - - public uint EventTimeStart { get; set; } - - - public uint EventTimeEnd { get; set; } - - - public int EventPublic { get; set; } - - - public int EventStageId { get; set; } - - - public string EventStageName { get; set; } - - - public uint ActiveSectionId { get; set; } - -} + static TournamentEvent ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new TournamentEventImpl(handle, isManuallyAllocated); + + public int EventId { get; set; } + public string EventTag { get; set; } + public string EventName { get; set; } + public uint EventTimeStart { get; set; } + public uint EventTimeEnd { get; set; } + public int EventPublic { get; set; } + public int EventStageId { get; set; } + public string EventStageName { get; set; } + public uint ActiveSectionId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/TournamentMatchSetup.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/TournamentMatchSetup.cs index 91f27ebb1..39f2c0f53 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/TournamentMatchSetup.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/TournamentMatchSetup.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,18 +6,10 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface TournamentMatchSetup : ITypedProtobuf { - static TournamentMatchSetup ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new TournamentMatchSetupImpl(handle, isManuallyAllocated); - - - public int EventId { get; set; } - - - public int TeamIdCt { get; set; } - - - public int TeamIdT { get; set; } - - - public int EventStageId { get; set; } + static TournamentMatchSetup ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new TournamentMatchSetupImpl(handle, isManuallyAllocated); -} + public int EventId { get; set; } + public int TeamIdCt { get; set; } + public int TeamIdT { get; set; } + public int EventStageId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/TournamentPlayer.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/TournamentPlayer.cs index fbfcc4bde..4a656c96c 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/TournamentPlayer.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/TournamentPlayer.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,27 +6,13 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface TournamentPlayer : ITypedProtobuf { - static TournamentPlayer ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new TournamentPlayerImpl(handle, isManuallyAllocated); - - - public uint AccountId { get; set; } - - - public string PlayerNick { get; set; } - - - public string PlayerName { get; set; } - - - public uint PlayerDob { get; set; } - - - public string PlayerFlag { get; set; } - - - public string PlayerLocation { get; set; } - - - public string PlayerDesc { get; set; } - -} + static TournamentPlayer ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new TournamentPlayerImpl(handle, isManuallyAllocated); + + public uint AccountId { get; set; } + public string PlayerNick { get; set; } + public string PlayerName { get; set; } + public uint PlayerDob { get; set; } + public string PlayerFlag { get; set; } + public string PlayerLocation { get; set; } + public string PlayerDesc { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/TournamentTeam.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/TournamentTeam.cs index 34ec2b91e..3873a49ae 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/TournamentTeam.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/TournamentTeam.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,21 +6,11 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface TournamentTeam : ITypedProtobuf { - static TournamentTeam ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new TournamentTeamImpl(handle, isManuallyAllocated); - - - public int TeamId { get; set; } - - - public string TeamTag { get; set; } - - - public string TeamFlag { get; set; } - - - public string TeamName { get; set; } - - - public IProtobufRepeatedFieldSubMessageType Players { get; } - -} + static TournamentTeam ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new TournamentTeamImpl(handle, isManuallyAllocated); + + public int TeamId { get; set; } + public string TeamTag { get; set; } + public string TeamFlag { get; set; } + public string TeamName { get; set; } + public IProtobufRepeatedFieldSubMessageType Players { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/VacNetShot.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/VacNetShot.cs index 8b98a16ff..e283ecdba 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/VacNetShot.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/VacNetShot.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,27 +6,13 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface VacNetShot : ITypedProtobuf { - static VacNetShot ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new VacNetShotImpl(handle, isManuallyAllocated); - - - public ulong SteamidPlayer { get; set; } - - - public int RoundNumber { get; set; } - - - public int HitType { get; set; } - - - public int WeaponType { get; set; } - - - public float DistanceToHurtTarget { get; set; } - - - public IProtobufRepeatedFieldValueType DeltaYawWindow { get; } - - - public IProtobufRepeatedFieldValueType DeltaPitchWindow { get; } - -} + static VacNetShot ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new VacNetShotImpl(handle, isManuallyAllocated); + + public ulong SteamidPlayer { get; set; } + public int RoundNumber { get; set; } + public int HitType { get; set; } + public int WeaponType { get; set; } + public float DistanceToHurtTarget { get; set; } + public IProtobufRepeatedFieldValueType DeltaYawWindow { get; } + public IProtobufRepeatedFieldValueType DeltaPitchWindow { get; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/WatchableMatchInfo.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/WatchableMatchInfo.cs index 3cc4ea7e1..8f55aa839 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/WatchableMatchInfo.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/WatchableMatchInfo.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,45 +6,19 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface WatchableMatchInfo : ITypedProtobuf { - static WatchableMatchInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new WatchableMatchInfoImpl(handle, isManuallyAllocated); - - - public uint ServerIp { get; set; } - - - public uint TvPort { get; set; } - - - public uint TvSpectators { get; set; } - - - public uint TvTime { get; set; } - - - public byte[] TvWatchPassword { get; set; } - - - public ulong ClDecryptdataKey { get; set; } - - - public ulong ClDecryptdataKeyPub { get; set; } - - - public uint GameType { get; set; } - - - public string GameMapgroup { get; set; } - - - public string GameMap { get; set; } - - - public ulong ServerId { get; set; } - - - public ulong MatchId { get; set; } - - - public ulong ReservationId { get; set; } - -} + static WatchableMatchInfo ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new WatchableMatchInfoImpl(handle, isManuallyAllocated); + + public uint ServerIp { get; set; } + public uint TvPort { get; set; } + public uint TvSpectators { get; set; } + public uint TvTime { get; set; } + public byte[] TvWatchPassword { get; set; } + public ulong ClDecryptdataKey { get; set; } + public ulong ClDecryptdataKeyPub { get; set; } + public uint GameType { get; set; } + public string GameMapgroup { get; set; } + public string GameMap { get; set; } + public ulong ServerId { get; set; } + public ulong MatchId { get; set; } + public ulong ReservationId { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/XpProgressData.cs b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/XpProgressData.cs index 42a0cba43..3acb3706e 100644 --- a/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/XpProgressData.cs +++ b/managed/src/SwiftlyS2.Generated/Protobufs/Interfaces/XpProgressData.cs @@ -1,4 +1,3 @@ - using SwiftlyS2.Core.ProtobufDefinitions; using SwiftlyS2.Shared.Natives; using SwiftlyS2.Shared.NetMessages; @@ -7,12 +6,8 @@ namespace SwiftlyS2.Shared.ProtobufDefinitions; public interface XpProgressData : ITypedProtobuf { - static XpProgressData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new XpProgressDataImpl(handle, isManuallyAllocated); - - - public uint XpPoints { get; set; } - - - public int XpCategory { get; set; } + static XpProgressData ITypedProtobuf.Wrap(nint handle, bool isManuallyAllocated) => new XpProgressDataImpl(handle, isManuallyAllocated); -} + public uint XpPoints { get; set; } + public int XpCategory { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Schemas/Classes/CCSGameRulesImpl.cs b/managed/src/SwiftlyS2.Generated/Schemas/Classes/CCSGameRulesImpl.cs index 77770906d..b6979d154 100644 --- a/managed/src/SwiftlyS2.Generated/Schemas/Classes/CCSGameRulesImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Schemas/Classes/CCSGameRulesImpl.cs @@ -1100,18 +1100,18 @@ public ref Vector MainCTSpawnPos { } private static nint? _CTSpawnPointsMasterListOffset; - public ref CUtlVector> CTSpawnPointsMasterList { + public ref CUtlVector> CTSpawnPointsMasterList { get { _CTSpawnPointsMasterListOffset = _CTSpawnPointsMasterListOffset ?? Schema.GetOffset(0x6295CF6582901578); - return ref _Handle.AsRef>>(_CTSpawnPointsMasterListOffset!.Value); + return ref _Handle.AsRef>>(_CTSpawnPointsMasterListOffset!.Value); } } private static nint? _TerroristSpawnPointsMasterListOffset; - public ref CUtlVector> TerroristSpawnPointsMasterList { + public ref CUtlVector> TerroristSpawnPointsMasterList { get { _TerroristSpawnPointsMasterListOffset = _TerroristSpawnPointsMasterListOffset ?? Schema.GetOffset(0x6295CF65EC3D3B5D); - return ref _Handle.AsRef>>(_TerroristSpawnPointsMasterListOffset!.Value); + return ref _Handle.AsRef>>(_TerroristSpawnPointsMasterListOffset!.Value); } } private static nint? _RespawningAllRespawnablePlayersOffset; @@ -1156,18 +1156,18 @@ public ref float TerroristSpawnPointUsedTime { } private static nint? _CTSpawnPointsOffset; - public ref CUtlVector> CTSpawnPoints { + public ref CUtlVector> CTSpawnPoints { get { _CTSpawnPointsOffset = _CTSpawnPointsOffset ?? Schema.GetOffset(0x6295CF6537BA1FB2); - return ref _Handle.AsRef>>(_CTSpawnPointsOffset!.Value); + return ref _Handle.AsRef>>(_CTSpawnPointsOffset!.Value); } } private static nint? _TerroristSpawnPointsOffset; - public ref CUtlVector> TerroristSpawnPoints { + public ref CUtlVector> TerroristSpawnPoints { get { _TerroristSpawnPointsOffset = _TerroristSpawnPointsOffset ?? Schema.GetOffset(0x6295CF6506BE8E93); - return ref _Handle.AsRef>>(_TerroristSpawnPointsOffset!.Value); + return ref _Handle.AsRef>>(_TerroristSpawnPointsOffset!.Value); } } private static nint? _IsUnreservedGameServerOffset; diff --git a/managed/src/SwiftlyS2.Generated/Schemas/Classes/CCSPlayerModernJumpImpl.cs b/managed/src/SwiftlyS2.Generated/Schemas/Classes/CCSPlayerModernJumpImpl.cs index ce6d79a58..c4aac9ca8 100644 --- a/managed/src/SwiftlyS2.Generated/Schemas/Classes/CCSPlayerModernJumpImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Schemas/Classes/CCSPlayerModernJumpImpl.cs @@ -80,6 +80,14 @@ public ref float LastLandedVelocityY { return ref _Handle.AsRef(_LastLandedVelocityYOffset!.Value); } } + private static nint? _LastLandedVelocityZOffset; + + public ref float LastLandedVelocityZ { + get { + _LastLandedVelocityZOffset = _LastLandedVelocityZOffset ?? Schema.GetOffset(0x8CD8CF82B92D3EBA); + return ref _Handle.AsRef(_LastLandedVelocityZOffset!.Value); + } + } public void LastActualJumpPressTickUpdated() => Schema.Update(_Handle, 0x8CD8CF82BF93929F); public void LastActualJumpPressFracUpdated() => Schema.Update(_Handle, 0x8CD8CF82EFA846D4); @@ -89,4 +97,5 @@ public ref float LastLandedVelocityY { public void LastLandedFracUpdated() => Schema.Update(_Handle, 0x8CD8CF8276080263); public void LastLandedVelocityXUpdated() => Schema.Update(_Handle, 0x8CD8CF82B72D3B94); public void LastLandedVelocityYUpdated() => Schema.Update(_Handle, 0x8CD8CF82B82D3D27); + public void LastLandedVelocityZUpdated() => Schema.Update(_Handle, 0x8CD8CF82B92D3EBA); } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Schemas/Classes/CMolotovProjectileImpl.cs b/managed/src/SwiftlyS2.Generated/Schemas/Classes/CMolotovProjectileImpl.cs index 2551383ca..1a26f1a36 100644 --- a/managed/src/SwiftlyS2.Generated/Schemas/Classes/CMolotovProjectileImpl.cs +++ b/managed/src/SwiftlyS2.Generated/Schemas/Classes/CMolotovProjectileImpl.cs @@ -40,14 +40,6 @@ public IntervalTimer StillTimer { return new IntervalTimerImpl(_Handle + _StillTimerOffset!.Value); } } - private static nint? _HasBouncedOffPlayerOffset; - - public ref bool HasBouncedOffPlayer { - get { - _HasBouncedOffPlayerOffset = _HasBouncedOffPlayerOffset ?? Schema.GetOffset(0xA239EA8F2A625F7B); - return ref _Handle.AsRef(_HasBouncedOffPlayerOffset!.Value); - } - } public void IsIncGrenadeUpdated() => Schema.Update(_Handle, 0xA239EA8F9D1C12B7); } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CCSGameRules.cs b/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CCSGameRules.cs index 358ea54cf..45715e488 100644 --- a/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CCSGameRules.cs +++ b/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CCSGameRules.cs @@ -293,9 +293,9 @@ public partial interface CCSGameRules : CTeamplayRules, ISchemaClass> CTSpawnPointsMasterList { get; } + public ref CUtlVector> CTSpawnPointsMasterList { get; } - public ref CUtlVector> TerroristSpawnPointsMasterList { get; } + public ref CUtlVector> TerroristSpawnPointsMasterList { get; } public ref bool RespawningAllRespawnablePlayers { get; } @@ -307,9 +307,9 @@ public partial interface CCSGameRules : CTeamplayRules, ISchemaClass> CTSpawnPoints { get; } + public ref CUtlVector> CTSpawnPoints { get; } - public ref CUtlVector> TerroristSpawnPoints { get; } + public ref CUtlVector> TerroristSpawnPoints { get; } public ref bool IsUnreservedGameServer { get; } diff --git a/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CCSPlayerController_ActionTrackingServices.cs b/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CCSPlayerController_ActionTrackingServices.cs index 7958ac30f..ca6f3b6fb 100644 --- a/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CCSPlayerController_ActionTrackingServices.cs +++ b/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CCSPlayerController_ActionTrackingServices.cs @@ -11,7 +11,7 @@ namespace SwiftlyS2.Shared.SchemaDefinitions; public partial interface CCSPlayerController_ActionTrackingServices : CPlayerControllerComponent, ISchemaClass { static CCSPlayerController_ActionTrackingServices ISchemaClass.From(nint handle) => new CCSPlayerController_ActionTrackingServicesImpl(handle); - static int ISchemaClass.Size => 944; + static int ISchemaClass.Size => 1056; static string? ISchemaClass.ClassName => null; diff --git a/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CCSPlayerModernJump.cs b/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CCSPlayerModernJump.cs index 0ed6977b1..35a5ebdf4 100644 --- a/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CCSPlayerModernJump.cs +++ b/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CCSPlayerModernJump.cs @@ -11,7 +11,7 @@ namespace SwiftlyS2.Shared.SchemaDefinitions; public partial interface CCSPlayerModernJump : ISchemaClass { static CCSPlayerModernJump ISchemaClass.From(nint handle) => new CCSPlayerModernJumpImpl(handle); - static int ISchemaClass.Size => 48; + static int ISchemaClass.Size => 56; static string? ISchemaClass.ClassName => null; @@ -31,6 +31,8 @@ public partial interface CCSPlayerModernJump : ISchemaClass public ref float LastLandedVelocityY { get; } + public ref float LastLandedVelocityZ { get; } + public void LastActualJumpPressTickUpdated(); public void LastActualJumpPressFracUpdated(); public void LastUsableJumpPressTickUpdated(); @@ -39,4 +41,5 @@ public partial interface CCSPlayerModernJump : ISchemaClass public void LastLandedFracUpdated(); public void LastLandedVelocityXUpdated(); public void LastLandedVelocityYUpdated(); + public void LastLandedVelocityZUpdated(); } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CCSPlayer_MovementServices.cs b/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CCSPlayer_MovementServices.cs index a2c94e9ba..f700f6029 100644 --- a/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CCSPlayer_MovementServices.cs +++ b/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CCSPlayer_MovementServices.cs @@ -11,7 +11,7 @@ namespace SwiftlyS2.Shared.SchemaDefinitions; public partial interface CCSPlayer_MovementServices : CPlayer_MovementServices_Humanoid, ISchemaClass { static CCSPlayer_MovementServices ISchemaClass.From(nint handle) => new CCSPlayer_MovementServicesImpl(handle); - static int ISchemaClass.Size => 3680; + static int ISchemaClass.Size => 3688; static string? ISchemaClass.ClassName => null; diff --git a/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CFireCrackerBlast.cs b/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CFireCrackerBlast.cs index 4d12e021a..c89c6c4cc 100644 --- a/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CFireCrackerBlast.cs +++ b/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CFireCrackerBlast.cs @@ -11,7 +11,7 @@ namespace SwiftlyS2.Shared.SchemaDefinitions; public partial interface CFireCrackerBlast : CInferno, ISchemaClass { static CFireCrackerBlast ISchemaClass.From(nint handle) => new CFireCrackerBlastImpl(handle); - static int ISchemaClass.Size => 5056; + static int ISchemaClass.Size => 5048; static string? ISchemaClass.ClassName => null; diff --git a/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CInferno.cs b/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CInferno.cs index c62fc7e65..82ae1554c 100644 --- a/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CInferno.cs +++ b/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CInferno.cs @@ -11,7 +11,7 @@ namespace SwiftlyS2.Shared.SchemaDefinitions; public partial interface CInferno : CBaseModelEntity, ISchemaClass { static CInferno ISchemaClass.From(nint handle) => new CInfernoImpl(handle); - static int ISchemaClass.Size => 5056; + static int ISchemaClass.Size => 5048; static string? ISchemaClass.ClassName => "inferno"; diff --git a/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CMolotovProjectile.cs b/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CMolotovProjectile.cs index c2784e139..2da253cfb 100644 --- a/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CMolotovProjectile.cs +++ b/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CMolotovProjectile.cs @@ -11,7 +11,7 @@ namespace SwiftlyS2.Shared.SchemaDefinitions; public partial interface CMolotovProjectile : CBaseCSGrenadeProjectile, ISchemaClass { static CMolotovProjectile ISchemaClass.From(nint handle) => new CMolotovProjectileImpl(handle); - static int ISchemaClass.Size => 3264; + static int ISchemaClass.Size => 3248; static string? ISchemaClass.ClassName => "molotov_projectile"; @@ -21,7 +21,5 @@ public partial interface CMolotovProjectile : CBaseCSGrenadeProjectile, ISchemaC public IntervalTimer StillTimer { get; } - public ref bool HasBouncedOffPlayer { get; } - public void IsIncGrenadeUpdated(); } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CSAdditionalMatchStats_t.cs b/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CSAdditionalMatchStats_t.cs index ada812224..1ec9b5d72 100644 --- a/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CSAdditionalMatchStats_t.cs +++ b/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CSAdditionalMatchStats_t.cs @@ -11,7 +11,7 @@ namespace SwiftlyS2.Shared.SchemaDefinitions; public partial interface CSAdditionalMatchStats_t : CSAdditionalPerRoundStats_t, ISchemaClass { static CSAdditionalMatchStats_t ISchemaClass.From(nint handle) => new CSAdditionalMatchStats_tImpl(handle); - static int ISchemaClass.Size => 232; + static int ISchemaClass.Size => 288; static string? ISchemaClass.ClassName => null; diff --git a/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CSAdditionalPerRoundStats_t.cs b/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CSAdditionalPerRoundStats_t.cs index c93a8493e..1462260c5 100644 --- a/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CSAdditionalPerRoundStats_t.cs +++ b/managed/src/SwiftlyS2.Generated/Schemas/Interfaces/CSAdditionalPerRoundStats_t.cs @@ -11,7 +11,7 @@ namespace SwiftlyS2.Shared.SchemaDefinitions; public partial interface CSAdditionalPerRoundStats_t : ISchemaClass { static CSAdditionalPerRoundStats_t ISchemaClass.From(nint handle) => new CSAdditionalPerRoundStats_tImpl(handle); - static int ISchemaClass.Size => 184; + static int ISchemaClass.Size => 240; static string? ISchemaClass.ClassName => null; diff --git a/managed/src/SwiftlyS2.Runner/Run.cs b/managed/src/SwiftlyS2.Runner/Run.cs index ca9869ec6..7cab5b9db 100644 --- a/managed/src/SwiftlyS2.Runner/Run.cs +++ b/managed/src/SwiftlyS2.Runner/Run.cs @@ -1,17 +1,29 @@ using System.Runtime.InteropServices; +using Semver; using SwiftlyS2.Shared.Natives; namespace SwiftlyS2; +[StructLayout(LayoutKind.Sequential)] +public struct CGcBanInformation_t +{ + public uint Reason; + public double Unknown; + public double Expiration; + public uint AccountId; +} + public class Program { public static void Main() { - Console.WriteLine("================================================="); + var s1 = SemVersion.Parse("1.1.6", SemVersionStyles.AllowV); + Console.WriteLine(s1); + + var s2 = SemVersion.Parse("1.1.5-beta.55", SemVersionStyles.AllowV); + Console.WriteLine(s2); - Console.WriteLine("CTraceFilter Struct Layout:"); - PrintStructInfo(); - PrintStructInfo(); + Console.WriteLine($"s1 > s2: {SemVersion.CompareSortOrder(s1, s2)}"); } private static void PrintStructInfo() where T : struct @@ -29,7 +41,7 @@ private static void PrintStructInfo() where T : struct Console.WriteLine($"{field.Name,-40} Offset: 0x{offset:X4} ({offset,4}) Size: {size,4} bytes"); } - Console.WriteLine($"\nTotal struct size: {Marshal.SizeOf()} bytes (0x{Marshal.SizeOf():X} hex)"); + Console.WriteLine($"\nTotal struct size: {Marshal.SizeOf(typeof(T))} bytes (0x{Marshal.SizeOf(typeof(T)):X} hex)"); } private static int GetFieldSize( Type type ) diff --git a/managed/src/SwiftlyS2.Runner/SwiftlyS2.Runner.csproj b/managed/src/SwiftlyS2.Runner/SwiftlyS2.Runner.csproj index d07b91159..4d1f3c077 100644 --- a/managed/src/SwiftlyS2.Runner/SwiftlyS2.Runner.csproj +++ b/managed/src/SwiftlyS2.Runner/SwiftlyS2.Runner.csproj @@ -25,6 +25,7 @@ + diff --git a/managed/src/SwiftlyS2.Shared/ISwiftlyCore.cs b/managed/src/SwiftlyS2.Shared/ISwiftlyCore.cs index d25f0abff..0057dd1c1 100644 --- a/managed/src/SwiftlyS2.Shared/ISwiftlyCore.cs +++ b/managed/src/SwiftlyS2.Shared/ISwiftlyCore.cs @@ -149,12 +149,6 @@ public interface ISwiftlyCore /// public IRegistratorService Registrator { get; } - // /// - // /// Menu manager. - // /// - // [Obsolete("IMenuManager will be deprecared at the release of SwiftlyS2. Please use IMenuManagerAPI instead")] - // public IMenuManager Menus { get; } - /// /// Menu manager API. /// @@ -205,4 +199,9 @@ public interface ISwiftlyCore /// This directory is ensured to exist by the framework. /// public string PluginDataDirectory { get; } + + /// + /// Checks whether or not this code section runs on the game thread. + /// + public bool IsGameThread { get; } } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Shared/Modules/Commands/Attributes/CommandAttribute.cs b/managed/src/SwiftlyS2.Shared/Modules/Commands/Attributes/CommandAttribute.cs index d42585077..e7e85fbf5 100644 --- a/managed/src/SwiftlyS2.Shared/Modules/Commands/Attributes/CommandAttribute.cs +++ b/managed/src/SwiftlyS2.Shared/Modules/Commands/Attributes/CommandAttribute.cs @@ -9,10 +9,17 @@ public class Command : Attribute public string Permission { get; set; } = string.Empty; - public Command( string name, bool registerRaw = false, string permission = "" ) + public string HelpText { get; set; } = "SwiftlyS2 registered command"; + + public Command( string name, bool registerRaw, string permission ) : this(name, registerRaw, permission, "SwiftlyS2 registered command") + { + } + + public Command( string name, bool registerRaw = false, string permission = "", string helpText = "SwiftlyS2 registered command" ) { Name = name; RegisterRaw = registerRaw; Permission = permission; + HelpText = helpText; } } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Shared/Modules/Commands/ICommandService.cs b/managed/src/SwiftlyS2.Shared/Modules/Commands/ICommandService.cs index b571e2bbf..70985fddd 100644 --- a/managed/src/SwiftlyS2.Shared/Modules/Commands/ICommandService.cs +++ b/managed/src/SwiftlyS2.Shared/Modules/Commands/ICommandService.cs @@ -27,6 +27,16 @@ public interface ICommandService /// Whether the text should continue to be sent. public delegate HookResult ClientChatHandler( int playerId, string text, bool teamonly ); + /// + /// Registers a command (backward compatibility overload). + /// + /// The command name. + /// The handler callback for the command. + /// If set to true, the command will not starts with a `sw_` prefix. + /// The permission required to use the command. + /// The guid of the command. + public Guid RegisterCommand( string commandName, CommandListener handler, bool registerRaw, string permission ); + /// /// Registers a command. /// @@ -34,8 +44,9 @@ public interface ICommandService /// The handler callback for the command. /// If set to true, the command will not starts with a `sw_` prefix. /// The permission required to use the command. + /// The help text of the command. /// The guid of the command. - public Guid RegisterCommand( string commandName, CommandListener handler, bool registerRaw = false, string permission = "" ); + public Guid RegisterCommand( string commandName, CommandListener handler, bool registerRaw = false, string permission = "", string helpText = "SwiftlyS2 registered command" ); /// /// Registers a command alias. diff --git a/managed/src/SwiftlyS2.Shared/Modules/Engine/IEngineService.cs b/managed/src/SwiftlyS2.Shared/Modules/Engine/IEngineService.cs index bea4c0ec9..30e004551 100644 --- a/managed/src/SwiftlyS2.Shared/Modules/Engine/IEngineService.cs +++ b/managed/src/SwiftlyS2.Shared/Modules/Engine/IEngineService.cs @@ -10,12 +10,6 @@ public interface IEngineService /// public string? ServerIP { get; } - /// - /// Gets the map that the server is running - /// - [Obsolete("Use GlobalVars.MapName instead.")] - public string Map { get; } - /// /// Gets the Workshop ID of the current map. /// @@ -33,12 +27,6 @@ public interface IEngineService /// true if the map is valid; otherwise, false. public bool IsMapValid( string map ); - /// - /// Gets the maximum number of players allowed in the game. - /// - [Obsolete("Use GlobalVars.MaxClients instead.")] - public int MaxPlayers { get; } - /// /// Executes the specified command string in the current context. /// @@ -65,18 +53,6 @@ public interface IEngineService /// The callback to receive the output of the command. public Task ExecuteCommandWithBufferAsync( string command, Action bufferCallback ); - /// - /// The time since the server started. - /// - [Obsolete("Use GlobalVars.CurrentTime instead.")] - public float CurrentTime { get; } - - /// - /// The number of simulation ticks that have occurred since the server started. - /// - [Obsolete("Use GlobalVars.TickCount instead.")] - public int TickCount { get; } - /// /// Find a game system by name. /// diff --git a/managed/src/SwiftlyS2.Shared/Modules/EntitySystem/IEntitySystem.cs b/managed/src/SwiftlyS2.Shared/Modules/EntitySystem/IEntitySystem.cs index ba17bbf6a..171752e1d 100644 --- a/managed/src/SwiftlyS2.Shared/Modules/EntitySystem/IEntitySystem.cs +++ b/managed/src/SwiftlyS2.Shared/Modules/EntitySystem/IEntitySystem.cs @@ -8,20 +8,6 @@ namespace SwiftlyS2.Shared.EntitySystem; public interface IEntitySystemService { - /// - /// Represents a method that handles an entity output event, allowing custom logic to be executed when an entity - /// triggers an output. - /// - /// The entity output object that contains information about the triggered output. - /// The name of the output that was triggered. - /// The entity instance that activated the output. - /// The entity instance that called the output, if applicable. - /// The delay, in seconds, before the output is executed. - /// A value indicating the result of the handler's execution, such as whether the output - /// should proceed or be blocked. - [Obsolete("Use HookEntityOutput(string designerName, string outputName, Action callback) instead.")] - public delegate HookResult EntityOutputHandler( CEntityIOOutput entityIO, string outputName, CEntityInstance activator, CEntityInstance caller, float delay ); - /// /// Represents a method that handles an entity output event, allowing custom logic to be executed when an entity /// triggers an output. @@ -53,7 +39,7 @@ public interface IEntitySystemService /// Created entity. /// Thrown when failed to create entity by designer name or designer name is invalid. /// Thrown when called too early that entity system is not valid at this moment. - public T CreateEntityByDesignerName( string designerName ) where T : ISchemaClass; + public T CreateEntityByDesignerName( string designerName ) where T : class, ISchemaClass; /// /// Get a reference handle to the entity. @@ -102,8 +88,36 @@ public interface IEntitySystemService /// Entity index. /// Entity by index. Nullable. /// Thrown when called too early that entity system is not valid at this moment. + /// Thrown when the entity is not of type T. public T? GetEntityByIndex( uint index ) where T : class, ISchemaClass; + /// + /// Get an entity by index. + /// The object return will have the actual type of the entity. You can cast it to the actual type. + /// + /// Entity index. + /// Entity by index. Nullable. + /// Thrown when called too early that entity system is not valid at this moment. + public CEntityInstance? GetEntityByIndex( uint index ); + + /// + /// Get an entity by address. + /// + /// Entity type. + /// Entity address. + /// Entity by address. Nullable. + /// Thrown when called too early that entity system is not valid at this moment. + /// Thrown when the entity is not of type T. + public T? GetEntityByAddress( nint address ) where T : class, ISchemaClass; + + /// + /// Get an entity by address. + /// + /// Entity address. + /// Entity by address. Nullable. + /// Thrown when called too early that entity system is not valid at this moment. + public CEntityInstance? GetEntityByAddress( nint address ); + /// /// Hooks an output of the specified entity type to a callback function. /// @@ -126,18 +140,6 @@ public interface IEntitySystemService /// A that uniquely identifies the hook. This identifier can be used to remove the hook. public Guid HookEntityOutput( string designerName, string outputName, EntityOutputEventHandler callback ); - /// - /// Hooks an output of the specified entity type to a callback function. - /// - /// This method allows you to attach a handler to a specific output of an entity. The callback will - /// be invoked whenever the output is triggered. - /// The type of the entity, which must implement . - /// The name of the output to hook. This value cannot be or empty. - /// The callback function to invoke when the output is triggered. This value cannot be . - /// A that uniquely identifies the hook. This identifier can be used to manage or remove the hook. - [Obsolete("Use HookEntityOutput(string outputName, Action callback) instead.")] - public Guid HookEntityOutput( string outputName, EntityOutputHandler callback ) where T : class, ISchemaClass; - /// /// Removes the association between the specified entity output and its handler. /// diff --git a/managed/src/SwiftlyS2.Shared/Modules/Events/EventDelegates.cs b/managed/src/SwiftlyS2.Shared/Modules/Events/EventDelegates.cs index 99de46e48..5769fb7b8 100644 --- a/managed/src/SwiftlyS2.Shared/Modules/Events/EventDelegates.cs +++ b/managed/src/SwiftlyS2.Shared/Modules/Events/EventDelegates.cs @@ -114,9 +114,6 @@ public class EventDelegates /// public delegate void OnPrecacheResource( IOnPrecacheResourceEvent @event ); - [Obsolete("OnEntityTouchHook is deprecated. Use OnEntityStartTouch, OnEntityTouch, or OnEntityEndTouch instead.")] - public delegate void OnEntityTouchHook( IOnEntityTouchHookEvent @event ); - /// /// Called when an entity starts touching another entity. /// @@ -142,6 +139,16 @@ public class EventDelegates /// public delegate void OnWeaponServicesCanUseHook( IOnWeaponServicesCanUseHookEvent @event ); + /// + /// Called when a weapon services drop weapon hook is triggered. + /// + public delegate void OnWeaponServicesDropWeaponHook( IOnWeaponServicesDropWeaponHook @event ); + + /// + /// Called when a client sends a voice packet. + /// + public delegate void OnClientVoice( IOnClientVoiceEvent @event ); + /// /// Called when a console output is received. /// diff --git a/managed/src/SwiftlyS2.Shared/Modules/Events/EventParams/IOnClientVoiceEvent.cs b/managed/src/SwiftlyS2.Shared/Modules/Events/EventParams/IOnClientVoiceEvent.cs new file mode 100644 index 000000000..30445e5bd --- /dev/null +++ b/managed/src/SwiftlyS2.Shared/Modules/Events/EventParams/IOnClientVoiceEvent.cs @@ -0,0 +1,12 @@ +namespace SwiftlyS2.Shared.Events; + +/// +/// Called when a client sends a voice packet. +/// +public interface IOnClientVoiceEvent +{ + /// + /// The player ID of the client that sent a voice packet. + /// + public int PlayerId { get; } +} diff --git a/managed/src/SwiftlyS2.Shared/Modules/Events/EventParams/IOnEntityTouchHookEvent.cs b/managed/src/SwiftlyS2.Shared/Modules/Events/EventParams/IOnEntityTouchHookEvent.cs index 7891a0e87..953ed4811 100644 --- a/managed/src/SwiftlyS2.Shared/Modules/Events/EventParams/IOnEntityTouchHookEvent.cs +++ b/managed/src/SwiftlyS2.Shared/Modules/Events/EventParams/IOnEntityTouchHookEvent.cs @@ -1,86 +1,54 @@ -namespace SwiftlyS2.Shared.SchemaDefinitions -{ - [Obsolete("EntityTouchType is deprecated. Use separate OnEntityStartTouch, OnEntityTouch, and OnEntityEndTouch events instead.")] - public enum EntityTouchType : byte - { - StartTouch = 0, - Touch = 1, - EndTouch = 2 - } -} - -namespace SwiftlyS2.Shared.Events -{ - using SwiftlyS2.Shared.SchemaDefinitions; - - [Obsolete("IOnEntityTouchHookEvent is deprecated. Use IOnEntityStartTouchEvent, IOnEntityTouchEvent, or IOnEntityEndTouchEvent instead.")] - public interface IOnEntityTouchHookEvent - { +using SwiftlyS2.Shared.SchemaDefinitions; - /// - /// Gets the entity that initiated the touch. - /// - public CBaseEntity Entity { get; } +namespace SwiftlyS2.Shared.Events; - /// - /// Gets the entity being touched. - /// - public CBaseEntity OtherEntity { get; } - - /// - /// Gets the type of touch interaction. - /// - public EntityTouchType TouchType { get; } - } +/// +/// Called when an entity starts touching another entity. +/// +public interface IOnEntityStartTouchEvent +{ /// - /// Called when an entity starts touching another entity. + /// Gets the entity that initiated the touch. /// - public interface IOnEntityStartTouchEvent - { + public CBaseEntity Entity { get; } - /// - /// Gets the entity that initiated the touch. - /// - public CBaseEntity Entity { get; } + /// + /// Gets the entity being touched. + /// + public CBaseEntity OtherEntity { get; } +} - /// - /// Gets the entity being touched. - /// - public CBaseEntity OtherEntity { get; } - } +/// +/// Called when an entity is touching another entity. +/// +public interface IOnEntityTouchEvent +{ /// - /// Called when an entity is touching another entity. + /// Gets the entity that initiated the touch. /// - public interface IOnEntityTouchEvent - { + public CBaseEntity Entity { get; } - /// - /// Gets the entity that initiated the touch. - /// - public CBaseEntity Entity { get; } + /// + /// Gets the entity being touched. + /// + public CBaseEntity OtherEntity { get; } +} - /// - /// Gets the entity being touched. - /// - public CBaseEntity OtherEntity { get; } - } +/// +/// Called when an entity ends touching another entity. +/// +public interface IOnEntityEndTouchEvent +{ /// - /// Called when an entity ends touching another entity. + /// Gets the entity that initiated the touch. /// - public interface IOnEntityEndTouchEvent - { - - /// - /// Gets the entity that initiated the touch. - /// - public CBaseEntity Entity { get; } + public CBaseEntity Entity { get; } - /// - /// Gets the entity being touched. - /// - public CBaseEntity OtherEntity { get; } - } + /// + /// Gets the entity being touched. + /// + public CBaseEntity OtherEntity { get; } } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Shared/Modules/Events/EventParams/IOnWeaponServicesDropWeaponHook.cs b/managed/src/SwiftlyS2.Shared/Modules/Events/EventParams/IOnWeaponServicesDropWeaponHook.cs new file mode 100644 index 000000000..d33ad51e3 --- /dev/null +++ b/managed/src/SwiftlyS2.Shared/Modules/Events/EventParams/IOnWeaponServicesDropWeaponHook.cs @@ -0,0 +1,26 @@ +using SwiftlyS2.Shared.Misc; +using SwiftlyS2.Shared.SchemaDefinitions; + +namespace SwiftlyS2.Shared.Events; + +public interface IOnWeaponServicesDropWeaponHook +{ + + /// + /// The weapon services. + /// + public CCSPlayer_WeaponServices WeaponServices { get; } + /// + /// The weapon. + /// + public CBasePlayerWeapon? Weapon { get; } + /// + /// Swapping weapon with one from the ground. + /// + public bool SwappingWeapon { get; } + + /// + /// The result of the hook. + /// + public HookResult Result { get; set; } +} \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Shared/Modules/Events/IEventSubscriber.cs b/managed/src/SwiftlyS2.Shared/Modules/Events/IEventSubscriber.cs index baf234cc5..a7db8d120 100644 --- a/managed/src/SwiftlyS2.Shared/Modules/Events/IEventSubscriber.cs +++ b/managed/src/SwiftlyS2.Shared/Modules/Events/IEventSubscriber.cs @@ -124,6 +124,11 @@ public interface IEventSubscriber /// public event EventDelegates.OnWeaponServicesCanUseHook? OnWeaponServicesCanUseHook; + /// + /// Called when a weapon services drop weapon hook is triggered. + /// + public event EventDelegates.OnWeaponServicesDropWeaponHook? OnWeaponServicesDropWeaponHook; + /// /// Called when the game outputs a console message. /// @@ -134,9 +139,6 @@ public interface IEventSubscriber /// public event EventDelegates.OnCommandExecuteHook? OnCommandExecuteHook; - [Obsolete("OnEntityTouchHook is deprecated. Use OnEntityStartTouch, OnEntityTouch, or OnEntityEndTouch instead.")] - public event EventDelegates.OnEntityTouchHook? OnEntityTouchHook; - /// /// Called when an entity starts touching another entity. /// @@ -176,4 +178,9 @@ public interface IEventSubscriber /// Called when the server is started. /// public event EventDelegates.OnStartupServer? OnStartupServer; + + /// + /// Called when a client sends a voice packet. + /// + public event EventDelegates.OnClientVoice? OnClientVoice; } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Shared/Modules/Menus/IMenu.cs b/managed/src/SwiftlyS2.Shared/Modules/Menus/IMenu.cs deleted file mode 100644 index 3083cbde7..000000000 --- a/managed/src/SwiftlyS2.Shared/Modules/Menus/IMenu.cs +++ /dev/null @@ -1,385 +0,0 @@ -// using System.Collections.Concurrent; -// using SwiftlyS2.Shared.Natives; -// using SwiftlyS2.Shared.Players; - -// namespace SwiftlyS2.Shared.Menus; - -// /// -// /// Represents a menu interface that provides functionality for creating and managing interactive menus for players. -// /// Supports customizable options, events, and rendering behavior. -// /// -// [Obsolete("IMenu will be deprecared at the release of SwiftlyS2. Please use IMenuAPI instead")] -// public interface IMenu -// { -// /// -// /// Gets or sets the title of the menu that will be displayed to players. -// /// -// public string Title { get; set; } - -// /// -// /// Gets the list of options available in this menu. -// /// Each option represents a selectable item that players can interact with. -// /// -// public List Options { get; } - -// /// -// /// Gets a value indicating whether the menu has associated sounds for interactions. -// /// -// public bool HasSound { get; set; } - -// /// -// /// Gets or sets the parent menu for hierarchical menu navigation. -// /// When set, allows players to navigate back to the parent menu. -// /// -// public IMenu? Parent { get; set; } - -// /// -// /// Gets or sets a concurrent dictionary that tracks auto-close cancellation tokens for each player. -// /// Used to manage automatic menu closing functionality per player. -// /// -// public ConcurrentDictionary AutoCloseCancelTokens { get; set; } - -// /// -// /// Gets or sets custom button overrides for menu navigation. -// /// Allows customization of default menu control buttons. -// /// -// public IMenuButtonOverrides? ButtonOverrides { get; set; } - -// /// -// /// Gets or sets the maximum number of options visible at once in the menu. -// /// When there are more options than this limit, the menu will be paginated. -// /// -// public int MaxVisibleOptions { get; set; } - -// /// -// /// Gets or sets whether the player should be frozen while the menu is open. -// /// When true, prevents player movement during menu interaction. -// /// -// public bool? ShouldFreeze { get; set; } - -// /// -// /// Gets or sets whether the menu should automatically close when an option is selected. -// /// When true, the menu closes after any option selection. -// /// -// public bool? CloseOnSelect { get; set; } - -// /// -// /// Gets or sets the color used for rendering the menu. -// /// Affects the visual appearance of the menu display. -// /// -// public Color RenderColor { get; set; } - -// /// -// /// Gets or sets the menu manager responsible for handling this menu. -// /// Provides access to menu management functionality and state. -// /// -// public IMenuManager MenuManager { get; set; } - -// /// -// /// Gets or sets the time in seconds after which the menu will automatically close. -// /// Set to 0 or negative value to disable auto-close functionality. -// /// -// public float AutoCloseAfter { get; set; } - -// /// -// /// Gets a value indicating whether the menu should be re-rendered on each game tick. -// /// -// public bool RenderOntick { get; set; } - -// /// -// /// Gets the menu builder used to construct and configure this menu. -// /// Provides fluent API for menu construction and modification. -// /// -// public IMenuBuilder Builder { get; } - -// /// -// /// Event triggered when the menu is opened for a player. -// /// Provides the player instance as event argument. -// /// -// event Action? OnOpen; - -// /// -// /// Event triggered when the menu is closed for a player. -// /// Provides the player instance as event argument. -// /// -// event Action? OnClose; - -// /// -// /// Event triggered when a player moves their selection within the menu. -// /// Provides the player instance as event argument. -// /// -// event Action? OnMove; - -// /// -// /// Event triggered when a player selects a menu option. -// /// Provides both the player instance and the selected option as event arguments. -// /// -// event Action? OnItemSelected; - -// /// -// /// Event triggered when a player hovers over a menu option. -// /// Provides both the player instance and the hovered option as event arguments. -// /// -// event Action? OnItemHovered; - -// /// -// /// Event triggered before the menu is rendered for a player. -// /// Allows for last-minute modifications or preparations before display. -// /// -// event Action? BeforeRender; - -// /// -// /// Event triggered after the menu has been rendered for a player. -// /// Useful for post-render operations or logging. -// /// -// event Action? AfterRender; - -// /// -// /// Shows the menu to the specified player. -// /// Displays the menu interface and begins player interaction. -// /// -// /// The player to show the menu to. -// public void Show( IPlayer player ); - -// /// -// /// Closes the menu for the specified player. -// /// Hides the menu interface and ends player interaction. -// /// -// /// The player to close the menu for. -// public void Close( IPlayer player ); - -// /// -// /// Moves the player's selection by the specified offset. -// /// Positive values move down, negative values move up in the menu. -// /// -// /// The player whose selection to move. -// /// The number of positions to move the selection. -// public void MoveSelection( IPlayer player, int offset ); - -// /// -// /// Activates the currently selected option for the specified player. -// /// Triggers the selected option's action or behavior. -// /// -// /// The player whose current selection to use. -// public void UseSelection( IPlayer player ); - -// /// -// /// Handles slide option interaction for the specified player. -// /// Used for options that support left/right navigation or value adjustment. -// /// -// /// The player interacting with the slide option. -// /// True if sliding right, false if sliding left. -// public void UseSlideOption( IPlayer player, bool isRight ); - -// /// -// /// Forces a re-render of the menu for the specified player. -// /// Updates the menu display with current state and options. -// /// -// /// The player to re-render the menu for. -// /// True to update horizontal style, false to render without updating horizontal style. -// public void Rerender( IPlayer player, bool updateHorizontalStyle = false ); - -// [Obsolete("Use GetCurrentOption instead")] -// public bool IsCurrentOptionSelectable( IPlayer player ); - -// [Obsolete("Use GetCurrentOption instead")] -// public bool IsOptionSlider( IPlayer player ); - -// /// -// /// Gets the currently selected option for the specified player. -// /// -// /// The player to get the current option for. -// /// The currently selected option, or null if no option is selected. -// public IOption? GetCurrentOption( IPlayer player ); - -// /// -// /// Sets the freeze state for the specified player while the menu is active. -// /// Controls whether the player can move while interacting with the menu. -// /// -// /// The player to set the freeze state for. -// /// True to freeze the player, false to unfreeze. -// public void SetFreezeState( IPlayer player, bool freeze ); - -// /// -// /// Gets or sets the vertical scroll style for the menu navigation. -// /// Determines how the selection arrow moves when navigating through options. -// /// -// public MenuVerticalScrollStyle VerticalScrollStyle { get; set; } - -// /// -// /// Gets or sets the horizontal text display style for menu options. -// /// Controls maximum text width and overflow behavior. Null means no horizontal restrictions. -// /// -// public MenuHorizontalStyle? HorizontalStyle { get; set; } -// } - -// /// -// /// Defines the vertical scroll behavior style for menu navigation. -// /// -// [Obsolete("MenuVerticalScrollStyle will be deprecared at the release of SwiftlyS2. Please use OptionScrollStyle instead")] -// public enum MenuVerticalScrollStyle -// { -// /// -// /// Linear vertical scrolling mode where the selection indicator moves within the visible area. -// /// Content displays linearly without wrapping, indicator adjusts position as selection changes. -// /// -// LinearScroll, - -// /// -// /// Attempts to always keep the selection indicator at the preset center position. -// /// Content scrolls vertically in a circular manner around the center, allowing wrap-around display (e.g., 7 8 1 2 3). -// /// -// CenterFixed, - -// /// -// /// Waits for the selection indicator to reach the preset center, then maintains it there. -// /// Indicator adjusts position at the edges but stays centered during mid-range vertical navigation. -// /// -// WaitingCenter -// } - -// /// -// /// Defines the horizontal text overflow behavior for menu options. -// /// -// [Obsolete("MenuHorizontalOverflowStyle will be deprecared at the release of SwiftlyS2. Please use MenuOptionTextStyle instead")] -// public enum MenuHorizontalOverflowStyle -// { -// /// -// /// Truncates text at the end when it exceeds the maximum width, keeping the start portion. -// /// Example: "Very Long Text Item" becomes "Very Long..." -// /// -// TruncateEnd, - -// /// -// /// Truncates text from both ends when it exceeds the maximum width, keeping the middle portion. -// /// Example: "Very Long Text Item" becomes "Long Text" -// /// -// TruncateBothEnds, - -// /// -// /// Scrolls text to the left with fade-out effect. -// /// Text scrolls left and gradually fades out at the left edge. -// /// -// ScrollLeftFade, - -// /// -// /// Scrolls text to the right with fade-out effect. -// /// Text scrolls right and gradually fades out at the right edge. -// /// -// ScrollRightFade, - -// /// -// /// Scrolls text to the left in a continuous loop. -// /// Text exits from the left edge and re-enters from the right edge. -// /// -// ScrollLeftLoop, - -// /// -// /// Scrolls text to the right in a continuous loop. -// /// Text exits from the right edge and re-enters from the left edge. -// /// -// ScrollRightLoop -// } - -// /// -// /// Horizontal text display style configuration for menu options. -// /// -// [Obsolete("MenuHorizontalStyle will be deprecared at the release of SwiftlyS2.")] -// public readonly record struct MenuHorizontalStyle -// { -// private readonly float maxWidth; - -// /// -// /// The maximum display width for menu option text in relative units. -// /// -// public required float MaxWidth { -// get => maxWidth; -// init { -// if (value < 1f) -// { -// Spectre.Console.AnsiConsole.WriteException(new ArgumentOutOfRangeException(nameof(MaxWidth), $"MaxWidth: value {value:F3} is out of range.")); -// maxWidth = 1f; -// } -// else -// { -// maxWidth = value; -// } -// } -// } - -// /// -// /// The overflow behavior to apply when text exceeds MaxWidth. -// /// -// public MenuHorizontalOverflowStyle OverflowStyle { get; init; } - -// /// -// /// Number of ticks before scrolling by one character. -// /// -// public int TicksPerScroll { get; init; } - -// /// -// /// Number of ticks to pause after completing one scroll loop. -// /// -// public int PauseTicks { get; init; } - -// public MenuHorizontalStyle() -// { -// OverflowStyle = MenuHorizontalOverflowStyle.TruncateEnd; -// TicksPerScroll = 16; -// PauseTicks = 0; -// } - -// /// -// /// Creates a horizontal style with default behavior. -// /// -// public static MenuHorizontalStyle Default => -// new() { MaxWidth = 26, OverflowStyle = MenuHorizontalOverflowStyle.TruncateEnd }; - -// /// -// /// Creates a horizontal style with truncate end behavior. -// /// -// public static MenuHorizontalStyle TruncateEnd( float maxWidth ) => -// new() { MaxWidth = maxWidth, OverflowStyle = MenuHorizontalOverflowStyle.TruncateEnd }; - -// /// -// /// Creates a horizontal style with truncate both ends behavior. -// /// -// public static MenuHorizontalStyle TruncateBothEnds( float maxWidth ) => -// new() { MaxWidth = maxWidth, OverflowStyle = MenuHorizontalOverflowStyle.TruncateBothEnds }; - -// /// -// /// Creates a horizontal style with scroll left fade behavior. -// /// -// /// Maximum display width for text. -// /// Number of ticks before scrolling by one character. -// /// Number of ticks to pause after completing one scroll loop. -// public static MenuHorizontalStyle ScrollLeftFade( float maxWidth, int ticksPerScroll = 16, int pauseTicks = 0 ) => -// new() { MaxWidth = maxWidth, OverflowStyle = MenuHorizontalOverflowStyle.ScrollLeftFade, TicksPerScroll = ticksPerScroll, PauseTicks = pauseTicks }; - -// /// -// /// Creates a horizontal style with scroll right fade behavior. -// /// -// /// Maximum display width for text. -// /// Number of ticks before scrolling by one character. -// /// Number of ticks to pause after completing one scroll loop. -// public static MenuHorizontalStyle ScrollRightFade( float maxWidth, int ticksPerScroll = 16, int pauseTicks = 0 ) => -// new() { MaxWidth = maxWidth, OverflowStyle = MenuHorizontalOverflowStyle.ScrollRightFade, TicksPerScroll = ticksPerScroll, PauseTicks = pauseTicks }; - -// /// -// /// Creates a horizontal style with scroll left loop behavior. -// /// -// /// Maximum display width for text. -// /// Number of ticks before scrolling by one character. -// /// Number of ticks to pause after completing one scroll loop. -// public static MenuHorizontalStyle ScrollLeftLoop( float maxWidth, int ticksPerScroll = 16, int pauseTicks = 0 ) => -// new() { MaxWidth = maxWidth, OverflowStyle = MenuHorizontalOverflowStyle.ScrollLeftLoop, TicksPerScroll = ticksPerScroll, PauseTicks = pauseTicks }; - -// /// -// /// Creates a horizontal style with scroll right loop behavior. -// /// -// /// Maximum display width for text. -// /// Number of ticks before scrolling by one character. -// /// Number of ticks to pause after completing one scroll loop. -// public static MenuHorizontalStyle ScrollRightLoop( float maxWidth, int ticksPerScroll = 16, int pauseTicks = 0 ) => -// new() { MaxWidth = maxWidth, OverflowStyle = MenuHorizontalOverflowStyle.ScrollRightLoop, TicksPerScroll = ticksPerScroll, PauseTicks = pauseTicks }; -// } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Shared/Modules/Menus/IMenuAPI.cs b/managed/src/SwiftlyS2.Shared/Modules/Menus/IMenuAPI.cs index 82e628fb0..3b264a8b1 100644 --- a/managed/src/SwiftlyS2.Shared/Modules/Menus/IMenuAPI.cs +++ b/managed/src/SwiftlyS2.Shared/Modules/Menus/IMenuAPI.cs @@ -177,7 +177,7 @@ public string? DisabledColor { /// /// The default comment text to use when a menu option's Comment is not set. /// - public string DefaultComment { get; set; } = $"Powered by ❤️ {HtmlGradient.GenerateGradientText("SwiftlyS2", "#ffffff", "#96d5ff")}"; + public string DefaultComment { get; set; } = string.Empty; /// /// Extra buttons that can be bound to custom actions in the menu. @@ -288,12 +288,6 @@ public interface IMenuAPI : IDisposable /// public IMenuBuilderAPI? Builder { get; } - /// - /// Gets or sets the default comment text to use when a menu option's is not set. - /// - [Obsolete("Use Configuration.DefaultComment instead.")] - public string DefaultComment { get; set; } - /// /// Gets or sets an object that contains data about this menu. /// diff --git a/managed/src/SwiftlyS2.Shared/Modules/Menus/IMenuBuilder.cs b/managed/src/SwiftlyS2.Shared/Modules/Menus/IMenuBuilder.cs deleted file mode 100644 index 25cb2c859..000000000 --- a/managed/src/SwiftlyS2.Shared/Modules/Menus/IMenuBuilder.cs +++ /dev/null @@ -1,389 +0,0 @@ -// using SwiftlyS2.Shared.Natives; -// using SwiftlyS2.Shared.Players; - -// namespace SwiftlyS2.Shared.Menus; - -// /// -// /// Provides a fluent interface for building and configuring menus with various option types and behaviors. -// /// Supports method chaining for easy menu construction and customization. -// /// -// [Obsolete("IMenuBuilder will be deprecared at the release of SwiftlyS2. Please use IMenuBuilderAPI instead")] -// public interface IMenuBuilder -// { -// IMenuDesign Design { get; } - -// /// -// /// Sets the menu instance that this builder will modify. -// /// This method is typically called internally to associate the builder with a specific menu. -// /// -// /// The menu instance to build and configure. -// /// The current menu builder instance for method chaining. -// IMenuBuilder SetMenu( IMenu menu ); - -// /// -// /// Sets whether the menu should have associated sounds for interactions. -// /// -// /// Enables/disables sound effects for menu interactions. -// /// The current menu builder instance for method chaining. -// IMenuBuilder HasSound( bool hasSound ); - -// /// -// /// Adds a clickable button option to the menu. -// /// When selected, executes the provided action with the player as parameter. -// /// -// /// The display text for the button. -// /// Optional action to execute when the button is clicked. Receives the player as parameter. -// /// The text size for the button display. Defaults to Medium. -// /// The overflow style for the text. Defaults to null. -// /// The current menu builder instance for method chaining. -// IMenuBuilder AddButton( string text, Action? onClick = null, IMenuTextSize size = IMenuTextSize.Medium, MenuHorizontalStyle? overflowStyle = null ); - -// /// -// /// Adds a clickable button option to the menu. -// /// When selected, executes the provided action with the player and option as parameters. -// /// -// /// The display text for the button. -// /// Optional action to execute when the button is clicked. Receives the player and option as parameters. -// /// The text size for the button display. Defaults to Medium. -// /// The overflow style for the text. Defaults to null. -// /// The current menu builder instance for method chaining. -// IMenuBuilder AddButton( string text, Action? onClick, IMenuTextSize size = IMenuTextSize.Medium, MenuHorizontalStyle? overflowStyle = null ); - -// /// -// /// Adds a toggle switch option to the menu that can be turned on or off. -// /// Players can interact with this option to change its boolean state. -// /// -// /// The display text for the toggle option. -// /// The initial state of the toggle. Defaults to false. -// /// Optional action to execute when the toggle state changes. Receives the player and new boolean value. -// /// The text size for the toggle display. Defaults to Medium. -// /// The overflow style for the text. Defaults to null. -// /// The current menu builder instance for method chaining. -// IMenuBuilder AddToggle( string text, bool defaultValue = false, Action? onToggle = null, IMenuTextSize size = IMenuTextSize.Medium, MenuHorizontalStyle? overflowStyle = null ); - -// /// -// /// Adds a toggle switch option to the menu that can be turned on or off. -// /// Players can interact with this option to change its boolean state. -// /// -// /// The display text for the toggle option. -// /// The initial state of the toggle. Defaults to false. -// /// Optional action to execute when the toggle state changes. Receives the player, option, and new boolean value. -// /// The text size for the toggle display. Defaults to Medium. -// /// The overflow style for the text. Defaults to null. -// /// The current menu builder instance for method chaining. -// IMenuBuilder AddToggle( string text, bool defaultValue, Action? onToggle, IMenuTextSize size = IMenuTextSize.Medium, MenuHorizontalStyle? overflowStyle = null ); - -// /// -// /// Adds a slider option to the menu for selecting numeric values within a specified range. -// /// Players can adjust the value using left/right navigation. -// /// -// /// The display text for the slider option. -// /// The minimum allowed value for the slider. -// /// The maximum allowed value for the slider. -// /// The initial value of the slider. -// /// The increment/decrement step size. Defaults to 1. -// /// Optional action to execute when the slider value changes. Receives the player and new float value. -// /// The text size for the slider display. Defaults to Medium. -// /// The overflow style for the text. Defaults to null. -// /// The current menu builder instance for method chaining. -// IMenuBuilder AddSlider( string text, float min, float max, float defaultValue, float step = 1, Action? onChange = null, IMenuTextSize size = IMenuTextSize.Medium, MenuHorizontalStyle? overflowStyle = null ); - -// /// -// /// Adds a slider option to the menu for selecting numeric values within a specified range. -// /// Players can adjust the value using left/right navigation. -// /// -// /// The display text for the slider option. -// /// The minimum allowed value for the slider. -// /// The maximum allowed value for the slider. -// /// The initial value of the slider. -// /// The increment/decrement step size. -// /// Optional action to execute when the slider value changes. Receives the player, option, and new float value. -// /// The text size for the slider display. Defaults to Medium. -// /// The overflow style for the text. Defaults to null. -// /// The current menu builder instance for method chaining. -// IMenuBuilder AddSlider( string text, float min, float max, float defaultValue, float step, Action? onChange, IMenuTextSize size = IMenuTextSize.Medium, MenuHorizontalStyle? overflowStyle = null ); - -// /// -// /// Adds an asynchronous button option to the menu that executes async operations. -// /// When selected, executes the provided async function with the player as parameter. -// /// -// /// The display text for the async button. -// /// The async function to execute when the button is clicked. Receives the player as parameter. -// /// The text size for the button display. Defaults to Medium. -// /// The overflow style for the text. Defaults to null. -// /// The current menu builder instance for method chaining. -// IMenuBuilder AddAsyncButton( string text, Func onClickAsync, IMenuTextSize size = IMenuTextSize.Medium, MenuHorizontalStyle? overflowStyle = null ); - -// /// -// /// Adds an asynchronous button option to the menu that executes async operations. -// /// When selected, executes the provided async function with the player and option as parameters. -// /// -// /// The display text for the async button. -// /// The async function to execute when the button is clicked. Receives the player and option as parameters. -// /// The text size for the button display. Defaults to Medium. -// /// The overflow style for the text. Defaults to null. -// /// The current menu builder instance for method chaining. -// IMenuBuilder AddAsyncButton( string text, Func onClickAsync, IMenuTextSize size = IMenuTextSize.Medium, MenuHorizontalStyle? overflowStyle = null ); - -// /// -// /// Adds a non-interactive text display option to the menu. -// /// Used for showing information, headers, or descriptions within the menu. -// /// -// /// The text content to display. -// /// The text alignment within the menu. Defaults to Left. -// /// The text size for the display. Defaults to Medium. -// /// The overflow style for the text. Defaults to null. -// /// The current menu builder instance for method chaining. -// IMenuBuilder AddText( string text, ITextAlign alignment = ITextAlign.Left, IMenuTextSize size = IMenuTextSize.Medium, MenuHorizontalStyle? overflowStyle = null ); - -// /// -// /// Adds a submenu option that navigates to another menu when selected. -// /// Creates a hierarchical menu structure with parent-child relationships. -// /// -// /// The display text for the submenu option. -// /// The submenu instance to navigate to. -// /// The text size for the submenu display. Defaults to Medium. -// /// The current menu builder instance for method chaining. -// IMenuBuilder AddSubmenu( string text, IMenu submenu, IMenuTextSize size = IMenuTextSize.Medium ); - -// /// -// /// Adds a submenu option that navigates to another menu when selected. -// /// Creates a hierarchical menu structure with parent-child relationships. -// /// -// /// The display text for the submenu option. -// /// The submenu instance to navigate to. -// /// The current menu builder instance for method chaining. -// IMenuBuilder AddSubmenu( string text, IMenu submenu ); - -// /// -// /// Adds a submenu option that creates and navigates to a dynamically built menu when selected. -// /// The submenu is constructed on-demand using the provided builder function. -// /// -// /// The display text for the submenu option. -// /// A function that returns the submenu instance when called. -// /// The text size for the submenu display. Defaults to Medium. -// /// The current menu builder instance for method chaining. -// IMenuBuilder AddSubmenu( string text, Func submenuBuilder, IMenuTextSize size = IMenuTextSize.Medium ); - -// /// -// /// Adds a submenu option that creates and navigates to a dynamically built menu when selected. -// /// The submenu is constructed on-demand using the provided builder function. -// /// -// /// The display text for the submenu option. -// /// A function that returns the submenu instance when called. -// /// The current menu builder instance for method chaining. -// IMenuBuilder AddSubmenu( string text, Func submenuBuilder ); - -// /// -// /// Adds a submenu option that creates and navigates to a dynamically built menu when selected. -// /// The submenu is constructed on-demand using the provided asynchronous builder function. -// /// -// /// The display text for the submenu option. -// /// An asynchronous function that returns the submenu instance when called. -// /// The text size for the submenu display. Defaults to Medium. -// /// The current menu builder instance for method chaining. -// IMenuBuilder AddSubmenu( string text, Func> submenuBuilder, IMenuTextSize size = IMenuTextSize.Medium ); - -// /// -// /// Adds a submenu option that creates and navigates to a dynamically built menu when selected. -// /// The submenu is constructed on-demand using the provided asynchronous builder function. -// /// -// /// The display text for the submenu option. -// /// An asynchronous function that returns the submenu instance when called. -// /// The current menu builder instance for method chaining. -// IMenuBuilder AddSubmenu( string text, Func> submenuBuilder ); - -// /// -// /// Adds a choice selection option that allows players to select from multiple predefined options. -// /// Players can cycle through the available choices using left/right navigation. -// /// -// /// The display text for the choice option. -// /// An array of available choice strings. -// /// The initially selected choice. Defaults to null (first choice). -// /// Optional action to execute when the choice changes. Receives the player and selected choice string. -// /// The text size for the choice display. Defaults to Medium. -// /// The overflow style for the text. Defaults to null. -// /// The current menu builder instance for method chaining. -// IMenuBuilder AddChoice( string text, string[] choices, string? defaultChoice = null, Action? onChange = null, IMenuTextSize size = IMenuTextSize.Medium, MenuHorizontalStyle? overflowStyle = null ); - -// // /// -// // /// Adds a choice selection option that allows players to select from multiple predefined options. -// // /// Players can cycle through the available choices using left/right navigation. -// // /// -// // /// The display text for the choice option. -// // /// An array of available choice strings. -// // /// The initially selected choice. -// // /// Optional action to execute when the choice changes. Receives the player and selected choice string. -// // /// The overflow style for the text. Defaults to null. -// // /// The current menu builder instance for method chaining. -// // [Obsolete("This overload causes ambiguity. Use AddChoice(text, choices, defaultChoice, onChange, IMenuTextSize.Medium, overflowStyle) instead.")] -// // IMenuBuilder AddChoice(string text, string[] choices, string? defaultChoice, Action? onChange, MenuHorizontalStyle? overflowStyle = null); - -// /// -// /// Adds a choice selection option that allows players to select from multiple predefined options. -// /// Players can cycle through the available choices using left/right navigation. -// /// -// /// The display text for the choice option. -// /// An array of available choice strings. -// /// The initially selected choice. -// /// Optional action to execute when the choice changes. Receives the player, option, and selected choice string. -// /// The text size for the choice display. Defaults to Medium. -// /// The overflow style for the text. Defaults to null. -// /// The current menu builder instance for method chaining. -// IMenuBuilder AddChoice( string text, string[] choices, string? defaultChoice, Action? onChange, IMenuTextSize size = IMenuTextSize.Medium, MenuHorizontalStyle? overflowStyle = null ); - -// /// -// /// Adds a visual separator line to the menu for organizing content. -// /// Creates a non-interactive divider between menu sections. -// /// -// /// The current menu builder instance for method chaining. -// IMenuBuilder AddSeparator(); - -// /// -// /// Adds a progress bar display option that shows dynamic progress information. -// /// The progress value is retrieved from the provided function and updated automatically. -// /// -// /// The display text for the progress bar. -// /// A function that returns the current progress value (0.0 to 1.0). -// /// The character width of the progress bar. Defaults to 20. -// /// The text size for the progress bar display. Defaults to Medium. -// /// The overflow style for the text. Defaults to null. -// /// The current menu builder instance for method chaining. -// IMenuBuilder AddProgressBar( string text, Func progressProvider, int barWidth = 20, IMenuTextSize size = IMenuTextSize.Medium, MenuHorizontalStyle? overflowStyle = null ); - -// /// -// /// Adds a progress bar display option that shows dynamic progress information. -// /// The progress value is retrieved from the provided function and updated automatically. -// /// -// /// The display text for the progress bar. -// /// A function that returns the current progress value (0.0 to 1.0). -// /// The character width of the progress bar. -// /// The overflow style for the text. Defaults to null. -// /// The current menu builder instance for method chaining. -// IMenuBuilder AddProgressBar( string text, Func progressProvider, int barWidth, MenuHorizontalStyle? overflowStyle = null ); - -// /// -// /// Sets the parent menu for the menu being built, creating a hierarchical menu structure. -// /// Allows players to navigate back to the parent menu from the current menu. -// /// -// /// The parent menu instance. -// /// The current menu builder instance for method chaining. -// IMenuBuilder WithParent( IMenu parent ); - -// /// -// /// Sets a condition that determines when the menu should be visible to players. -// /// The menu will only be shown to players for whom the condition returns true. -// /// -// /// A function that takes a player and returns true if the menu should be visible. -// /// The current menu builder instance for method chaining. -// IMenuBuilder VisibleWhen( Func condition ); - -// /// -// /// Sets a condition that determines when the menu should be enabled for interaction. -// /// When disabled, the menu may be visible but not interactive. -// /// -// /// A function that takes a player and returns true if the menu should be enabled. -// /// The current menu builder instance for method chaining. -// IMenuBuilder EnabledWhen( Func condition ); - -// /// -// /// Configures the menu to automatically close when any option is selected. -// /// Useful for action menus where selection should immediately close the menu. -// /// -// /// The current menu builder instance for method chaining. -// IMenuBuilder CloseOnSelect(); - -// /// -// /// Sets an automatic close timer for the menu. -// /// The menu will automatically close after the specified number of seconds. -// /// -// /// The number of seconds after which to automatically close the menu. -// /// The current menu builder instance for method chaining. -// IMenuBuilder AutoClose( float seconds ); - -// /// -// /// Overrides the default button(s) used for selecting menu options. -// /// Allows customization of the input controls for menu interaction. -// /// -// /// The names of the buttons to use for selection. -// /// The current menu builder instance for method chaining. -// [Obsolete("Use Design.OverrideSelectButton instead")] -// IMenuBuilder OverrideSelectButton( params string[] buttonNames ); - -// /// -// /// Overrides the default button(s) used for moving through menu options. -// /// Allows customization of the input controls for menu navigation. -// /// -// /// The names of the buttons to use for movement. -// /// The current menu builder instance for method chaining. -// [Obsolete("Use Design.OverrideMoveButton instead")] -// IMenuBuilder OverrideMoveButton( params string[] buttonNames ); - -// /// -// /// Overrides the default button(s) used for exiting or closing the menu. -// /// Allows customization of the input controls for menu exit. -// /// -// /// The names of the buttons to use for exiting. -// /// The current menu builder instance for method chaining. -// [Obsolete("Use Design.OverrideExitButton instead")] -// IMenuBuilder OverrideExitButton( params string[] buttonNames ); - -// /// -// /// Sets the maximum number of menu items visible at once. -// /// When there are more items than this limit, the menu will be paginated. -// /// -// /// The maximum number of visible items. -// /// The current menu builder instance for method chaining. -// /// -// /// If the provided count is less than 1, it will be clamped to 1. -// /// If the provided count is greater than 5, it will be clamped to 5. -// /// A warning will be logged when clamping occurs. -// /// -// [Obsolete("Use Design.MaxVisibleItems instead")] -// IMenuBuilder MaxVisibleItems( int count ); - -// /// -// /// Configures the menu to not freeze player movement when displayed. -// /// Players will be able to move around while the menu is open. -// /// -// /// The current menu builder instance for method chaining. -// IMenuBuilder NoFreeze(); - -// /// -// /// Configures the menu to freeze player movement when displayed. -// /// Players will be unable to move while the menu is open. -// /// -// /// The current menu builder instance for method chaining. -// IMenuBuilder ForceFreeze(); - -// /// -// /// Sets the color used for rendering the menu. -// /// Affects the visual appearance and styling of the menu display. -// /// -// /// The color to use for menu rendering. -// /// The current menu builder instance for method chaining. -// [Obsolete("Use Design.SetColor instead")] -// IMenuBuilder SetColor( Color color ); -// } - -// /// -// /// Defines text alignment options for menu text elements. -// /// Used to control how text is positioned within menu displays. -// /// -// public enum ITextAlign -// { -// /// -// /// Aligns text to the left side of the display area. -// /// -// Left, - -// /// -// /// Centers text horizontally within the display area. -// /// -// Center, - -// /// -// /// Aligns text to the right side of the display area. -// /// -// Right -// } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Shared/Modules/Menus/IMenuButtonOverrides.cs b/managed/src/SwiftlyS2.Shared/Modules/Menus/IMenuButtonOverrides.cs deleted file mode 100644 index 5d4e4c233..000000000 --- a/managed/src/SwiftlyS2.Shared/Modules/Menus/IMenuButtonOverrides.cs +++ /dev/null @@ -1,39 +0,0 @@ -// using SwiftlyS2.Shared.Events; - -// namespace SwiftlyS2.Shared.Menus; - -// /// -// /// Defines custom button overrides for menu navigation and interaction. -// /// Allows customization of the default key bindings used for menu operations. -// /// -// [Obsolete("IMenuButtonOverrides will be deprecared at the release of SwiftlyS2. Please use MenuKeybindOverrides instead")] -// public interface IMenuButtonOverrides -// { -// /// -// /// Gets or sets the key binding used for selecting menu options. -// /// When set, overrides the default key used to activate or select the currently highlighted menu item. -// /// Set to null to use the default selection key binding. -// /// -// public KeyKind? Select { get; set; } - -// /// -// /// Gets or sets the key binding used for moving through menu options. -// /// When set, overrides the default keys used to navigate up and down through menu items. -// /// Set to null to use the default movement key bindings. -// /// -// public KeyKind? Move { get; set; } - -// /// -// /// Gets or sets the key binding used for moving back through menu options. -// /// When set, overrides the default key used to navigate back up in menus. -// /// Set to null to use the default back key binding. -// /// -// public KeyKind? MoveBack { get; set; } - -// /// -// /// Gets or sets the key binding used for exiting or closing the menu. -// /// When set, overrides the default key used to close the menu and return to the game. -// /// Set to null to use the default exit key binding. -// /// -// public KeyKind? Exit { get; set; } -// } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Shared/Modules/Menus/IMenuDesign.cs b/managed/src/SwiftlyS2.Shared/Modules/Menus/IMenuDesign.cs deleted file mode 100644 index 53288fe5f..000000000 --- a/managed/src/SwiftlyS2.Shared/Modules/Menus/IMenuDesign.cs +++ /dev/null @@ -1,67 +0,0 @@ -// using SwiftlyS2.Shared.Natives; - -// namespace SwiftlyS2.Shared.Menus; - -// [Obsolete("IMenuDesign will be deprecared at the release of SwiftlyS2. Please use IMenuDesignAPI instead")] -// public interface IMenuDesign -// { -// /// -// /// Overrides the default button(s) used for selecting menu options. -// /// Allows customization of the input controls for menu interaction. -// /// -// /// The names of the buttons to use for selection. -// /// The current menu design instance for method chaining. -// IMenuDesign OverrideSelectButton( params string[] buttonNames ); - -// /// -// /// Overrides the default button(s) used for moving through menu options. -// /// Allows customization of the input controls for menu navigation. -// /// -// /// The names of the buttons to use for movement. -// /// The current menu design instance for method chaining. -// IMenuDesign OverrideMoveButton( params string[] buttonNames ); - -// /// -// /// Overrides the default button(s) used for exiting or closing the menu. -// /// Allows customization of the input controls for menu exit. -// /// -// /// The names of the buttons to use for exiting. -// /// The current menu design instance for method chaining. -// IMenuDesign OverrideExitButton( params string[] buttonNames ); - -// /// -// /// Sets the maximum number of menu items visible at once. -// /// When there are more items than this limit, the menu will be paginated. -// /// -// /// The maximum number of visible items. -// /// The current menu design instance for method chaining. -// /// -// /// If the provided count is less than 1, it will be clamped to 1. -// /// If the provided count is greater than 5, it will be clamped to 5. -// /// A warning will be logged when clamping occurs. -// /// -// IMenuDesign MaxVisibleItems( int count ); - -// /// -// /// Sets the color used for rendering the menu. -// /// Affects the visual appearance and styling of the menu display. -// /// -// /// The color to use for menu rendering. -// /// The current menu design instance for method chaining. -// IMenuDesign SetColor( Color color ); - -// /// -// /// Sets the vertical scroll style for the menu navigation. -// /// -// /// The vertical scroll style to use. -// /// The current menu design instance for method chaining. -// IMenuDesign SetVerticalScrollStyle( MenuVerticalScrollStyle style ); - -// /// -// /// Sets the global horizontal style for menu option text display. -// /// Controls maximum text width and overflow behavior for all menu options. -// /// -// /// The global horizontal style to apply. -// /// The current menu design instance for method chaining. -// IMenuDesign SetGlobalHorizontalStyle( MenuHorizontalStyle style ); -// } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Shared/Modules/Menus/IMenuManager.cs b/managed/src/SwiftlyS2.Shared/Modules/Menus/IMenuManager.cs deleted file mode 100644 index 44c3fe4ab..000000000 --- a/managed/src/SwiftlyS2.Shared/Modules/Menus/IMenuManager.cs +++ /dev/null @@ -1,181 +0,0 @@ -// using SwiftlyS2.Shared.Players; - -// namespace SwiftlyS2.Shared.Menus; - -// /// -// /// Configuration settings for menu behavior, appearance, and interaction. -// /// Defines various aspects of menu functionality including navigation, input handling, audio feedback, and display options. -// /// -// [Obsolete("MenuSettings will be deprecared at the release of SwiftlyS2. Please use MenuConfig instead")] -// public struct MenuSettings -// { -// /// -// /// The prefix used for menu navigation commands and identifiers. -// /// Used to distinguish menu-related commands from other game commands. -// /// -// public string NavigationPrefix; - -// /// -// /// The input mode used for menu interaction. -// /// Determines how player input is captured and processed for menu navigation. -// /// -// public string InputMode; - -// /// -// /// The button configuration used for selecting or using menu options. -// /// Defines which keys or buttons players press to activate menu items. -// /// -// public string ButtonsUse; - -// /// -// /// The button configuration used for scrolling through menu options. -// /// Defines which keys or buttons players use to navigate up and down in menus. -// /// -// public string ButtonsScroll; - -// /// -// /// The button configuration used for scrolling back through menu options. -// /// Defines which keys or buttons players use to navigate back up in menus. -// /// -// public string ButtonsScrollBack; - -// /// -// /// The button configuration used for exiting or closing menus. -// /// Defines which keys or buttons players press to close the current menu. -// /// -// public string ButtonsExit; - -// /// -// /// The name of the sound effect played when a menu option is selected or used. -// /// References a sound file or identifier in the game's audio system. -// /// -// public string SoundUseName; - -// /// -// /// The volume level for the sound effect played when using menu options. -// /// Typically a value between 0.0 (silent) and 1.0 (full volume). -// /// -// public float SoundUseVolume; - -// /// -// /// The name of the sound effect played when scrolling through menu options. -// /// References a sound file or identifier in the game's audio system. -// /// -// public string SoundScrollName; - -// /// -// /// The volume level for the sound effect played when scrolling through menus. -// /// Typically a value between 0.0 (silent) and 1.0 (full volume). -// /// -// public float SoundScrollVolume; - -// /// -// /// The name of the sound effect played when exiting or closing menus. -// /// References a sound file or identifier in the game's audio system. -// /// -// public string SoundExitName; - -// /// -// /// The volume level for the sound effect played when exiting menus. -// /// Typically a value between 0.0 (silent) and 1.0 (full volume). -// /// -// public float SoundExitVolume; - -// /// -// /// The maximum number of menu items displayed on a single page. -// /// When a menu has more items than this value, pagination is used to split the menu across multiple pages. -// /// -// public int ItemsPerPage; -// } - - -// /// -// /// Manages menu instances and provides functionality for creating, opening, closing, and tracking menus for players. -// /// Serves as the central hub for menu operations and maintains menu state across the application. -// /// -// [Obsolete("IMenuManager will be deprecared at the release of SwiftlyS2. Please use IMenuManagerAPI instead")] -// public interface IMenuManager -// { -// /// -// /// Creates a new menu instance with the specified title. -// /// The created menu can be customized using its builder and then opened for players. -// /// -// /// The title to display at the top of the menu. -// /// A new menu instance ready for configuration and use. -// public IMenu CreateMenu( string title ); - -// /// -// /// Retrieves the currently active menu for the specified player. -// /// Returns null if the player does not have any menu currently open. -// /// -// /// The player whose current menu to retrieve. -// /// The player's current menu, or null if no menu is open. -// public IMenu? GetMenu( IPlayer player ); - -// /// -// /// Closes all open menus for all players. -// /// This includes all menus in the parent chain. -// /// -// public void CloseAllMenus(); - -// /// -// /// Closes the specified menu for all players who currently have it open. -// /// This will trigger the OnClose event for each affected player. -// /// -// /// The menu instance to close. -// public void CloseMenu( IMenu menu ); - -// /// -// /// Closes any currently open menu for the specified player. -// /// If the player has no menu open, this method has no effect. -// /// -// /// The player whose menu should be closed. -// public void CloseMenuForPlayer( IPlayer player ); - -// /// -// /// Closes all menus with the specified title. -// /// Can perform either exact title matching or partial matching based on the exact parameter. -// /// -// /// The title of the menu(s) to close. -// /// If true, only menus with exactly matching titles are closed. If false, menus containing the title are closed. Defaults to false. -// public void CloseMenuByTitle( string title, bool exact = false ); - -// /// -// /// Opens the specified menu for the given player. -// /// If the player already has a menu open, it will be closed first before opening the new menu. -// /// -// /// The player to open the menu for. -// /// The menu instance to open. -// public void OpenMenu( IPlayer player, IMenu menu ); - -// /// -// /// Checks if the specified player currently has any menu open. -// /// -// /// The player to check if the menu is open for. -// public bool HasMenuOpen( IPlayer player ); - -// /// -// /// Event triggered when a menu is closed for a player. -// /// Provides both the player and the menu that was closed as event arguments. -// /// -// event Action? OnMenuClosed; - -// /// -// /// Event triggered when a menu is opened for a player. -// /// Provides both the player and the menu that was opened as event arguments. -// /// -// event Action? OnMenuOpened; - -// /// -// /// Event triggered when a menu is rendered for a player. -// /// Provides both the player and the menu that was rendered as event arguments. -// /// Useful for tracking menu display events or implementing custom rendering logic. -// /// -// event Action? OnMenuRendered; - -// /// -// /// Gets the current menu settings configuration. -// /// Contains various settings that control menu behavior, appearance, audio feedback, and interaction parameters. -// /// -// public MenuSettings Settings { get; } -// } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Shared/Modules/Menus/IOption.cs b/managed/src/SwiftlyS2.Shared/Modules/Menus/IOption.cs deleted file mode 100644 index 22543ab7b..000000000 --- a/managed/src/SwiftlyS2.Shared/Modules/Menus/IOption.cs +++ /dev/null @@ -1,110 +0,0 @@ -// using SwiftlyS2.Shared.Players; - -// namespace SwiftlyS2.Shared.Menus; - -// /// -// /// Represents a menu option that can be displayed and interacted with by players. -// /// -// [Obsolete("IOption will be deprecared at the release of SwiftlyS2. Please use IMenuOption instead")] -// public interface IOption -// { -// /// -// /// Gets or sets the text content of the menu option. -// /// -// public string Text { get; set; } - -// /// -// /// Gets a value indicating whether the option is visible in the menu. -// /// -// public bool Visible { get; } - -// /// -// /// Gets a value indicating whether the option can be interacted with. -// /// -// public bool Enabled { get; } - -// /// -// /// Gets the menu that this option belongs to, or null if not associated with a menu. -// /// -// public IMenu? Menu { get; set; } - -// /// -// /// Gets the horizontal overflow style for this option's text display. -// /// -// public MenuHorizontalStyle? OverflowStyle { get; } - -// /// -// /// Determines whether this option should be shown to the specified player. -// /// -// /// The player to check visibility for. -// /// True if the option should be shown to the player; otherwise, false. -// public bool ShouldShow( IPlayer player ); - -// /// -// /// Determines whether the specified player can interact with this option. -// /// -// /// The player to check interaction capability for. -// /// True if the player can interact with the option; otherwise, false. -// public bool CanInteract( IPlayer player ); - -// /// -// /// Gets the display text for this option as it should appear to the specified player. -// /// -// /// The player requesting the display text. -// /// Indicates whether to update the horizontal style of the text. -// /// The formatted display text for the option. -// public string GetDisplayText( IPlayer player, bool updateHorizontalStyle ); - -// /// -// /// Gets the text size configuration for this option. -// /// -// /// The text size setting for the option. -// public IMenuTextSize GetTextSize(); - -// /// -// /// Determines whether this option should play a sound when selected. -// /// -// /// True if the option should play a sound; otherwise, false. -// public bool HasSound(); -// } - -// /// -// /// Defines the available text size options for menu items. -// /// -// public enum IMenuTextSize -// { -// /// -// /// Extra small text size (fontSize-xs). -// /// -// ExtraSmall, - -// /// -// /// Small text size (fontSize-s). -// /// -// Small, - -// /// -// /// Small-medium text size (fontSize-sm). -// /// -// SmallMedium, - -// /// -// /// Medium text size (fontSize-m). -// /// -// Medium, - -// /// -// /// Medium-large text size (fontSize-ml). -// /// -// MediumLarge, - -// /// -// /// Large text size (fontSize-l). -// /// -// Large, - -// /// -// /// Extra large text size (fontSize-xl). -// /// -// ExtraLarge -// } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Shared/Modules/Players/IPlayer.cs b/managed/src/SwiftlyS2.Shared/Modules/Players/IPlayer.cs index c6a8d88be..5ad4cf050 100644 --- a/managed/src/SwiftlyS2.Shared/Modules/Players/IPlayer.cs +++ b/managed/src/SwiftlyS2.Shared/Modules/Players/IPlayer.cs @@ -40,6 +40,11 @@ public interface IPlayer : IEquatable /// public int PlayerID { get; } + /// + /// Gets the session ID for the player. + /// + public ulong SessionId { get; } + /// /// Gets the user ID for the player. /// @@ -50,6 +55,11 @@ public interface IPlayer : IEquatable /// public int Slot { get; } + /// + /// Gets the name of the player. + /// + public string Name { get; } + /// /// Sends a message of the specified type to the player. /// diff --git a/managed/src/SwiftlyS2.Shared/Modules/Players/IPlayerManager.cs b/managed/src/SwiftlyS2.Shared/Modules/Players/IPlayerManager.cs index 76e0bf312..535e84433 100644 --- a/managed/src/SwiftlyS2.Shared/Modules/Players/IPlayerManager.cs +++ b/managed/src/SwiftlyS2.Shared/Modules/Players/IPlayerManager.cs @@ -310,4 +310,29 @@ public interface IPlayerManagerService /// A collection of players matching the search criteria. public IEnumerable FindTargettedPlayers( IPlayer player, string target, TargetSearchMode searchMode, StringComparison nameComparison = StringComparison.OrdinalIgnoreCase ); + + /// + /// Checks whether a specific session ID is valid. + /// Session id will be invalid when the player associated is disconnected or doesn't exist. + /// + /// The session ID to check. + /// True if the session ID is valid, false otherwise. + public bool IsSessionIdValid( ulong sessionId ); + + /// + /// Retrieves the player associated with the specified session ID. + /// + /// The session ID to retrieve the player from. + /// An instance representing the player with the specified session ID, or null if sessionid is disposed or invalid. + /// player exists. + public IPlayer? GetPlayerFromSessionId( ulong sessionId ); + + /// + /// Retrieves the player associated with the specified Steam ID. + /// + /// The Steam ID to retrieve the player from. + /// Whether to allow unauthorized players. + /// An instance representing the player with the specified Steam ID, or null if no such + /// player exists. + public IPlayer? GetPlayerFromSteamId( ulong steamId, bool allowUnauthorized = true ); } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Shared/Modules/Schemas/SchemaSize.cs b/managed/src/SwiftlyS2.Shared/Modules/Schemas/SchemaInfo.cs similarity index 56% rename from managed/src/SwiftlyS2.Shared/Modules/Schemas/SchemaSize.cs rename to managed/src/SwiftlyS2.Shared/Modules/Schemas/SchemaInfo.cs index 73f689500..9b92af4ad 100644 --- a/managed/src/SwiftlyS2.Shared/Modules/Schemas/SchemaSize.cs +++ b/managed/src/SwiftlyS2.Shared/Modules/Schemas/SchemaInfo.cs @@ -1,12 +1,12 @@ using System.Collections.Concurrent; -using System.Reflection; using System.Runtime.CompilerServices; namespace SwiftlyS2.Shared.Schemas; -public static class SchemaSize +public static class SchemaInfo { private static readonly ConcurrentDictionary _sizeCache = new(); + private static readonly ConcurrentDictionary _isSchemaClassCache = new(); public static int GetSize() where T : ISchemaClass { @@ -23,7 +23,7 @@ public static int Get() iface.GetGenericTypeDefinition() == typeof(ISchemaClass<>) && iface.GetGenericArguments()[0] == type) { - var method = typeof(SchemaSize).GetMethod(nameof(GetSize))?.MakeGenericMethod(type); + var method = typeof(SchemaInfo).GetMethod(nameof(GetSize))?.MakeGenericMethod(type); if (method != null) { return (int)method.Invoke(null, null)!; @@ -33,4 +33,24 @@ public static int Get() return Unsafe.SizeOf(); }); - }} + } + + public static bool IsSchemaClass() + { + return _isSchemaClassCache.GetOrAdd(typeof(T), static type => + { + var interfaces = type.GetInterfaces(); + foreach (var iface in interfaces) + { + if (iface.IsGenericType && + iface.GetGenericTypeDefinition() == typeof(ISchemaClass<>) && + iface.GetGenericArguments()[0] == type) + { + return true; + } + } + + return false; + }); + } +} diff --git a/managed/src/SwiftlyS2.Shared/Modules/SteamAPI/Packsize.cs b/managed/src/SwiftlyS2.Shared/Modules/SteamAPI/Packsize.cs index d4d475387..ecc1a3c35 100644 --- a/managed/src/SwiftlyS2.Shared/Modules/SteamAPI/Packsize.cs +++ b/managed/src/SwiftlyS2.Shared/Modules/SteamAPI/Packsize.cs @@ -1,5 +1,4 @@ using System.Runtime.InteropServices; -using IntPtr = System.IntPtr; namespace SwiftlyS2.Shared.SteamAPI; @@ -7,21 +6,12 @@ public static class Packsize { public const int value = 4; - public static bool Test() - { - int sentinelSize = Marshal.SizeOf(typeof(ValvePackingSentinel_t)); - int subscribedFilesSize = Marshal.SizeOf(typeof(RemoteStorageEnumerateUserSubscribedFilesResult_t)); - if (sentinelSize != 24 || subscribedFilesSize != (1 + 1 + 1 + 50 + 100) * 4) - return false; - return true; - } - [StructLayout(LayoutKind.Sequential, Pack = value)] - struct ValvePackingSentinel_t + public struct ValvePackingSentinel_t { - uint m_u32; - ulong m_u64; - ushort m_u16; - double m_d; + public uint m_u32; + public ulong m_u64; + public ushort m_u16; + public double m_d; }; } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Shared/Modules/Translations/ITranslationService.cs b/managed/src/SwiftlyS2.Shared/Modules/Translations/ITranslationService.cs index 69e00794d..aa8dd6f64 100644 --- a/managed/src/SwiftlyS2.Shared/Modules/Translations/ITranslationService.cs +++ b/managed/src/SwiftlyS2.Shared/Modules/Translations/ITranslationService.cs @@ -4,11 +4,10 @@ namespace SwiftlyS2.Shared.Translation; public interface ITranslationService { - - /// - /// Gets the localizer for the specified player. - /// - /// The player to get the localizer for. - /// The localizer for the specified player. - ILocalizer GetPlayerLocalizer(IPlayer player); + /// + /// Gets the localizer for the specified player. + /// + /// The player to get the localizer for. + /// The localizer for the specified player. + public ILocalizer GetPlayerLocalizer( IPlayer player ); } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Shared/Natives/Structs/CUtlLeanVector.cs b/managed/src/SwiftlyS2.Shared/Natives/Structs/CUtlLeanVector.cs index b60028c37..83a2dfe09 100644 --- a/managed/src/SwiftlyS2.Shared/Natives/Structs/CUtlLeanVector.cs +++ b/managed/src/SwiftlyS2.Shared/Natives/Structs/CUtlLeanVector.cs @@ -2,7 +2,6 @@ using System.Numerics; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; -using SwiftlyS2.Core.Extensions; using SwiftlyS2.Core.Natives; using SwiftlyS2.Shared.Misc; using SwiftlyS2.Shared.Schemas; @@ -39,7 +38,7 @@ public override int GetHashCode() } } - public int ElementSize => SchemaSize.Get(); + public int ElementSize => SchemaInfo.Get(); private I ExternalBufferMarker => I.One << ((Marshal.SizeOf() * 8) - 1); diff --git a/managed/src/SwiftlyS2.Shared/Natives/Structs/CUtlMemory.cs b/managed/src/SwiftlyS2.Shared/Natives/Structs/CUtlMemory.cs index 10abfdfcc..4c4efe942 100644 --- a/managed/src/SwiftlyS2.Shared/Natives/Structs/CUtlMemory.cs +++ b/managed/src/SwiftlyS2.Shared/Natives/Structs/CUtlMemory.cs @@ -3,6 +3,7 @@ using SwiftlyS2.Core.Extensions; using SwiftlyS2.Core.Natives; using SwiftlyS2.Shared.Misc; +using SwiftlyS2.Shared.SchemaDefinitions; using SwiftlyS2.Shared.Schemas; namespace SwiftlyS2.Shared.Natives; @@ -20,7 +21,7 @@ public struct CUtlMemory private uint _allocationCount; private uint _growSize; - public int ElementSize => SchemaSize.Get(); + public int ElementSize => SchemaInfo.Get(); /// /// Please use instead to construct it. @@ -191,10 +192,26 @@ public ref T this[int index] { get { unsafe { - return ref Unsafe.AsRef((byte*)_memory + int.CreateChecked(index * ElementSize)); + if (SchemaInfo.IsSchemaClass()) + { + var address = (nint)((byte*)_memory + int.CreateChecked(index * ElementSize)); + var tType = typeof(T); + + var schemaClassType = $"SwiftlyS2.Core.SchemaDefinitions.{tType.Name}Impl"; + var implType = tType.Assembly.GetType(schemaClassType); + if (implType == null) throw new InvalidOperationException($"Could not find implementation type {schemaClassType} for schema class {tType.FullName}"); + + var obj = (T)Activator.CreateInstance(implType, [address])!; + return ref obj; + } + else + { + return ref Unsafe.AsRef((byte*)_memory + int.CreateChecked(index * ElementSize)); + } } } } + public bool ExternallyAllocated => (_growSize & (int)(BufferMarkers.ExternalBufferMarker | BufferMarkers.ExternalConstBufferMarker)) != 0; public bool IsReadOnly => (_growSize & (int)BufferMarkers.ExternalConstBufferMarker) != 0; public nint Base => _memory; diff --git a/managed/src/SwiftlyS2.Shared/Natives/Structs/CUtlRBTree.cs b/managed/src/SwiftlyS2.Shared/Natives/Structs/CUtlRBTree.cs index 5b912b19b..7e1952e48 100644 --- a/managed/src/SwiftlyS2.Shared/Natives/Structs/CUtlRBTree.cs +++ b/managed/src/SwiftlyS2.Shared/Natives/Structs/CUtlRBTree.cs @@ -15,18 +15,18 @@ public enum NodeColor_t public struct CUtlRBTree : IDisposable where TKey : unmanaged, IBinaryInteger, IMinMaxValue { - public delegate bool LessFunc(ref TValue lhs, ref TValue rhs); + public delegate bool LessFunc( ref TValue lhs, ref TValue rhs ); - public LessFunc LFunc; + public nint LFunc; public CUtlLeanVector, TKey> Elements; public TKey Root; public TKey NumElements; public TKey FirstFree; public CUtlLeanVector, TKey>.Iterator_t LastAlloc; - public CUtlRBTree(TKey growSize, TKey initSize, LessFunc func) + public CUtlRBTree( TKey growSize, TKey initSize, LessFunc func ) { - LFunc = func; + LFunc = Marshal.GetFunctionPointerForDelegate(func); Elements = new CUtlLeanVector, TKey>(growSize, initSize); Root = -TKey.One; NumElements = TKey.Zero; @@ -34,9 +34,9 @@ public CUtlRBTree(TKey growSize, TKey initSize, LessFunc func) LastAlloc = new(-TKey.One); } - public CUtlRBTree(LessFunc func) + public CUtlRBTree( LessFunc func ) { - LFunc = func; + LFunc = Marshal.GetFunctionPointerForDelegate(func); Elements = new CUtlLeanVector, TKey>(TKey.Zero, TKey.Zero); Root = -TKey.One; NumElements = TKey.Zero; @@ -44,32 +44,26 @@ public CUtlRBTree(LessFunc func) LastAlloc = new(-TKey.One); } - public void EnsureCapacity(TKey num) + public void EnsureCapacity( TKey num ) { Elements.EnsureCapacity(int.CreateChecked(num), false); } - public ref CUtlRBTreeLinks Links(TKey i) => ref Elements[i].Links; + public ref CUtlRBTreeLinks Links( TKey i ) => ref Elements[i].Links; - public ref TKey Parent(TKey i) => ref Links(i).Parent; - public ref TKey LeftChild(TKey i) => ref Links(i).Left; - public ref TKey RightChild(TKey i) => ref Links(i).Right; - public bool IsLeftChild(TKey i) => LeftChild(Parent(i)) == i; - public bool IsRightChild(TKey i) => RightChild(Parent(i)) == i; - public bool IsRoot(TKey i) => Root == i; - public bool IsLeaf(TKey i) => LeftChild(i) == -TKey.One && RightChild(i) == -TKey.One; - public bool IsValidIndex(TKey i) + public ref TKey Parent( TKey i ) => ref Links(i).Parent; + public ref TKey LeftChild( TKey i ) => ref Links(i).Left; + public ref TKey RightChild( TKey i ) => ref Links(i).Right; + public bool IsLeftChild( TKey i ) => LeftChild(Parent(i)) == i; + public bool IsRightChild( TKey i ) => RightChild(Parent(i)) == i; + public bool IsRoot( TKey i ) => Root == i; + public bool IsLeaf( TKey i ) => LeftChild(i) == -TKey.One && RightChild(i) == -TKey.One; + public bool IsValidIndex( TKey i ) { - if (!Elements.IsIdxValid(i)) - return false; - - if (i > Elements.Count - TKey.One) - return false; - - return LeftChild(i) != i; + return Elements.IsIdxValid(i) && i <= Elements.Count - TKey.One && LeftChild(i) != i; } public TKey InvalidIndex() => -TKey.One; public int Depth() => Depth(Root); - private int Depth(TKey i) + private int Depth( TKey i ) { if (!IsValidIndex(i)) return 0; @@ -79,13 +73,13 @@ private int Depth(TKey i) return Math.Max(leftDepth, rightDepth) + 1; } - public void SetParent(TKey i, TKey p) => Parent(i) = p; - public void SetLeftChild(TKey i, TKey l) => LeftChild(i) = l; - public void SetRightChild(TKey i, TKey r) => RightChild(i) = r; - public bool IsRed(TKey i) => Links(i).Tag == TKey.CreateChecked((int)NodeColor_t.RED); - public bool IsBlack(TKey i) => Links(i).Tag == TKey.CreateChecked((int)NodeColor_t.BLACK); - public NodeColor_t Color(TKey i) => (NodeColor_t)int.CreateChecked(Links(i).Tag); - public void SetColor(TKey i, NodeColor_t c) => Links(i).Tag = TKey.CreateChecked((int)c); + public void SetParent( TKey i, TKey p ) => Parent(i) = p; + public void SetLeftChild( TKey i, TKey l ) => LeftChild(i) = l; + public void SetRightChild( TKey i, TKey r ) => RightChild(i) = r; + public bool IsRed( TKey i ) => Links(i).Tag == TKey.CreateChecked((int)NodeColor_t.RED); + public bool IsBlack( TKey i ) => Links(i).Tag == TKey.CreateChecked((int)NodeColor_t.BLACK); + public NodeColor_t Color( TKey i ) => (NodeColor_t)int.CreateChecked(Links(i).Tag); + public void SetColor( TKey i, NodeColor_t c ) => Links(i).Tag = TKey.CreateChecked((int)c); public TKey NewNode() { @@ -105,7 +99,7 @@ public TKey NewNode() return elem; } - public void FreeNode(TKey i) + public void FreeNode( TKey i ) { if (!IsValidIndex(i)) throw new IndexOutOfRangeException($"Index {i} is out of range (0 - {Elements.Count - TKey.One})"); @@ -115,7 +109,7 @@ public void FreeNode(TKey i) FirstFree = i; } - public void RotateLeft(TKey elem) + public void RotateLeft( TKey elem ) { TKey right = RightChild(elem); SetRightChild(elem, LeftChild(right)); @@ -141,7 +135,7 @@ public void RotateLeft(TKey elem) SetParent(elem, right); } - public void RotateRight(TKey elem) + public void RotateRight( TKey elem ) { TKey left = LeftChild(elem); SetLeftChild(elem, RightChild(left)); @@ -168,7 +162,7 @@ public void RotateRight(TKey elem) } // i hate RB trees - public void InsertRebalance(TKey elem) + public void InsertRebalance( TKey elem ) { SetColor(elem, NodeColor_t.RED); @@ -228,7 +222,7 @@ public void InsertRebalance(TKey elem) SetColor(Root, NodeColor_t.BLACK); } - public void LinkToParent(TKey i, TKey parent, bool isLeft) + public void LinkToParent( TKey i, TKey parent, bool isLeft ) { Links(i).Parent = parent; Links(i).Left = -TKey.One; @@ -250,7 +244,7 @@ public void LinkToParent(TKey i, TKey parent, bool isLeft) InsertRebalance(i); } - public TKey InsertAt(TKey parent, bool leftchild) + public TKey InsertAt( TKey parent, bool leftchild ) { TKey i = NewNode(); LinkToParent(i, parent, leftchild); @@ -258,7 +252,7 @@ public TKey InsertAt(TKey parent, bool leftchild) return i; } - public void RemoveRebalance(TKey elem) + public void RemoveRebalance( TKey elem ) { while (elem != Root && IsBlack(elem)) { @@ -340,7 +334,7 @@ public void RemoveRebalance(TKey elem) SetColor(elem, NodeColor_t.BLACK); } - public void Unlink(TKey elem) + public void Unlink( TKey elem ) { if (elem != InvalidIndex()) { @@ -403,7 +397,7 @@ public void Unlink(TKey elem) } } - public void Link(TKey elem) + public void Link( TKey elem ) { if (elem != InvalidIndex()) { @@ -413,29 +407,32 @@ public void Link(TKey elem) } } - void FindInsertionPosition(TValue val, out TKey parent, out bool leftchild) + public void FindInsertionPosition( TValue val, out TKey parent, out bool leftchild ) { parent = InvalidIndex(); leftchild = false; - - TKey current = Root; - while (IsValidIndex(current)) + unsafe { - parent = current; - if (LFunc(ref val, ref this[current])) + var @delegate = (delegate*< ref TValue, ref TValue, bool >)LFunc; + var current = Root; + while (IsValidIndex(current)) { - leftchild = true; - current = LeftChild(current); - } - else - { - leftchild = false; - current = RightChild(current); + parent = current; + if (!@delegate(ref val, ref this[current])) + { + leftchild = true; + current = LeftChild(current); + } + else + { + leftchild = false; + current = RightChild(current); + } } } } - public void RemoveAt(TKey elem) + public void RemoveAt( TKey elem ) { if (!IsValidIndex(elem)) return; @@ -445,7 +442,7 @@ public void RemoveAt(TKey elem) --NumElements; } - public bool Remove(TValue value) + public bool Remove( TValue value ) { TKey node = Find(value); if (node != -TKey.One) @@ -454,22 +451,26 @@ public bool Remove(TValue value) return node != -TKey.One; } - public TKey Find(TValue value) + public TKey Find( TValue value ) { TKey current = Root; - while (IsValidIndex(current)) + unsafe { - if (LFunc(ref value, ref this[current])) - { - current = LeftChild(current); - } - else if (LFunc(ref this[current], ref value)) + var @delegate = (delegate*< ref TValue, ref TValue, bool >)LFunc; + while (IsValidIndex(current)) { - current = RightChild(current); - } - else - { - return current; + if (@delegate(ref value, ref this[current])) + { + current = LeftChild(current); + } + else if (@delegate(ref this[current], ref value)) + { + current = RightChild(current); + } + else + { + return current; + } } } @@ -481,7 +482,7 @@ public void RemoveAll() if (LastAlloc.Index == -TKey.One) return; - for (TKey i = TKey.Zero; i <= LastAlloc.Index; i++) + for (var i = TKey.Zero; i <= LastAlloc.Index; i++) { if (IsValidIndex(i)) { @@ -524,7 +525,7 @@ public TKey FirstInorder() return current; } - public TKey NextInorder(TKey i) + public TKey NextInorder( TKey i ) { if (!IsValidIndex(i)) return -TKey.One; @@ -547,7 +548,7 @@ public TKey NextInorder(TKey i) return parent; } - public TKey PrevInorder(TKey i) + public TKey PrevInorder( TKey i ) { if (!IsValidIndex(i)) return -TKey.One; @@ -587,7 +588,7 @@ public TKey FirstPreorder() return Root; } - public TKey NextPreorder(TKey i) + public TKey NextPreorder( TKey i ) { if (!IsValidIndex(i)) return -TKey.One; @@ -611,7 +612,7 @@ public TKey NextPreorder(TKey i) return -TKey.One; } - public TKey PrevPreorder(TKey i) => -TKey.One; + public TKey PrevPreorder( TKey i ) => -TKey.One; public TKey LastPreorder() { @@ -649,7 +650,7 @@ public TKey FirstPostorder() return current; } - public TKey NextPostorder(TKey i) + public TKey NextPostorder( TKey i ) { if (!IsValidIndex(i)) return -TKey.One; @@ -674,7 +675,7 @@ public TKey NextPostorder(TKey i) return parent; } - public void Reinsert(TKey i) + public void Reinsert( TKey i ) { if (!IsValidIndex(i)) return; @@ -685,27 +686,15 @@ public void Reinsert(TKey i) public bool IsValid() { - if (Count == 0) - return true; - - if (LastAlloc.Index == -TKey.One) - return false; - - if (!Elements.IsIdxValid(Root)) - return false; - - if (Parent(Root) != InvalidIndex()) - return false; - - return true; + return Count == 0 || (LastAlloc.Index != -TKey.One && Elements.IsIdxValid(Root) && Parent(Root) == InvalidIndex()); } - public void SetLessFunc(LessFunc func) + public void SetLessFunc( LessFunc func ) { - LFunc = func; + LFunc = Marshal.GetFunctionPointerForDelegate(func); } - public TKey Insert(TValue val) + public TKey Insert( TValue val ) { FindInsertionPosition(val, out TKey parent, out bool leftchild); @@ -714,9 +703,9 @@ public TKey Insert(TValue val) return newNode; } - public TKey InsertIfNotFound(TValue val) + public TKey InsertIfNotFound( TValue val ) { - TKey node = Find(val); + var node = Find(val); if (node == -TKey.One) node = Insert(val); @@ -724,6 +713,6 @@ public TKey InsertIfNotFound(TValue val) } public ref TValue this[TKey i] => ref Elements[i].Data; - public uint Count => uint.CreateChecked(NumElements); + public readonly uint Count => uint.CreateChecked(NumElements); public TKey MaxElement => TKey.CreateChecked(Elements.NumAllocated); } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Shared/Natives/Structs/CUtlSymbolLarge.cs b/managed/src/SwiftlyS2.Shared/Natives/Structs/CUtlSymbolLarge.cs index 44d255407..99157031c 100644 --- a/managed/src/SwiftlyS2.Shared/Natives/Structs/CUtlSymbolLarge.cs +++ b/managed/src/SwiftlyS2.Shared/Natives/Structs/CUtlSymbolLarge.cs @@ -7,7 +7,7 @@ namespace SwiftlyS2.Shared.Natives; [StructLayout(LayoutKind.Sequential, Size = 8)] public struct CUtlSymbolLarge { - private nint _pString; + internal nint _pString; public string Value { get { diff --git a/managed/src/SwiftlyS2.Shared/Natives/Structs/CUtlVector.cs b/managed/src/SwiftlyS2.Shared/Natives/Structs/CUtlVector.cs index ee1e6627a..099552c53 100644 --- a/managed/src/SwiftlyS2.Shared/Natives/Structs/CUtlVector.cs +++ b/managed/src/SwiftlyS2.Shared/Natives/Structs/CUtlVector.cs @@ -13,7 +13,7 @@ public struct CUtlVector : IEnumerable private int _size; private CUtlMemory _memory; - public int ElementSize => SchemaSize.Get(); + public int ElementSize => SchemaInfo.Get(); /// /// Please use instead to construct it. @@ -243,7 +243,7 @@ public void RemoveAll() public IEnumerator GetEnumerator() { - for (int i = 0; i < _size; i++) + for (var i = 0; i < _size; i++) { yield return this[i]; } diff --git a/managed/src/SwiftlyS2.Shared/Natives/Structs/Color.cs b/managed/src/SwiftlyS2.Shared/Natives/Structs/Color.cs index 95f82d67f..74539a4f1 100644 --- a/managed/src/SwiftlyS2.Shared/Natives/Structs/Color.cs +++ b/managed/src/SwiftlyS2.Shared/Natives/Structs/Color.cs @@ -80,4 +80,146 @@ public readonly bool Equals( Color other ) public static bool operator ==( Color left, Color right ) => left.Equals(right); public static bool operator !=( Color left, Color right ) => !left.Equals(right); + + public static Color AliceBlue = FromBuiltin(System.Drawing.Color.AliceBlue); + public static Color AntiqueWhite = FromBuiltin(System.Drawing.Color.AntiqueWhite); + public static Color Aqua = FromBuiltin(System.Drawing.Color.Aqua); + public static Color Aquamarine = FromBuiltin(System.Drawing.Color.Aquamarine); + public static Color Azure = FromBuiltin(System.Drawing.Color.Azure); + public static Color Beige = FromBuiltin(System.Drawing.Color.Beige); + public static Color Bisque = FromBuiltin(System.Drawing.Color.Bisque); + public static Color Black = FromBuiltin(System.Drawing.Color.Black); + public static Color BlanchedAlmond = FromBuiltin(System.Drawing.Color.BlanchedAlmond); + public static Color Blue = FromBuiltin(System.Drawing.Color.Blue); + public static Color BlueViolet = FromBuiltin(System.Drawing.Color.BlueViolet); + public static Color Brown = FromBuiltin(System.Drawing.Color.Brown); + public static Color BurlyWood = FromBuiltin(System.Drawing.Color.BurlyWood); + public static Color CadetBlue = FromBuiltin(System.Drawing.Color.CadetBlue); + public static Color Chartreuse = FromBuiltin(System.Drawing.Color.Chartreuse); + public static Color Chocolate = FromBuiltin(System.Drawing.Color.Chocolate); + public static Color Coral = FromBuiltin(System.Drawing.Color.Coral); + public static Color CornflowerBlue = FromBuiltin(System.Drawing.Color.CornflowerBlue); + public static Color Cornsilk = FromBuiltin(System.Drawing.Color.Cornsilk); + public static Color Crimson = FromBuiltin(System.Drawing.Color.Crimson); + public static Color Cyan = FromBuiltin(System.Drawing.Color.Cyan); + public static Color DarkBlue = FromBuiltin(System.Drawing.Color.DarkBlue); + public static Color DarkCyan = FromBuiltin(System.Drawing.Color.DarkCyan); + public static Color DarkGoldenrod = FromBuiltin(System.Drawing.Color.DarkGoldenrod); + public static Color DarkGray = FromBuiltin(System.Drawing.Color.DarkGray); + public static Color DarkGreen = FromBuiltin(System.Drawing.Color.DarkGreen); + public static Color DarkKhaki = FromBuiltin(System.Drawing.Color.DarkKhaki); + public static Color DarkMagenta = FromBuiltin(System.Drawing.Color.DarkMagenta); + public static Color DarkOliveGreen = FromBuiltin(System.Drawing.Color.DarkOliveGreen); + public static Color DarkOrange = FromBuiltin(System.Drawing.Color.DarkOrange); + public static Color DarkOrchid = FromBuiltin(System.Drawing.Color.DarkOrchid); + public static Color DarkRed = FromBuiltin(System.Drawing.Color.DarkRed); + public static Color DarkSalmon = FromBuiltin(System.Drawing.Color.DarkSalmon); + public static Color DarkSeaGreen = FromBuiltin(System.Drawing.Color.DarkSeaGreen); + public static Color DarkSlateBlue = FromBuiltin(System.Drawing.Color.DarkSlateBlue); + public static Color DarkSlateGray = FromBuiltin(System.Drawing.Color.DarkSlateGray); + public static Color DarkTurquoise = FromBuiltin(System.Drawing.Color.DarkTurquoise); + public static Color DarkViolet = FromBuiltin(System.Drawing.Color.DarkViolet); + public static Color DeepPink = FromBuiltin(System.Drawing.Color.DeepPink); + public static Color DeepSkyBlue = FromBuiltin(System.Drawing.Color.DeepSkyBlue); + public static Color DimGray = FromBuiltin(System.Drawing.Color.DimGray); + public static Color DodgerBlue = FromBuiltin(System.Drawing.Color.DodgerBlue); + public static Color Firebrick = FromBuiltin(System.Drawing.Color.Firebrick); + public static Color FloralWhite = FromBuiltin(System.Drawing.Color.FloralWhite); + public static Color ForestGreen = FromBuiltin(System.Drawing.Color.ForestGreen); + public static Color Fuchsia = FromBuiltin(System.Drawing.Color.Fuchsia); + public static Color Gainsboro = FromBuiltin(System.Drawing.Color.Gainsboro); + public static Color GhostWhite = FromBuiltin(System.Drawing.Color.GhostWhite); + public static Color Gold = FromBuiltin(System.Drawing.Color.Gold); + public static Color Goldenrod = FromBuiltin(System.Drawing.Color.Goldenrod); + public static Color Gray = FromBuiltin(System.Drawing.Color.Gray); + public static Color Green = FromBuiltin(System.Drawing.Color.Green); + public static Color GreenYellow = FromBuiltin(System.Drawing.Color.GreenYellow); + public static Color Honeydew = FromBuiltin(System.Drawing.Color.Honeydew); + public static Color HotPink = FromBuiltin(System.Drawing.Color.HotPink); + public static Color IndianRed = FromBuiltin(System.Drawing.Color.IndianRed); + public static Color Indigo = FromBuiltin(System.Drawing.Color.Indigo); + public static Color Ivory = FromBuiltin(System.Drawing.Color.Ivory); + public static Color Khaki = FromBuiltin(System.Drawing.Color.Khaki); + public static Color Lavender = FromBuiltin(System.Drawing.Color.Lavender); + public static Color LavenderBlush = FromBuiltin(System.Drawing.Color.LavenderBlush); + public static Color LawnGreen = FromBuiltin(System.Drawing.Color.LawnGreen); + public static Color LemonChiffon = FromBuiltin(System.Drawing.Color.LemonChiffon); + public static Color LightBlue = FromBuiltin(System.Drawing.Color.LightBlue); + public static Color LightCoral = FromBuiltin(System.Drawing.Color.LightCoral); + public static Color LightCyan = FromBuiltin(System.Drawing.Color.LightCyan); + public static Color LightGoldenrodYellow = FromBuiltin(System.Drawing.Color.LightGoldenrodYellow); + public static Color LightGray = FromBuiltin(System.Drawing.Color.LightGray); + public static Color LightGreen = FromBuiltin(System.Drawing.Color.LightGreen); + public static Color LightPink = FromBuiltin(System.Drawing.Color.LightPink); + public static Color LightSalmon = FromBuiltin(System.Drawing.Color.LightSalmon); + public static Color LightSeaGreen = FromBuiltin(System.Drawing.Color.LightSeaGreen); + public static Color LightSkyBlue = FromBuiltin(System.Drawing.Color.LightSkyBlue); + public static Color LightSlateGray = FromBuiltin(System.Drawing.Color.LightSlateGray); + public static Color LightSteelBlue = FromBuiltin(System.Drawing.Color.LightSteelBlue); + public static Color LightYellow = FromBuiltin(System.Drawing.Color.LightYellow); + public static Color Lime = FromBuiltin(System.Drawing.Color.Lime); + public static Color LimeGreen = FromBuiltin(System.Drawing.Color.LimeGreen); + public static Color Linen = FromBuiltin(System.Drawing.Color.Linen); + public static Color Magenta = FromBuiltin(System.Drawing.Color.Magenta); + public static Color Maroon = FromBuiltin(System.Drawing.Color.Maroon); + public static Color MediumAquamarine = FromBuiltin(System.Drawing.Color.MediumAquamarine); + public static Color MediumBlue = FromBuiltin(System.Drawing.Color.MediumBlue); + public static Color MediumOrchid = FromBuiltin(System.Drawing.Color.MediumOrchid); + public static Color MediumPurple = FromBuiltin(System.Drawing.Color.MediumPurple); + public static Color MediumSeaGreen = FromBuiltin(System.Drawing.Color.MediumSeaGreen); + public static Color MediumSlateBlue = FromBuiltin(System.Drawing.Color.MediumSlateBlue); + public static Color MediumSpringGreen = FromBuiltin(System.Drawing.Color.MediumSpringGreen); + public static Color MediumTurquoise = FromBuiltin(System.Drawing.Color.MediumTurquoise); + public static Color MediumVioletRed = FromBuiltin(System.Drawing.Color.MediumVioletRed); + public static Color MidnightBlue = FromBuiltin(System.Drawing.Color.MidnightBlue); + public static Color MintCream = FromBuiltin(System.Drawing.Color.MintCream); + public static Color MistyRose = FromBuiltin(System.Drawing.Color.MistyRose); + public static Color Moccasin = FromBuiltin(System.Drawing.Color.Moccasin); + public static Color NavajoWhite = FromBuiltin(System.Drawing.Color.NavajoWhite); + public static Color Navy = FromBuiltin(System.Drawing.Color.Navy); + public static Color OldLace = FromBuiltin(System.Drawing.Color.OldLace); + public static Color Olive = FromBuiltin(System.Drawing.Color.Olive); + public static Color OliveDrab = FromBuiltin(System.Drawing.Color.OliveDrab); + public static Color Orange = FromBuiltin(System.Drawing.Color.Orange); + public static Color OrangeRed = FromBuiltin(System.Drawing.Color.OrangeRed); + public static Color Orchid = FromBuiltin(System.Drawing.Color.Orchid); + public static Color PaleGoldenrod = FromBuiltin(System.Drawing.Color.PaleGoldenrod); + public static Color PaleGreen = FromBuiltin(System.Drawing.Color.PaleGreen); + public static Color PaleTurquoise = FromBuiltin(System.Drawing.Color.PaleTurquoise); + public static Color PaleVioletRed = FromBuiltin(System.Drawing.Color.PaleVioletRed); + public static Color PapayaWhip = FromBuiltin(System.Drawing.Color.PapayaWhip); + public static Color PeachPuff = FromBuiltin(System.Drawing.Color.PeachPuff); + public static Color Peru = FromBuiltin(System.Drawing.Color.Peru); + public static Color Pink = FromBuiltin(System.Drawing.Color.Pink); + public static Color Plum = FromBuiltin(System.Drawing.Color.Plum); + public static Color PowderBlue = FromBuiltin(System.Drawing.Color.PowderBlue); + public static Color Purple = FromBuiltin(System.Drawing.Color.Purple); + public static Color RebeccaPurple = FromBuiltin(System.Drawing.Color.RebeccaPurple); + public static Color Red = FromBuiltin(System.Drawing.Color.Red); + public static Color RosyBrown = FromBuiltin(System.Drawing.Color.RosyBrown); + public static Color RoyalBlue = FromBuiltin(System.Drawing.Color.RoyalBlue); + public static Color SaddleBrown = FromBuiltin(System.Drawing.Color.SaddleBrown); + public static Color Salmon = FromBuiltin(System.Drawing.Color.Salmon); + public static Color SandyBrown = FromBuiltin(System.Drawing.Color.SandyBrown); + public static Color SeaGreen = FromBuiltin(System.Drawing.Color.SeaGreen); + public static Color SeaShell = FromBuiltin(System.Drawing.Color.SeaShell); + public static Color Sienna = FromBuiltin(System.Drawing.Color.Sienna); + public static Color Silver = FromBuiltin(System.Drawing.Color.Silver); + public static Color SkyBlue = FromBuiltin(System.Drawing.Color.SkyBlue); + public static Color SlateBlue = FromBuiltin(System.Drawing.Color.SlateBlue); + public static Color SlateGray = FromBuiltin(System.Drawing.Color.SlateGray); + public static Color Snow = FromBuiltin(System.Drawing.Color.Snow); + public static Color SpringGreen = FromBuiltin(System.Drawing.Color.SpringGreen); + public static Color SteelBlue = FromBuiltin(System.Drawing.Color.SteelBlue); + public static Color Tan = FromBuiltin(System.Drawing.Color.Tan); + public static Color Teal = FromBuiltin(System.Drawing.Color.Teal); + public static Color Thistle = FromBuiltin(System.Drawing.Color.Thistle); + public static Color Tomato = FromBuiltin(System.Drawing.Color.Tomato); + public static Color Turquoise = FromBuiltin(System.Drawing.Color.Turquoise); + public static Color Violet = FromBuiltin(System.Drawing.Color.Violet); + public static Color Wheat = FromBuiltin(System.Drawing.Color.Wheat); + public static Color White = FromBuiltin(System.Drawing.Color.White); + public static Color WhiteSmoke = FromBuiltin(System.Drawing.Color.WhiteSmoke); + public static Color Yellow = FromBuiltin(System.Drawing.Color.Yellow); + public static Color YellowGreen = FromBuiltin(System.Drawing.Color.YellowGreen); } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Shared/Natives/Structs/RnCollisionAttr_t.cs b/managed/src/SwiftlyS2.Shared/Natives/Structs/RnCollisionAttr_t.cs index b28808022..e752f377a 100644 --- a/managed/src/SwiftlyS2.Shared/Natives/Structs/RnCollisionAttr_t.cs +++ b/managed/src/SwiftlyS2.Shared/Natives/Structs/RnCollisionAttr_t.cs @@ -2,7 +2,7 @@ namespace SwiftlyS2.Shared.Natives; -public enum CollisionFunctionMask_t: byte +public enum CollisionFunctionMask_t : byte { FCOLLISION_FUNC_ENABLE_SOLID_CONTACT = (1 << 0), FCOLLISION_FUNC_ENABLE_TRACE_QUERY = (1 << 1), @@ -21,6 +21,9 @@ public struct RnCollisionAttr_t public uint EntityId; public uint OwnerId; public ushort HierarchyId; + public ushort DetailLayerMask; + public byte DetailLayerMaskType; + public byte TargetDetailLayer; public CollisionGroup CollisionGroup; public CollisionFunctionMask_t CollisionFunctionMask; } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Shared/Natives/Structs/Vector.cs b/managed/src/SwiftlyS2.Shared/Natives/Structs/Vector.cs index 3f26da3df..207aff776 100644 --- a/managed/src/SwiftlyS2.Shared/Natives/Structs/Vector.cs +++ b/managed/src/SwiftlyS2.Shared/Natives/Structs/Vector.cs @@ -244,5 +244,52 @@ public static bool TryDeserialize( [NotNullWhen(true)] string? input, IFormatPro return false; } + [MethodImpl(MethodImplOptions.AggressiveInlining)] + public readonly float Distance2D( Vector other ) + { + return MathF.Sqrt((X - other.X) * (X - other.X) + (Y - other.Y) * (Y - other.Y)); + } + + [MethodImpl(MethodImplOptions.AggressiveInlining)] + public readonly float Distance2DSquared( Vector other ) + { + return (X - other.X) * (X - other.X) + (Y - other.Y) * (Y - other.Y); + } + + [MethodImpl(MethodImplOptions.AggressiveInlining)] + public readonly float Length2D() + { + return MathF.Sqrt(X * X + Y * Y); + } + + [MethodImpl(MethodImplOptions.AggressiveInlining)] + public readonly float Length2DSquared() + { + return X * X + Y * Y; + } + + [MethodImpl(MethodImplOptions.AggressiveInlining)] + public void Normalize2D() + { + var len = Length2D(); + if (len > 0f) + { + var inv = 1.0f / len; + X *= inv; + Y *= inv; + } + } + + [MethodImpl(MethodImplOptions.AggressiveInlining)] + public readonly Vector Normalized2D() + { + var len = Length2D(); + if (len > 0f) + { + var inv = 1.0f / len; + return new(X * inv, Y * inv, Z); + } + return new Vector(0f, 0f, Z); + } } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Shared/PluginMetadata.cs b/managed/src/SwiftlyS2.Shared/PluginMetadata.cs index 910b22e1b..df3e6da7f 100644 --- a/managed/src/SwiftlyS2.Shared/PluginMetadata.cs +++ b/managed/src/SwiftlyS2.Shared/PluginMetadata.cs @@ -12,4 +12,5 @@ public string Name { public string Author { get; set; } = "Anonymous"; public string Description { get; set; } = "No further description."; public string Website { get; set; } = string.Empty; + public string MinimumAPIVersion { get; set; } = "0.0.0"; } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Shared/Plugins/BasePlugin.cs b/managed/src/SwiftlyS2.Shared/Plugins/BasePlugin.cs index 3606c2dfb..d23997c2e 100644 --- a/managed/src/SwiftlyS2.Shared/Plugins/BasePlugin.cs +++ b/managed/src/SwiftlyS2.Shared/Plugins/BasePlugin.cs @@ -25,8 +25,6 @@ public virtual void OnAllPluginsLoaded() { } public abstract void Unload(); - /// - /// You can choose when the plugin is allowed to reload. - /// + [Obsolete("Not supported.")] public virtual PluginReloadMethod ReloadMethod { get; set; } = PluginReloadMethod.Auto; } \ No newline at end of file diff --git a/managed/src/SwiftlyS2.Shared/Plugins/PluginReloadMethod.cs b/managed/src/SwiftlyS2.Shared/Plugins/PluginReloadMethod.cs index ad168ffbc..47fc7334c 100644 --- a/managed/src/SwiftlyS2.Shared/Plugins/PluginReloadMethod.cs +++ b/managed/src/SwiftlyS2.Shared/Plugins/PluginReloadMethod.cs @@ -1,5 +1,6 @@ namespace SwiftlyS2.Shared.Plugins; +[Obsolete("Not supported.")] public enum PluginReloadMethod { /// diff --git a/managed/src/TestPlugin/TestPlugin.cs b/managed/src/TestPlugin/TestPlugin.cs index a07156af9..290bfafbf 100644 --- a/managed/src/TestPlugin/TestPlugin.cs +++ b/managed/src/TestPlugin/TestPlugin.cs @@ -27,6 +27,7 @@ using SwiftlyS2.Shared.Menus; using SwiftlyS2.Shared.SteamAPI; using SwiftlyS2.Core.Menus.OptionsBase; +using System.Diagnostics; namespace TestPlugin; @@ -137,7 +138,7 @@ public InProcessConfig() } } -[PluginMetadata(Id = "sw2.testplugin", Version = "1.0.0")] +[PluginMetadata(Id = "sw2.testplugin", Version = "1.0.0", MinimumAPIVersion = "1.1.6")] public class TestPlugin : BasePlugin { public TestPlugin( ISwiftlyCore core ) : base(core) @@ -149,6 +150,8 @@ public TestPlugin( ISwiftlyCore core ) : base(core) { // Console.WriteLine($"WeaponServicesCanUse: {@event.Weapon.WeaponBaseVData.AttackMovespeedFactor} {@event.OriginalResult}"); }; + + // throw new InvalidOperationException("TestPlugin constructor exception"); } [Command("selfmute")] @@ -169,7 +172,13 @@ public void Test2Command( ICommandContext context ) [CommandAlias("cat", true)] public void CommandAliasTest( ICommandContext context ) { - context.Reply("CommandAliasTest\n"); + foreach (var player in Core.PlayerManager.GetAllPlayers()) + { + var controller = player.Controller; + if (controller is null) continue; + + Console.WriteLine($"PawnIsAlive: {controller.PawnIsAlive}"); + } } [Command("dbtest")] @@ -198,6 +207,22 @@ public void DatabaseTestCommand( ICommandContext context ) } } + [GameEventHandler(HookMode.Pre)] + public HookResult OnPlayerDeath( EventPlayerDeath @event ) + { + Console.WriteLine($"Is main thread?: {Core.IsGameThread}"); + if (@event.AttackerPlayer == null) return HookResult.Continue; + if (@event.AttackerPlayer.Controller == null) return HookResult.Continue; + if (@event.AttackerPlayer.Controller.DamageServices == null) return HookResult.Continue; + + foreach (var record in @event.AttackerPlayer.Controller.DamageServices.DamageList) + { + Console.WriteLine($"Damage service: {record.Damage} {record.DamagerXuid} {record.PlayerDamagerName}"); + } + + return HookResult.Continue; + } + [GameEventHandler(HookMode.Pre)] public HookResult OnPlayerSpawn( EventPlayerSpawn @event ) { @@ -676,6 +701,7 @@ public void TestCommand3( ICommandContext _ ) public void TestCommand33( ICommandContext context ) { var ent = Core.EntitySystem.CreateEntity(); + Console.WriteLine($"addr: {ent.Address:X}"); using CEntityKeyValues kv = new(); kv.Set("m_spawnflags", 256); ent.DispatchSpawn(kv); @@ -777,12 +803,18 @@ public unsafe void TestCommand8( ICommandContext context ) } [GameEventHandler(HookMode.Pre)] - public HookResult TestGameEventHandler( EventPlayerJump @e ) + public HookResult HandleRoundStart( EventRoundStart @event ) { - Console.WriteLine(@e.UserIdController.PlayerName); + Core.Logger.LogInformation("EventRoundStart fired"); return HookResult.Continue; } + [EventListener] + public void OnClientVoice( IOnClientVoiceEvent @event ) + { + Console.WriteLine($"OnClientVoice: {@event.PlayerId}"); + } + [ServerNetMessageInternalHandler] public HookResult TestSignonMessage( CNETMsg_SignonState msg, int playerid ) { @@ -798,6 +830,29 @@ public HookResult TestServerNetMessageHandler( CCSUsrMsg_SendPlayerItemDrops _ ) return HookResult.Continue; } + [Command("dw")] + public void DropWeaponTest( ICommandContext context ) + { + Console.WriteLine(Core.Localizer["test"]); + } + + [Command("stats")] + public void StatsCommand( ICommandContext context ) + { + var player = context.Sender!; + var name = player.Name; + context.Reply($"Your name is {name} and you ran the stats command!"); + } + + [Command("kurotest", registerRaw: true)] + public void Command_kurotest( ICommandContext context ) + { + foreach (var client in Core.PlayerManager.GetAllPlayers()) + { + Console.WriteLine($"{client.Name}"); + } + } + private Callback? _authTicketResponse; [EventListener] @@ -824,6 +879,13 @@ public void AuthResponse( GCMessageAvailable_t param ) Console.WriteLine($"AuthResponse {param.m_nMessageSize}"); } + [EventListener] + public void OnWeaponServicesDropWeapon( IOnWeaponServicesDropWeaponHook @event ) + { + Console.WriteLine($"OnWeaponServicesDropWeapon: {@event.WeaponServices.Address:X}, {(@event.Weapon != null ? @event.Weapon.DesignerName : "no weapon")}, {@event.SwappingWeapon}"); + @event.Result = HookResult.Stop; + } + [Command("getip")] public void GetIpCommand( ICommandContext context ) { @@ -1379,7 +1441,11 @@ public void LineOfSightCommand( ICommandContext context ) [CommandAlias("cmat")] public void CommandTestCommand( ICommandContext context ) { - Console.WriteLine(context); + Console.WriteLine("start"); + var sw = Stopwatch.StartNew(); + _ = Core.EntitySystem.GetAllEntities().Where(e => e.IsValid); + sw.Stop(); + Console.WriteLine($"end - elapsed: {sw.ElapsedMilliseconds} ms"); } [Command("ecwb")] diff --git a/natives/core.native b/natives/core.native index ceb262d76..3ebe341b8 100644 --- a/natives/core.native +++ b/natives/core.native @@ -2,4 +2,5 @@ class Core bool PluginManualLoadState = void string PluginLoadOrder = void -bool EnableProfilerByDefault = void \ No newline at end of file +bool EnableProfilerByDefault = void +bool IsMainThread = void \ No newline at end of file diff --git a/natives/engine/events.native b/natives/engine/events.native index 357228d01..e737f17f5 100644 --- a/natives/engine/events.native +++ b/natives/engine/events.native @@ -17,4 +17,5 @@ void RegisterOnMapUnloadCallback = ptr callback // string mapname void RegisterOnEntityTakeDamageCallback = ptr callback // CBaseEntity* entity, CTakeDamageInfo* info -> bool (true -> ignored, false -> supercede) void RegisterOnPrecacheResourceCallback = ptr callback // IEntityResourceManifest* pResourceManifest void RegisterOnPreworldUpdateCallback = ptr callback // bool simulating -void RegisterOnStartupServerCallback = ptr callback // void \ No newline at end of file +void RegisterOnStartupServerCallback = ptr callback // void +void RegisterOnClientVoiceCallback = ptr callback // int32 playerid \ No newline at end of file diff --git a/natives/engine/helpers.native b/natives/engine/helpers.native index dbd5f92ea..dd70b25ff 100644 --- a/natives/engine/helpers.native +++ b/natives/engine/helpers.native @@ -13,4 +13,5 @@ ptr GetGlobalVars = void ptr GetNetworkGameServer = void string GetCSGODirectoryPath = void string GetGameDirectoryPath = void -string GetWorkshopId = void \ No newline at end of file +string GetWorkshopId = void +void DispatchParticleEffect = string particleName, uint32 attachmentType, ptr entity, byte attachmentPoint, ptr attachmentName, bool resetAllParticlesOnEntity, int32 splitScreenSlot, uint64 filtermask \ No newline at end of file diff --git a/natives/server/commands.native b/natives/server/commands.native index f478286c4..f519e7002 100644 --- a/natives/server/commands.native +++ b/natives/server/commands.native @@ -1,7 +1,7 @@ class Commands sync int32 HandleCommandForPlayer = int32 playerid, string command // 1 -> not silent, 2 -> silent, -1 -> invalid player, 0 -> no command -uint64 RegisterCommand = string commandName, ptr callback, bool registerRaw // callback should receive (int32 playerid, string arguments_list (separated by \x01), string commandName, string prefix, bool silent), if registerRaw is false, it will not put "sw_" before the command name +uint64 RegisterCommand = string commandName, ptr callback, bool registerRaw, string helpText // callback should receive (int32 playerid, string arguments_list (separated by \x01), string commandName, string prefix, bool silent), if registerRaw is false, it will not put "sw_" before the command name void UnregisterCommand = uint64 callbackID bool IsCommandRegistered = string commandName uint64 RegisterAlias = string aliasName, string commandName, bool registerRaw // registerRaw behaves the same as on RegisterCommand, for commandName you need to also put the "sw_" prefix if the command is registered without raw mode diff --git a/natives/server/player.native b/natives/server/player.native index 3367d95ef..0d5ac12c1 100644 --- a/natives/server/player.native +++ b/natives/server/player.native @@ -26,4 +26,6 @@ void ClearCenterMenuRender = int32 playerid bool HasMenuShown = int32 playerid sync void ExecuteCommand = int32 playerid, string command bool IsFirstSpawn = int32 playerid -int32 GetUserID = int32 playerid \ No newline at end of file +int32 GetUserID = int32 playerid +uint64 GetSessionID = int32 playerid +string GetName = int32 playerid \ No newline at end of file diff --git a/natives/server/playermanager.native b/natives/server/playermanager.native index f90f0200e..e4cf134af 100644 --- a/natives/server/playermanager.native +++ b/natives/server/playermanager.native @@ -1,6 +1,5 @@ class PlayerManager -bool IsPlayerOnline = int32 playerid int32 GetPlayerCount = void int32 GetPlayerCap = void sync void SendMessage = int32 kind, string message, int32 duration diff --git a/plugin_files/gamedata/cs2/core/offsets.jsonc b/plugin_files/gamedata/cs2/core/offsets.jsonc index 350ea59f7..f3a9f5789 100644 --- a/plugin_files/gamedata/cs2/core/offsets.jsonc +++ b/plugin_files/gamedata/cs2/core/offsets.jsonc @@ -131,6 +131,10 @@ "windows": 17, "linux": 17 }, + "IServerGameClients::ClientVoice": { + "windows": 27, + "linux": 27 + }, "IServerGameClients::ClientConnect": { "windows": 12, "linux": 12 @@ -189,5 +193,9 @@ "CGameRules::GetViewVectors": { "windows": 32, "linux": 33 + }, + "CNetworkGameServer::m_Clients": { + "windows": 592, + "linux": 592 } } \ No newline at end of file diff --git a/plugin_files/gamedata/cs2/core/signatures.jsonc b/plugin_files/gamedata/cs2/core/signatures.jsonc index 13e060c80..5fa6424df 100644 --- a/plugin_files/gamedata/cs2/core/signatures.jsonc +++ b/plugin_files/gamedata/cs2/core/signatures.jsonc @@ -28,8 +28,8 @@ // Taken from CS2Fixes (https://github.com/Source2ZE/CS2Fixes) "CBaseModelEntity::SetModel": { "lib": "server", - "windows": "40 53 48 83 EC ? 48 8B D9 4C 8B C2 48 8B 0D ? ? ? ? 48 8D 54 24 ? 48 8B 01 FF 50 ? 48 8B 44 24 ? 48 8D 54 24 ? 48 8B CB 48 89 44 24 ? E8 ? ? ? ? 48 83 C4 ? 5B C3 CC CC CC CC CC 48 89 5C 24", - "linux": "55 48 89 F2 48 89 E5 53 48 89 FB 48 8D 7D ? 48 83 EC ? 48 8D 05 ? ? ? ? 48 8B 30 48 8B 06 FF 50 ? 48 8B 45 ? 48 8D 75 ? 48 89 DF 48 89 45 ? E8 ? ? ? ? 48 8B 5D ? C9 C3 CC CC CC 55" + "windows": "40 53 48 83 EC ? 48 8B D9 4C 8B C2 48 8B 0D ? ? ? ? 48 8D 54 24 ? 48 8B 01 FF 50 ? 48 8B 44 24", + "linux": "55 48 89 F2 48 89 E5 53 48 89 FB 48 8D 7D ? 48 83 EC ? 48 8D 05 ? ? ? ? 48 8B 30 48 8B 06" }, // The function has "classname" in it. It can be found when searching for UTIL::CreateEntityByName "CBaseEntity::DispatchSpawn": { @@ -134,7 +134,7 @@ "CEntitySystem::AddEntityIOEvent": { "lib": "server", "windows": "48 89 5C 24 18 4C 89 4C 24 20 48 89 4C 24 08 55 56 57 41 54 41 55 41 56 41 57 48 83 EC 20", - "linux": "55 48 89 E5 41 55 49 89 CD 41 54 49 89 FC" + "linux": "55 48 89 E5 41 55 49 89 CD 41 54 49 89 FC 53 BB" }, // Function with 5 arguments next to sv_walkable_normal references "TracePlayerBBox": { @@ -226,5 +226,11 @@ "lib": "server", "windows": "40 53 56 41 56 48 83 EC ? 44 89 44 24", "linux": "55 48 89 E5 41 57 49 89 D7 89 CA" + }, + // Search for "#SFUI_Notice_YouDroppedWeapon" + "CCSPlayer_WeaponServices::DropWeapon": { + "lib": "server", + "windows": "48 89 74 24 20 57 41 54 41 57 48 83 EC 40 45", + "linux": "55 48 89 E5 41 57 41 56 41 55 41 89 D5 41 54 49 89 FC 48" } -} \ No newline at end of file +} diff --git a/src/api/sdk/schema.h b/src/api/sdk/schema.h index d60adeb05..879e385f0 100644 --- a/src/api/sdk/schema.h +++ b/src/api/sdk/schema.h @@ -49,6 +49,7 @@ class ISDKSchema virtual inputfunc_t* GetDatamapFunction(uint32_t uHash) = 0; virtual void Load() = 0; + virtual void DumpEntitySystem() = 0; }; #endif \ No newline at end of file diff --git a/src/api/server/commands/manager.h b/src/api/server/commands/manager.h index 192fd18b0..705b7ba33 100644 --- a/src/api/server/commands/manager.h +++ b/src/api/server/commands/manager.h @@ -35,7 +35,7 @@ class IServerCommands virtual bool HandleClientChat(int playerid, const std::string& text, bool teamonly) = 0; // playerid, args, command_name, prefix, silent - virtual uint64_t RegisterCommand(std::string command_name, std::function, std::string, std::string, bool)> handler, bool registerRaw) = 0; + virtual uint64_t RegisterCommand(std::string command_name, std::function, std::string, std::string, bool)> handler, bool registerRaw, std::string helpText) = 0; virtual void UnregisterCommand(uint64_t command_id) = 0; virtual bool IsCommandRegistered(std::string command_name) = 0; diff --git a/src/api/server/players/player.h b/src/api/server/players/player.h index c5aef7480..322f4c632 100644 --- a/src/api/server/players/player.h +++ b/src/api/server/players/player.h @@ -42,7 +42,7 @@ enum MessageType : uint8_t struct BlockedTransmitInfo { - uint64_t blockedMask[MAX_EDICTS / 64] = { 0 }; + uint64_t blockedMask[MAX_EDICTS >> 6] = { 0 }; std::vector activeMasks; }; @@ -98,6 +98,9 @@ class IPlayer virtual bool IsFirstSpawn() = 0; virtual void SetFirstSpawn(bool state) = 0; + + virtual uint64_t GetSessionID() = 0; + virtual const char* GetName() = 0; }; #endif \ No newline at end of file diff --git a/src/api/shared/string.cpp b/src/api/shared/string.cpp index ab90570e5..11da7c237 100644 --- a/src/api/shared/string.cpp +++ b/src/api/shared/string.cpp @@ -302,10 +302,8 @@ std::vector TokenizeCommand(std::string cmd) } if (std::isspace(c) && !single_quote && !double_quote) { - if (!tmp_token.empty()) { - tokens.push_back(tmp_token); - tmp_token.clear(); - } + tokens.push_back(tmp_token); + tmp_token.clear(); } else { tmp_token += c; diff --git a/src/core/entrypoint.cpp b/src/core/entrypoint.cpp index 9602fceb3..f2fe2b1b0 100644 --- a/src/core/entrypoint.cpp +++ b/src/core/entrypoint.cpp @@ -50,9 +50,11 @@ #include #include +#include SwiftlyCore g_SwiftlyCore; InterfacesManager g_ifaceService; +std::thread::id g_mainThreadId; INetworkMessages* networkMessages = nullptr; @@ -61,16 +63,6 @@ IVFunctionHook* g_pGameServerSteamAPIDeactivated = nullptr; IVFunctionHook* g_pLoopInitHook = nullptr; -// // Simple benchmark function for P/Invoke testing -// #ifdef _WIN32 -// extern "C" __declspec(dllexport) int32_t SwiftlyS2_Benchmark_PInvoke() -// #else -// extern "C" __attribute__((visibility("default"))) int32_t SwiftlyS2_Benchmark_PInvoke() -// #endif -// { -// return 1337; -// } - #ifdef _WIN32 #include IFunctionHook* g_pPreloadDLLHook = nullptr; @@ -84,14 +76,10 @@ bool LoopInitHook(void* _this, KeyValues* pKeyValues, void* pRegistry); extern ICvar* g_pCVar; -CON_COMMAND(sw_crash, "") -{ - int* ptr = nullptr; - *ptr = 0; -} - bool SwiftlyCore::Load(BridgeKind_t kind) { + g_mainThreadId = std::this_thread::get_id(); + m_iKind = kind; SetupConsoleColors(); @@ -105,6 +93,7 @@ bool SwiftlyCore::Load(BridgeKind_t kind) { m_sLogPath += WIN_LINUX("\\", "/"); } + m_sLogPath = replace(m_sLogPath, WIN_LINUX("addons\\swiftlys2", "addons/swiftlys2"), m_sCorePath); auto crashreporter = g_ifaceService.FetchInterface(CRASHREPORTER_INTERFACE_VERSION); crashreporter->Init(); @@ -147,6 +136,16 @@ bool SwiftlyCore::Load(BridgeKind_t kind) #endif } + const char* hideLogInConsole = CommandLine()->ParmValue(CUtlStringToken("-sw_hide_logs_in_console")); + if (hideLogInConsole) + { +#ifdef _WIN32 + _putenv_s("SWIFTLY_HIDE_LOG_IN_CONSOLE", hideLogInConsole); +#else + setenv("SWIFTLY_HIDE_LOG_IN_CONSOLE", hideLogInConsole, 1); +#endif + } + if (GetCurrentGame() == "unknown") { auto engine = g_ifaceService.FetchInterface(INTERFACEVERSION_VENGINESERVER); diff --git a/src/engine/consoleoutput/consoleoutput.cpp b/src/engine/consoleoutput/consoleoutput.cpp index e5a3eecc5..ccb0eba3b 100644 --- a/src/engine/consoleoutput/consoleoutput.cpp +++ b/src/engine/consoleoutput/consoleoutput.cpp @@ -39,6 +39,9 @@ IFunctionHook* g_CLoggingSystem_LogDirect_Hook = nullptr; int CLoggingSystem_LogDirectHook(void* loggingSystem, int channel, int severity, LeafCodeInfo_t* leafCode, char const* str, va_list* args) { + if (!str) + return reinterpret_cast(g_CLoggingSystem_LogDirect_Hook->GetOriginal())(loggingSystem, channel, severity, leafCode, str, args); + char buf[MAX_LOGGING_MESSAGE_LENGTH]; if (args) { va_list cpargs; diff --git a/src/engine/entities/entitysystem.cpp b/src/engine/entities/entitysystem.cpp index 1305a3769..aa6dea809 100644 --- a/src/engine/entities/entitysystem.cpp +++ b/src/engine/entities/entitysystem.cpp @@ -142,6 +142,9 @@ void StartupServerHook(void* _this, const GameSessionConfiguration_t& config, IS g_pGameEntitySystem = entSystem; g_pGameEntitySystem->AddListenerEntity(&g_entityListener); + auto sdkschema = g_ifaceService.FetchInterface(SDKSCHEMA_INTERFACE_VERSION); + sdkschema->DumpEntitySystem(); + g_bDone = true; } diff --git a/src/engine/entities/listener.cpp b/src/engine/entities/listener.cpp index 1d457e85b..49f99bb6b 100644 --- a/src/engine/entities/listener.cpp +++ b/src/engine/entities/listener.cpp @@ -74,25 +74,24 @@ void CEntityListener::OnEntityCreated(CEntityInstance* pEntity) void CEntityListener::OnEntityDeleted(CEntityInstance* pEntity) { static auto playermanager = g_ifaceService.FetchInterface(PLAYERMANAGER_INTERFACE_VERSION); - for (int i = 0; i < 64; i++) - if (playermanager->IsPlayerOnline(i)) { - auto player = playermanager->GetPlayer(i); - if (!player) continue; - auto& transmittingBits = player->GetBlockedTransmittingBits(); + for (int i = 0; i < 64; i++) { + auto player = playermanager->GetPlayer(i); + if (!player) continue; + auto& transmittingBits = player->GetBlockedTransmittingBits(); - auto entindex = pEntity->m_pEntity->m_EHandle.GetEntryIndex(); - auto dword = entindex / 64; + auto entindex = pEntity->m_pEntity->m_EHandle.GetEntryIndex(); + auto dword = entindex >> 6; - auto result = std::find(transmittingBits.activeMasks.begin(), transmittingBits.activeMasks.end(), dword); + auto result = std::find(transmittingBits.activeMasks.begin(), transmittingBits.activeMasks.end(), dword); - if (result == transmittingBits.activeMasks.end()) { - continue; - } - - transmittingBits.blockedMask[dword] &= ~(1ULL << (entindex % 64)); - if (transmittingBits.blockedMask[dword] == 0) transmittingBits.activeMasks.erase(result); + if (result == transmittingBits.activeMasks.end()) { + continue; } + transmittingBits.blockedMask[dword] &= ~(1ULL << (entindex % 64)); + if (transmittingBits.blockedMask[dword] == 0) transmittingBits.activeMasks.erase(result); + } + if (g_pOnEntityDeletedCallback) reinterpret_cast(g_pOnEntityDeletedCallback)(pEntity); diff --git a/src/engine/gameevents/gameevents.cpp b/src/engine/gameevents/gameevents.cpp index 70cc8b5a2..9c387cd66 100644 --- a/src/engine/gameevents/gameevents.cpp +++ b/src/engine/gameevents/gameevents.cpp @@ -115,20 +115,21 @@ void CEventManager::Initialize(std::string game_name) RegisterGameEventListener("round_start"); RegisterGameEventListener("player_spawn"); - AddGameEventFireListener([](std::string event_name, IGameEvent* event, bool& dont_broadcast) -> int { - if (event_name == "round_start") { - static auto vgui = g_ifaceService.FetchInterface(VGUI_INTERFACE_VERSION); - vgui->ResetStateOfScreenTexts(); + // AddGameEventFireListener([](std::string event_name, IGameEvent* event, bool& dont_broadcast) -> int { + // if (event_name == "round_start") { + // static auto vgui = g_ifaceService.FetchInterface(VGUI_INTERFACE_VERSION); - timeoutsArray.push_back({ GetTime() + 100, []() -> void { - vgui->RegenerateScreenTexts(); - } }); + // vgui->ResetStateOfScreenTexts(); - processingTimeouts = true; - } - return 0; - }); + // timeoutsArray.push_back({ GetTime() + 100, []() -> void { + // vgui->RegenerateScreenTexts(); + // } }); + + // processingTimeouts = true; + // } + // return 0; + // }); AddPostGameEventFireListener([](std::string event_name, IGameEvent* event, bool& dont_broadcast) -> int { if (event_name == "player_spawn") { diff --git a/src/engine/voicemanager/voicemanager.cpp b/src/engine/voicemanager/voicemanager.cpp index 8ffa55e8a..e75c5c852 100644 --- a/src/engine/voicemanager/voicemanager.cpp +++ b/src/engine/voicemanager/voicemanager.cpp @@ -25,9 +25,11 @@ IVFunctionHook* g_pSetClientListeningHook = nullptr; IVFunctionHook* g_pClientCommandHook = nullptr; +IVFunctionHook* g_pClientVoiceHook = nullptr; bool SetClientListeningHook(void* _this, CPlayerSlot iReceiver, CPlayerSlot iSender, bool bListen); void ClientCommandHook(void* _this, CPlayerSlot slot, const CCommand& args); +void ClientVoiceHook(void* _this, CPlayerSlot slot); #define CBaseEntity_m_iTeamNum 0x9DC483B8A5BFEFB3 @@ -46,6 +48,10 @@ void CVoiceManager::Initialize() g_pClientCommandHook = hooksmanager->CreateVFunctionHook(); g_pClientCommandHook->SetHookFunction(gameclientsvtable, gamedata->GetOffsets()->Fetch("IServerGameClients::ClientCommand"), (void*)ClientCommandHook, true); g_pClientCommandHook->Enable(); + + g_pClientVoiceHook = hooksmanager->CreateVFunctionHook(); + g_pClientVoiceHook->SetHookFunction(gameclientsvtable, gamedata->GetOffsets()->Fetch("IServerGameClients::ClientVoice"), (void*)ClientVoiceHook, true); + g_pClientVoiceHook->Enable(); } void CVoiceManager::Shutdown() @@ -65,6 +71,13 @@ void CVoiceManager::Shutdown() hooksmanager->DestroyVFunctionHook(g_pClientCommandHook); g_pClientCommandHook = nullptr; } + + if (g_pClientVoiceHook) + { + g_pClientVoiceHook->Disable(); + hooksmanager->DestroyVFunctionHook(g_pClientVoiceHook); + g_pClientVoiceHook = nullptr; + } } bool SetClientListeningHook(void* _this, CPlayerSlot iReceiver, CPlayerSlot iSender, bool bListen) @@ -138,6 +151,16 @@ void ClientCommandHook(void* _this, CPlayerSlot slot, const CCommand& args) return reinterpret_cast(g_pClientCommandHook->GetOriginal())(_this, slot, args); } +extern void* g_pOnClientVoiceCallback; + +void ClientVoiceHook(void* _this, CPlayerSlot slot) +{ + reinterpret_cast(g_pClientVoiceHook->GetOriginal())(_this, slot); + + if (g_pOnClientVoiceCallback != nullptr) + reinterpret_cast(g_pOnClientVoiceCallback)(slot.Get()); +} + void CVoiceManager::SetClientListenOverride(int playerid, int targetid, ListenOverride override) { auto playermanager = g_ifaceService.FetchInterface(PLAYERMANAGER_INTERFACE_VERSION); diff --git a/src/monitor/crashreporter/crashreporter.cpp b/src/monitor/crashreporter/crashreporter.cpp index 6d552b466..08736284d 100644 --- a/src/monitor/crashreporter/crashreporter.cpp +++ b/src/monitor/crashreporter/crashreporter.cpp @@ -212,6 +212,7 @@ inline void ReportCrashIncident(const std::string& crashDir, void* exceptionInfo } crashReport["timestamp"] = fmt::format("{} UTC{:+03d}:{:02d}", timeBuffer, offset_hours, abs(offset_mins)); crashReport["timestampUTC"] = static_cast(timestamp); + crashReport["nativeVersion"] = g_SwiftlyCore.GetVersion(); #ifdef _WIN32 crashReport["processId"] = processIdOverride ? processIdOverride : static_cast(GetCurrentProcessId()); diff --git a/src/network/database/manager.cpp b/src/network/database/manager.cpp index 56982db02..bf4f05d80 100644 --- a/src/network/database/manager.cpp +++ b/src/network/database/manager.cpp @@ -72,7 +72,7 @@ DatabaseConnection CDatabaseManager::ParseUri(const std::string& uri) // not an absolute path if (rest.find('/') == std::string::npos) { - conn.database = Files::GeneratePath("addons/swiftlys2/data/" + rest); + conn.database = Files::GeneratePath(g_SwiftlyCore.GetCorePath() + "data/" + rest); } // relative path from `game/{GAME_NAME}` else if (GetRelativePath(rest) == rest) diff --git a/src/scripting/core/core.cpp b/src/scripting/core/core.cpp index 2f9cd9517..c9ee2a9aa 100644 --- a/src/scripting/core/core.cpp +++ b/src/scripting/core/core.cpp @@ -18,6 +18,9 @@ #include #include +#include + +extern std::thread::id g_mainThreadId; uint8_t Bridge_Core_PluginManualLoadState() { @@ -50,6 +53,12 @@ uint8_t Bridge_Core_EnableProfilerByDefault() return 0; } +uint8_t Bridge_Core_IsMainThread() +{ + return std::this_thread::get_id() == g_mainThreadId ? 1 : 0; +} + DEFINE_NATIVE("Core.PluginManualLoadState", Bridge_Core_PluginManualLoadState); DEFINE_NATIVE("Core.PluginLoadOrder", Bridge_Core_PluginLoadOrder); -DEFINE_NATIVE("Core.EnableProfilerByDefault", Bridge_Core_EnableProfilerByDefault); \ No newline at end of file +DEFINE_NATIVE("Core.EnableProfilerByDefault", Bridge_Core_EnableProfilerByDefault); +DEFINE_NATIVE("Core.IsMainThread", Bridge_Core_IsMainThread); \ No newline at end of file diff --git a/src/scripting/engine/enginehelpers.cpp b/src/scripting/engine/enginehelpers.cpp index b779f3d7a..24f875cf7 100644 --- a/src/scripting/engine/enginehelpers.cpp +++ b/src/scripting/engine/enginehelpers.cpp @@ -34,6 +34,8 @@ #include +#include + struct CBaseGameSystemFactory_t : public IGameSystemFactory { CBaseGameSystemFactory_t* m_pNext; const char* m_pName; @@ -198,6 +200,14 @@ int Bridge_EngineHelpers_GetWorkshopId(char* out) return workshop_map.size(); } +void Bridge_EngineHelpers_DispatchParticleEffect(const char* particleName, uint attachmentType, void* entity, byte attachmentPoint, const char* attachmentName, bool resetAllParticlesOnEntity, int splitScreenSlot, uint64_t filtermask) +{ + auto gamedata = g_ifaceService.FetchInterface(GAMEDATA_INTERFACE_VERSION); + auto func = gamedata->GetSignatures()->Fetch("DispatchParticleEffect"); + CRecipientFilter a; + *(uint64_t*)(a.GetRecipients().Base()) = filtermask; + reinterpret_cast(func)(particleName, attachmentType, entity, attachmentPoint, CUtlSymbolLarge(attachmentName), resetAllParticlesOnEntity, splitScreenSlot, a, 0); +} DEFINE_NATIVE("EngineHelpers.GetIP", Bridge_EngineHelpers_GetIP); DEFINE_NATIVE("EngineHelpers.IsMapValid", Bridge_EngineHelpers_IsMapValid); DEFINE_NATIVE("EngineHelpers.ExecuteCommand", Bridge_EngineHelpers_ExecuteCommand); @@ -211,4 +221,5 @@ DEFINE_NATIVE("EngineHelpers.GetGlobalVars", Bridge_EngineHelpers_GetGlobalVars) DEFINE_NATIVE("EngineHelpers.GetCSGODirectoryPath", Bridge_EngineHelpers_GetCSGODirectoryPath); DEFINE_NATIVE("EngineHelpers.GetGameDirectoryPath", Bridge_EngineHelpers_GetGameDirectoryPath); DEFINE_NATIVE("EngineHelpers.GetWorkshopId", Bridge_EngineHelpers_GetWorkshopId); -DEFINE_NATIVE("EngineHelpers.GetNetworkGameServer", Bridge_EngineHelpers_GetNetworkGameServer); \ No newline at end of file +DEFINE_NATIVE("EngineHelpers.GetNetworkGameServer", Bridge_EngineHelpers_GetNetworkGameServer); +DEFINE_NATIVE("EngineHelpers.DispatchParticleEffect", Bridge_EngineHelpers_DispatchParticleEffect); \ No newline at end of file diff --git a/src/scripting/engine/entitysystem.cpp b/src/scripting/engine/entitysystem.cpp index ab176d226..e06f637f2 100644 --- a/src/scripting/engine/entitysystem.cpp +++ b/src/scripting/engine/entitysystem.cpp @@ -21,7 +21,7 @@ #include -typedef void (*CEntityInstance_AcceptInput)(void*, const char*, void*, void*, void*, int); +typedef void (*CEntityInstance_AcceptInput)(void*, const char*, void*, void*, void*, int, void*); typedef void (*CEntitySystem_AddEntityIOEvent)(void*, void*, const char*, void*, void*, void*, float, int, void*, void*); void Bridge_EntitySystem_Spawn(void* pEntity, void* pKeyValues) @@ -47,7 +47,7 @@ void Bridge_EntitySystem_AcceptInput(void* pEntity, const char* input, void* pAc static auto gamedata = g_ifaceService.FetchInterface(GAMEDATA_INTERFACE_VERSION); static auto sig = gamedata->GetSignatures()->Fetch("CEntityInstance::AcceptInput"); - reinterpret_cast(sig)(pEntity, input, pActivator, pCaller, variant, outputID); + reinterpret_cast(sig)(pEntity, input, pActivator, pCaller, variant, outputID, nullptr); } void Bridge_EntitySystem_AddEntityIOEvent(void* pEntity, const char* input, void* pActivator, void* pCaller, void* variant, float delay) diff --git a/src/scripting/engine/events.cpp b/src/scripting/engine/events.cpp index b79ef1a08..96411339d 100644 --- a/src/scripting/engine/events.cpp +++ b/src/scripting/engine/events.cpp @@ -37,6 +37,7 @@ void* g_pOnEntityTakeDamageCallback = nullptr; void* g_pOnPrecacheResourceCallback = nullptr; void* g_pOnPreworldUpdateCallback = nullptr; void* g_pOnStartupServerCallback = nullptr; +void* g_pOnClientVoiceCallback = nullptr; void Bridge_Events_RegisterOnGameTickCallback(void* callback) { @@ -128,6 +129,11 @@ void Bridge_Events_RegisterOnStartupServerCallback(void* callback) g_pOnStartupServerCallback = callback; } +void Bridge_Events_RegisterOnClientVoiceCallback(void* callback) +{ + g_pOnClientVoiceCallback = callback; +} + DEFINE_NATIVE("Events.RegisterOnGameTickCallback", Bridge_Events_RegisterOnGameTickCallback); DEFINE_NATIVE("Events.RegisterOnClientConnectCallback", Bridge_Events_RegisterOnClientConnectCallback); DEFINE_NATIVE("Events.RegisterOnClientDisconnectCallback", Bridge_Events_RegisterOnClientDisconnectCallback); @@ -145,4 +151,5 @@ DEFINE_NATIVE("Events.RegisterOnMapUnloadCallback", Bridge_Events_RegisterOnMapU DEFINE_NATIVE("Events.RegisterOnEntityTakeDamageCallback", Bridge_Events_RegisterOnEntityTakeDamageCallback); DEFINE_NATIVE("Events.RegisterOnPrecacheResourceCallback", Bridge_Events_RegisterOnPrecacheResourceCallback); DEFINE_NATIVE("Events.RegisterOnPreworldUpdateCallback", Bridge_Events_RegisterOnPreworldUpdateCallback); -DEFINE_NATIVE("Events.RegisterOnStartupServerCallback", Bridge_Events_RegisterOnStartupServerCallback); \ No newline at end of file +DEFINE_NATIVE("Events.RegisterOnStartupServerCallback", Bridge_Events_RegisterOnStartupServerCallback); +DEFINE_NATIVE("Events.RegisterOnClientVoiceCallback", Bridge_Events_RegisterOnClientVoiceCallback); \ No newline at end of file diff --git a/src/scripting/engine/gameevents.cpp b/src/scripting/engine/gameevents.cpp index afba37e2e..4d392dcd6 100644 --- a/src/scripting/engine/gameevents.cpp +++ b/src/scripting/engine/gameevents.cpp @@ -28,26 +28,31 @@ typedef IGameEventListener2* (*GetLegacyGameEventListener)(CPlayerSlot slot); bool Bridge_GameEvents_GetBool(void* event, const char* key) { + if (!event) return false; return ((IGameEvent*)event)->GetBool(key); } int Bridge_GameEvents_GetInt(void* event, const char* key) { + if (!event) return 0; return ((IGameEvent*)event)->GetInt(key); } uint64_t Bridge_GameEvents_GetUint64(void* event, const char* key) { + if (!event) return 0; return ((IGameEvent*)event)->GetUint64(key); } float Bridge_GameEvents_GetFloat(void* event, const char* key) { + if (!event) return 0.0f; return ((IGameEvent*)event)->GetFloat(key); } int Bridge_GameEvents_GetString(char* out, void* event, const char* key) { + if (!event) return 1; static std::string s; s = ((IGameEvent*)event)->GetString(key); @@ -58,106 +63,127 @@ int Bridge_GameEvents_GetString(char* out, void* event, const char* key) void* Bridge_GameEvents_GetPtr(void* event, const char* key) { + if (!event) return nullptr; return ((IGameEvent*)event)->GetPtr(key); } void* Bridge_GameEvents_GetEHandle(void* event, const char* key) { + if (!event) return nullptr; return ((IGameEvent*)event)->GetEHandle(key).Get(); } void* Bridge_GameEvents_GetEntity(void* event, const char* key) { + if (!event) return nullptr; return ((IGameEvent*)event)->GetEntity(key); } int Bridge_GameEvents_GetEntityIndex(void* event, const char* key) { + if (!event) return -1; return ((IGameEvent*)event)->GetEntityIndex(key).Get(); } int Bridge_GameEvents_GetPlayerSlot(void* event, const char* key) { + if (!event) return -1; return ((IGameEvent*)event)->GetPlayerSlot(key).Get(); } void* Bridge_GameEvents_GetPlayerController(void* event, const char* key) { + if (!event) return nullptr; return ((IGameEvent*)event)->GetPlayerController(key); } void* Bridge_GameEvents_GetPlayerPawn(void* event, const char* key) { + if (!event) return nullptr; return ((IGameEvent*)event)->GetPlayerPawn(key); } void* Bridge_GameEvents_GetPawnEHandle(void* event, const char* key) { + if (!event) return nullptr; return ((IGameEvent*)event)->GetPawnEHandle(key).Get(); } int Bridge_GameEvents_GetPawnEntityIndex(void* event, const char* key) { + if (!event) return -1; return ((IGameEvent*)event)->GetPawnEntityIndex(key).Get(); } void Bridge_GameEvents_SetBool(void* event, const char* key, bool value) { + if (!event) return; ((IGameEvent*)event)->SetBool(key, value); } void Bridge_GameEvents_SetInt(void* event, const char* key, int value) { + if (!event) return; ((IGameEvent*)event)->SetInt(key, value); } void Bridge_GameEvents_SetUint64(void* event, const char* key, uint64_t value) { + if (!event) return; ((IGameEvent*)event)->SetUint64(key, value); } void Bridge_GameEvents_SetFloat(void* event, const char* key, float value) { + if (!event) return; ((IGameEvent*)event)->SetFloat(key, value); } void Bridge_GameEvents_SetString(void* event, const char* key, const char* value) { + if (!event) return; ((IGameEvent*)event)->SetString(key, value); } void Bridge_GameEvents_SetPtr(void* event, const char* key, void* value) { + if (!event) return; ((IGameEvent*)event)->SetPtr(key, value); } void Bridge_GameEvents_SetEntity(void* event, const char* key, void* value) { + if (!event) return; ((IGameEvent*)event)->SetEntity(key, (CEntityInstance*)value); } void Bridge_GameEvents_SetEntityIndex(void* event, const char* key, int value) { + if (!event) return; ((IGameEvent*)event)->SetEntity(key, CEntityIndex(value)); } void Bridge_GameEvents_SetPlayerSlot(void* event, const char* key, int value) { + if (!event) return; ((IGameEvent*)event)->SetPlayer(key, CPlayerSlot(value)); } bool Bridge_GameEvents_HasKey(void* event, const char* key) { + if (!event) return false; return ((IGameEvent*)event)->HasKey(key); } bool Bridge_GameEvents_IsReliable(void* event) { + if (!event) return false; return ((IGameEvent*)event)->IsReliable(); } bool Bridge_GameEvents_IsLocal(void* event) { + if (!event) return false; return ((IGameEvent*)event)->IsLocal(); } @@ -217,12 +243,16 @@ void Bridge_GameEvents_FreeEvent(void* event) void Bridge_GameEvents_FireEvent(void* event, bool dontBroadcast) { + if (!event) return; + static auto eventmanager = g_ifaceService.FetchInterface(GAMEEVENTMANAGER_INTERFACE_VERSION); eventmanager->GetGameEventManager()->FireEvent((IGameEvent*)event, dontBroadcast); } void Bridge_GameEvents_FireEventToClient(void* event, int playerid) { + if (!event) return; + static auto gamedata = g_ifaceService.FetchInterface(GAMEDATA_INTERFACE_VERSION); static auto eventmanager = g_ifaceService.FetchInterface(GAMEEVENTMANAGER_INTERFACE_VERSION); static auto crashreporter = g_ifaceService.FetchInterface(CRASHREPORTER_INTERFACE_VERSION); diff --git a/src/scripting/server/commands.cpp b/src/scripting/server/commands.cpp index 9def8f3ac..31ad52009 100644 --- a/src/scripting/server/commands.cpp +++ b/src/scripting/server/commands.cpp @@ -32,7 +32,7 @@ int Bridge_Commands_HandleCommandForPlayer(int playerid, const char* command) return servercommands->HandleCommand(playerid, command, false); } -uint64_t Bridge_Commands_RegisterCommand(const char* commandName, void* callback, bool registerRaw) +uint64_t Bridge_Commands_RegisterCommand(const char* commandName, void* callback, bool registerRaw, const char* helpText) { auto servercommands = g_ifaceService.FetchInterface(SERVERCOMMANDS_INTERFACE_VERSION); if (!servercommands) @@ -56,7 +56,8 @@ uint64_t Bridge_Commands_RegisterCommand(const char* commandName, void* callback reinterpret_cast(callback)(playerid, imploded_args.c_str(), original_name.c_str(), selected_prefix.c_str(), isSilentCommand == true ? 1 : 0); }, - registerRaw); + registerRaw, + helpText); } void Bridge_Commands_UnregisterCommand(uint64_t callbackID) diff --git a/src/scripting/server/player.cpp b/src/scripting/server/player.cpp index db3a2a173..b4653a0c0 100644 --- a/src/scripting/server/player.cpp +++ b/src/scripting/server/player.cpp @@ -173,7 +173,7 @@ void Bridge_Player_ShouldBlockTransmitEntity(int playerid, int entityidx, bool s auto& bv = player->GetBlockedTransmittingBits(); - auto dword = entityidx / 64; + auto dword = entityidx >> 6; if (shouldBlockTransmit) { bool wasEmpty = (bv.blockedMask[dword] == 0); @@ -212,7 +212,7 @@ bool Bridge_Player_IsTransmitEntityBlocked(int playerid, int entityidx) } auto& bv = player->GetBlockedTransmittingBits(); - return (bv.blockedMask[entityidx / 64] & (1ULL << (entityidx % 64))) != 0; + return (bv.blockedMask[entityidx >> 6] & (1ULL << (entityidx % 64))) != 0; } void Bridge_Player_ClearTransmitEntityBlocked(int playerid) @@ -361,6 +361,33 @@ int Bridge_Player_GetUserID(int playerid) return engine->GetPlayerUserId(CPlayerSlot(playerid)).Get(); } +uint64_t Bridge_Player_GetSessionID(int playerid) +{ + static auto playerManager = g_ifaceService.FetchInterface(PLAYERMANAGER_INTERFACE_VERSION); + auto player = playerManager->GetPlayer(playerid); + if (!player) + return 0; + + return player->GetSessionID(); +} + +int Bridge_Player_GetName(char* out, int playerid) +{ + static auto playerManager = g_ifaceService.FetchInterface(PLAYERMANAGER_INTERFACE_VERSION); + auto player = playerManager->GetPlayer(playerid); + if (!player) + return 0; + + static std::string s; + s = player->GetName(); + + if (out != nullptr) + strcpy(out, s.c_str()); + + return s.size(); + +} + DEFINE_NATIVE("Player.SendMessage", Bridge_Player_SendMessage); DEFINE_NATIVE("Player.IsFakeClient", Bridge_Player_IsFakeClient); DEFINE_NATIVE("Player.IsAuthorized", Bridge_Player_IsAuthorized); @@ -387,4 +414,6 @@ DEFINE_NATIVE("Player.ClearCenterMenuRender", Bridge_Player_ClearCenterMenuRende DEFINE_NATIVE("Player.HasMenuShown", Bridge_Player_HasMenuShown); DEFINE_NATIVE("Player.ExecuteCommand", Bridge_Player_ExecuteCommand); DEFINE_NATIVE("Player.IsFirstSpawn", Bridge_Player_IsFirstSpawn); -DEFINE_NATIVE("Player.GetUserID", Bridge_Player_GetUserID); \ No newline at end of file +DEFINE_NATIVE("Player.GetUserID", Bridge_Player_GetUserID); +DEFINE_NATIVE("Player.GetSessionID", Bridge_Player_GetSessionID); +DEFINE_NATIVE("Player.GetName", Bridge_Player_GetName); \ No newline at end of file diff --git a/src/scripting/server/playermanager.cpp b/src/scripting/server/playermanager.cpp index 43c55d977..200269ab0 100644 --- a/src/scripting/server/playermanager.cpp +++ b/src/scripting/server/playermanager.cpp @@ -19,12 +19,6 @@ #include #include -bool Bridge_PlayerManager_IsPlayerOnline(int playerid) -{ - static auto playerManager = g_ifaceService.FetchInterface(PLAYERMANAGER_INTERFACE_VERSION); - return playerManager->IsPlayerOnline(playerid); -} - int Bridge_PlayerManager_GetPlayerCount() { static auto playerManager = g_ifaceService.FetchInterface(PLAYERMANAGER_INTERFACE_VERSION); @@ -46,7 +40,7 @@ void Bridge_PlayerManager_SendMessage(int kind, const char* message, int duratio void Bridge_PlayerManager_ShouldBlockTransmitEntity(int entityidx, bool shouldBlockTransmit) { static auto playerManager = g_ifaceService.FetchInterface(PLAYERMANAGER_INTERFACE_VERSION); - auto dword = entityidx / 64; + auto dword = entityidx >> 6; for (int i = 0; i < playerManager->GetPlayerCap(); i++) { auto player = playerManager->GetPlayer(i); if (!player) continue; @@ -79,11 +73,10 @@ void Bridge_PlayerManager_ClearAllBlockedTransmitEntity() auto& bv = player->GetBlockedTransmittingBits(); bv.activeMasks.clear(); - for (int j = 0; j < 256; j++) bv.blockedMask[j] = 0; + for (int j = 0; j < (MAX_EDICTS >> 6); j++) bv.blockedMask[j] = 0; } } -DEFINE_NATIVE("PlayerManager.IsPlayerOnline", Bridge_PlayerManager_IsPlayerOnline); DEFINE_NATIVE("PlayerManager.GetPlayerCount", Bridge_PlayerManager_GetPlayerCount); DEFINE_NATIVE("PlayerManager.GetPlayerCap", Bridge_PlayerManager_GetPlayerCap); DEFINE_NATIVE("PlayerManager.SendMessage", Bridge_PlayerManager_SendMessage); diff --git a/src/sdk/schema.cpp b/src/sdk/schema.cpp index 43d30c41d..8867da3f1 100644 --- a/src/sdk/schema.cpp +++ b/src/sdk/schema.cpp @@ -31,6 +31,8 @@ #include +#include + #define CBaseEntity_m_nSubclassID 0x9DC483B8C02CE796 std::unordered_map offsets; @@ -145,7 +147,7 @@ void CSDKSchema::Load() for (int i = 0; i < schemaSystem->m_TypeScopes.GetNumStrings(); i++) { auto ts = schemaSystem->m_TypeScopes[i]; - + classes_count += ts->m_DeclaredClasses.m_Map.Count(); FOR_EACH_MAP(ts->m_DeclaredClasses.m_Map, iter) @@ -186,6 +188,32 @@ void CSDKSchema::Load() WriteJSON(g_SwiftlyCore.GetCorePath() + "gamedata/cs2/datamaps.json", datamapsJson); } +void CSDKSchema::DumpEntitySystem() +{ +#ifdef _WIN32 + auto logger = g_ifaceService.FetchInterface(LOGGER_INTERFACE_VERSION); + json entitySystemJson; + + std::vector> entityClasses; + + FOR_EACH_MAP_FAST(GameEntitySystem()->m_entClassesByClassname, i) + { + entityClasses.push_back({ GameEntitySystem()->m_entClassesByClassname[i], GameEntitySystem()->m_entClassesByClassname.Key(i) }); + } + + for (auto& entityClass : entityClasses) + { + entitySystemJson["entity_classes"].push_back({ + {"class_name", entityClass.first->m_pClassInfo->m_pszCPPClassname}, + {"designer_name", entityClass.second}, + }); + } + + logger->Info("SDK", fmt::format("Mapped {} SDK classes to entity classnames.\n", entityClasses.size())); + WriteJSON(g_SwiftlyCore.GetCorePath() + "gamedata/cs2/entitysystem.json", entitySystemJson); +#endif +} + void CSDKSchema::SetStateChanged(void* pEntity, const char* sClassName, const char* sMemberName) { uint32_t class_hash = hash_32_fnv1a_const(sClassName); diff --git a/src/sdk/schema.h b/src/sdk/schema.h index 76d1ca193..8408d9bdf 100644 --- a/src/sdk/schema.h +++ b/src/sdk/schema.h @@ -60,6 +60,7 @@ class CSDKSchema : public ISDKSchema virtual inputfunc_t* GetDatamapFunction(uint32_t uHash) override; virtual void Load() override; + virtual void DumpEntitySystem() override; }; struct SchemaField diff --git a/src/server/commands/manager.cpp b/src/server/commands/manager.cpp index 32f1dfd83..4915f375c 100644 --- a/src/server/commands/manager.cpp +++ b/src/server/commands/manager.cpp @@ -194,18 +194,21 @@ int CServerCommands::HandleCommand(int playerid, const std::string& text, bool d } commandName.erase(0, selectedPrefix.size()); + std::transform(commandName.begin(), commandName.end(), commandName.begin(), ::tolower); std::string originalCommandName = commandName; + if (!commandHandlers.contains(commandName)) { commandName = "sw_" + commandName; } + if (!commandHandlers.contains(commandName)) { return 0; } - commandHandlers[commandName](playerid, cmdString, originalCommandName, selectedPrefix, isSilentCommand); + if (!dryrun) commandHandlers[commandName](playerid, cmdString, originalCommandName, selectedPrefix, isSilentCommand); } if (isCommand) @@ -258,7 +261,7 @@ bool CServerCommands::HandleClientChat(int playerid, const std::string& text, bo return true; } -uint64_t CServerCommands::RegisterCommand(std::string commandName, std::function, std::string, std::string, bool)> handler, bool registerRaw) +uint64_t CServerCommands::RegisterCommand(std::string commandName, std::function, std::string, std::string, bool)> handler, bool registerRaw, std::string helpText) { std::transform(commandName.begin(), commandName.end(), commandName.begin(), ::tolower); @@ -274,8 +277,7 @@ uint64_t CServerCommands::RegisterCommand(std::string commandName, std::function static uint64_t commandId = 0; if (!conCommandCreated.contains(commandName)) { - // printf("RegisterCommand -> commandName: %s, handler: %p, registerRaw: %d\n", commandName.c_str(), handler, registerRaw); - conCommandCreated[commandName] = new ConCommand(commandName.c_str(), CommandsCallback, "SwiftlyS2 registered command", FCVAR_CLIENT_CAN_EXECUTE | FCVAR_LINKED_CONCOMMAND); + conCommandCreated[commandName] = new ConCommand(commandName.c_str(), CommandsCallback, strdup(helpText.c_str()), FCVAR_CLIENT_CAN_EXECUTE | FCVAR_LINKED_CONCOMMAND); conCommandMapping[++commandId] = commandName; commandHandlers[commandName] = handler; conCommandCreated[commandName]->RemoveFlags(FCVAR_SERVER_CAN_EXECUTE); @@ -347,7 +349,7 @@ uint64_t CServerCommands::RegisterAlias(std::string aliasCommand, std::string co return 0; } } - return RegisterCommand(aliasCommand, commandHandlers[commandName], registerRaw); + return RegisterCommand(aliasCommand, commandHandlers[commandName], registerRaw, conCommandCreated[commandName]->GetHelpText()); } void CServerCommands::UnregisterAlias(uint64_t aliasId) @@ -396,6 +398,9 @@ void DispatchConCommand(void* thisPtr, ConCommandRef cmd, const CCommandContext& static auto playermanager = g_ifaceService.FetchInterface(PLAYERMANAGER_INTERFACE_VERSION); static auto eventmanager = g_ifaceService.FetchInterface(GAMEEVENTMANAGER_INTERFACE_VERSION); + std::string gameText = ""; + bool shouldSend = true; + if (slot.Get() != -1) { if (!servercommands->HandleClientCommand(slot.Get(), args.GetCommandString())) @@ -432,13 +437,17 @@ void DispatchConCommand(void* thisPtr, ConCommandRef cmd, const CCommandContext& } } - int handleCommandReturn = servercommands->HandleCommand(slot.Get(), text, false); - if (handleCommandReturn == 2 || !servercommands->HandleClientChat(slot.Get(), text, teamonly)) + gameText = text; + shouldSend = (servercommands->HandleCommand(slot.Get(), text, true) != 2); + + if (shouldSend && !servercommands->HandleClientChat(slot.Get(), text, teamonly)) { - return; + shouldSend = false; } } } - return reinterpret_cast(dispatchConCommandHook->GetOriginal())(thisPtr, cmd, ctx, args); + if (shouldSend) reinterpret_cast(dispatchConCommandHook->GetOriginal())(thisPtr, cmd, ctx, args); + + if (gameText != "") servercommands->HandleCommand(slot.Get(), gameText, false); } \ No newline at end of file diff --git a/src/server/commands/manager.h b/src/server/commands/manager.h index d96291d96..00b85a029 100644 --- a/src/server/commands/manager.h +++ b/src/server/commands/manager.h @@ -33,7 +33,7 @@ class CServerCommands : public IServerCommands virtual bool HandleClientChat(int playerid, const std::string& text, bool teamonly) override; // playerid, args, command_name, prefix, silent - virtual uint64_t RegisterCommand(std::string command_name, std::function, std::string, std::string, bool)> handler, bool registerRaw) override; + virtual uint64_t RegisterCommand(std::string command_name, std::function, std::string, std::string, bool)> handler, bool registerRaw, std::string helpText) override; virtual void UnregisterCommand(uint64_t command_id) override; virtual bool IsCommandRegistered(std::string command_name) override; diff --git a/src/server/players/manager.cpp b/src/server/players/manager.cpp index b24c33119..cee95c2a3 100644 --- a/src/server/players/manager.cpp +++ b/src/server/players/manager.cpp @@ -215,10 +215,6 @@ void CheckTransmitHook(void* _this, CCheckTransmitInfo** ppInfoList, int infoCou { auto& pInfo = ppInfoList[i]; int playerid = pInfo->m_nPlayerSlot.Get(); - if (!playermanager->IsPlayerOnline(playerid)) - { - continue; - } auto player = playermanager->GetPlayer(playerid); if (!player) @@ -227,6 +223,8 @@ void CheckTransmitHook(void* _this, CCheckTransmitInfo** ppInfoList, int infoCou } auto& blockedBits = player->GetBlockedTransmittingBits(); + if (blockedBits.activeMasks.empty()) continue; + uint64_t* base = reinterpret_cast(pInfo->m_pTransmitEntity->Base()); auto& activeMasks = blockedBits.activeMasks; @@ -267,15 +265,13 @@ void OnGameFramePlayerHook(void* _this, bool simulate, bool first, bool last) reinterpret_cast(g_pOnGameTickCallback)(simulate, first, last); for (int i = 0; i < 64; i++) - if (playermanager->IsPlayerOnline(i)) - { - auto player = playermanager->GetPlayer(i); - if (!player) - continue; - player->Think(); - } + { + auto player = playermanager->GetPlayer(i); + if (player) player->Think(); + } - vgui->Update(); + // Disabled due to not being used + // vgui->Update(); } extern void* g_pOnClientConnectCallback; @@ -309,12 +305,31 @@ bool ClientConnectHook(void* _this, CPlayerSlot slot, const char* pszName, uint6 void OnClientConnectedHook(void* _this, CPlayerSlot slot, const char* pszName, uint64 xuid, const char* pszNetworkID, const char* pszAddress, bool bFakePlayer) { static auto playermanager = g_ifaceService.FetchInterface(PLAYERMANAGER_INTERFACE_VERSION); + static auto engine = g_ifaceService.FetchInterface(INTERFACEVERSION_VENGINESERVER); auto playerid = slot.Get(); + if (bFakePlayer) { auto player = playermanager->RegisterPlayer(playerid); player->SetFakeClient(true); - // player->Initialize(playerid); + + if (g_pOnClientConnectCallback) + { + if (reinterpret_cast(g_pOnClientConnectCallback)(playerid) == false) + { + player->Kick("Connection rejected by plugin.", 0); + return; + } + } + } + else + { + if (engine->IsClientFullyAuthenticated(slot)) + { + auto player = playermanager->GetPlayer(playerid); + if (player) + player->ChangeAuthorizationState(true); + } } reinterpret_cast(g_pOnClientConnectedHook->GetOriginal())(_this, slot, pszName, xuid, pszNetworkID, pszAddress, bFakePlayer); @@ -362,7 +377,7 @@ void CPlayerManager::UnregisterPlayer(int playerid) auto player = g_Players[playerid]; g_Players[playerid] = nullptr; - vgui->UnregisterForPlayer(player); + // vgui->UnregisterForPlayer(player); player->Shutdown(); delete player; @@ -381,6 +396,7 @@ bool CPlayerManager::IsPlayerOnline(int playerid) { if (playerid < 0 || playerid >= g_SwiftlyCore.GetMaxGameClients()) return false; + static auto engine = g_ifaceService.FetchInterface(INTERFACEVERSION_VENGINESERVER); return (engine->GetClientSteamID(playerid) != nullptr); } diff --git a/src/server/players/player.cpp b/src/server/players/player.cpp index df1382723..d59bebf11 100644 --- a/src/server/players/player.cpp +++ b/src/server/players/player.cpp @@ -28,6 +28,8 @@ #include #include "usermessages.pb.h" +#include +#include #define CBaseEntity_m_iTeamNum 0x9DC483B8A5BFEFB3 #define CBaseEntity_m_fFlags 0x9DC483B8A4A37590 @@ -106,6 +108,18 @@ static const std::vector g_vButtons = { "unknown_key_63", }; +uint64_t sessionId = 1000; + +CServerSideClient* GetServerSideClient(int playerid) +{ + static auto offset = g_ifaceService.FetchInterface(GAMEDATA_INTERFACE_VERSION)->GetOffsets()->Fetch("CNetworkGameServer::m_Clients"); + + auto gameserver = g_ifaceService.FetchInterface(NETWORKSERVERSERVICE_INTERFACE_VERSION)->GetIGameServer(); + + auto clients = ((CUtlVector*)((uintptr_t)gameserver + offset)); + return clients->Element(playerid); +} + void CPlayer::Initialize(int playerid) { m_iPlayerId = playerid; @@ -113,6 +127,7 @@ void CPlayer::Initialize(int playerid) m_uConnectedTimeStart = std::chrono::high_resolution_clock::now(); m_bvBlockedTransmittingEntities.activeMasks.reserve(256); + m_uSessionId = sessionId++; } void CPlayer::Shutdown() @@ -166,7 +181,10 @@ void CPlayer::SendMsg(MessageType type, const std::string& message, int duration if (!schema) return; - msg = ProcessColor(message, *(int*)(schema->GetPropPtr(GetController(), CBaseEntity_m_iTeamNum))); + auto controller = GetController(); + if (!controller) + return; + msg = ProcessColor(message, *(int*)(schema->GetPropPtr(controller, CBaseEntity_m_iTeamNum))); if (startsWithColor) msg = " " + msg; @@ -532,4 +550,15 @@ void CPlayer::ClearRenderMenuCenterText() bool CPlayer::HasMenuShown() { return !centerMenuText.empty(); -} \ No newline at end of file +} + +uint64_t CPlayer::GetSessionID() +{ + return m_uSessionId; +} + +const char* CPlayer::GetName() +{ + return GetServerSideClient(m_iPlayerId)->GetClientName(); +} + diff --git a/src/server/players/player.h b/src/server/players/player.h index e3e6fb27b..c967fa76a 100644 --- a/src/server/players/player.h +++ b/src/server/players/player.h @@ -72,6 +72,8 @@ class CPlayer : public IPlayer virtual bool HasMenuShown() override; virtual bool IsFirstSpawn() override; virtual void SetFirstSpawn(bool state) override; + virtual uint64_t GetSessionID() override; + virtual const char* GetName() override; private: int m_iPlayerId; @@ -98,6 +100,7 @@ class CPlayer : public IPlayer IGameEvent* centerMessageEvent = nullptr; std::string centerMenuText = ""; + uint64_t m_uSessionId = 0; }; #endif \ No newline at end of file diff --git a/vendor/s2sdk b/vendor/s2sdk index 3be3bee95..11756be5e 160000 --- a/vendor/s2sdk +++ b/vendor/s2sdk @@ -1 +1 @@ -Subproject commit 3be3bee959abfc10ead9055bbbc5d03ad7c6a2ca +Subproject commit 11756be5e11f4005af1fe67e2c854c649b0eb195