├── .gitignore ├── README.md ├── splitgate.sln └── splitgate ├── core ├── dllmain.cpp ├── features │ ├── esp.cpp │ └── features.h ├── gui │ ├── zero_gui.cpp │ └── zero_gui.h ├── hooks │ ├── hooks.cpp │ ├── hooks.h │ └── minhook │ │ ├── buffer.c │ │ ├── buffer.h │ │ ├── hde │ │ ├── hde32.c │ │ ├── hde32.h │ │ ├── hde64.c │ │ ├── hde64.h │ │ ├── pstdint.h │ │ ├── table32.h │ │ └── table64.h │ │ ├── hook.c │ │ ├── minhook.h │ │ ├── trampoline.c │ │ └── trampoline.h ├── pch.h ├── renderer │ ├── renderer.cpp │ └── renderer.h ├── sdk │ ├── sdk.h │ └── sdk │ │ ├── AIModule_classes.h │ │ ├── AIModule_functions.cpp │ │ ├── AIModule_parameters.h │ │ ├── AIModule_structs.h │ │ ├── AcceptInviteDialog_WidgetBP_classes.h │ │ ├── AcceptInviteDialog_WidgetBP_functions.cpp │ │ ├── AcceptInviteDialog_WidgetBP_parameters.h │ │ ├── AcceptInviteDialog_WidgetBP_structs.h │ │ ├── ActionPlayerEntry_WidgetBP_classes.h │ │ ├── ActionPlayerEntry_WidgetBP_functions.cpp │ │ ├── ActionPlayerEntry_WidgetBP_parameters.h │ │ ├── ActionPlayerEntry_WidgetBP_structs.h │ │ ├── ActorLayerUtilities_classes.h │ │ ├── ActorLayerUtilities_functions.cpp │ │ ├── ActorLayerUtilities_parameters.h │ │ ├── ActorLayerUtilities_structs.h │ │ ├── ActorSequence_classes.h │ │ ├── ActorSequence_functions.cpp │ │ ├── ActorSequence_parameters.h │ │ ├── ActorSequence_structs.h │ │ ├── AddFriends_WidgetBP_classes.h │ │ ├── AddFriends_WidgetBP_functions.cpp │ │ ├── AddFriends_WidgetBP_parameters.h │ │ ├── AddFriends_WidgetBP_structs.h │ │ ├── AkAudio_classes.h │ │ ├── AkAudio_functions.cpp │ │ ├── AkAudio_parameters.h │ │ ├── AkAudio_structs.h │ │ ├── AlertButton_classes.h │ │ ├── AlertButton_functions.cpp │ │ ├── AlertButton_parameters.h │ │ ├── AlertButton_structs.h │ │ ├── AnimGraphRuntime_classes.h │ │ ├── AnimGraphRuntime_functions.cpp │ │ ├── AnimGraphRuntime_parameters.h │ │ ├── AnimGraphRuntime_structs.h │ │ ├── AnimationCore_classes.h │ │ ├── AnimationCore_functions.cpp │ │ ├── AnimationCore_parameters.h │ │ ├── AnimationCore_structs.h │ │ ├── AnimationSharing_classes.h │ │ ├── AnimationSharing_functions.cpp │ │ ├── AnimationSharing_parameters.h │ │ ├── AnimationSharing_structs.h │ │ ├── AppleImageUtils_classes.h │ │ ├── AppleImageUtils_functions.cpp │ │ ├── AppleImageUtils_parameters.h │ │ ├── AppleImageUtils_structs.h │ │ ├── AssetRegistry_classes.h │ │ ├── AssetRegistry_functions.cpp │ │ ├── AssetRegistry_parameters.h │ │ ├── AssetRegistry_structs.h │ │ ├── AssetTags_classes.h │ │ ├── AssetTags_functions.cpp │ │ ├── AssetTags_parameters.h │ │ ├── AssetTags_structs.h │ │ ├── AudioAnalyzer_classes.h │ │ ├── AudioAnalyzer_functions.cpp │ │ ├── AudioAnalyzer_parameters.h │ │ ├── AudioAnalyzer_structs.h │ │ ├── AudioExtensions_classes.h │ │ ├── AudioExtensions_functions.cpp │ │ ├── AudioExtensions_parameters.h │ │ ├── AudioExtensions_structs.h │ │ ├── AudioMixer_classes.h │ │ ├── AudioMixer_functions.cpp │ │ ├── AudioMixer_parameters.h │ │ ├── AudioMixer_structs.h │ │ ├── AudioPlatformConfiguration_classes.h │ │ ├── AudioPlatformConfiguration_functions.cpp │ │ ├── AudioPlatformConfiguration_parameters.h │ │ ├── AudioPlatformConfiguration_structs.h │ │ ├── AudioSettings_WidgetBP_classes.h │ │ ├── AudioSettings_WidgetBP_functions.cpp │ │ ├── AudioSettings_WidgetBP_parameters.h │ │ ├── AudioSettings_WidgetBP_structs.h │ │ ├── AudioSynesthesia_classes.h │ │ ├── AudioSynesthesia_functions.cpp │ │ ├── AudioSynesthesia_parameters.h │ │ ├── AudioSynesthesia_structs.h │ │ ├── AugmentedReality_classes.h │ │ ├── AugmentedReality_functions.cpp │ │ ├── AugmentedReality_parameters.h │ │ ├── AugmentedReality_structs.h │ │ ├── AutoCalibrateSettings_classes.h │ │ ├── AutoCalibrateSettings_functions.cpp │ │ ├── AutoCalibrateSettings_parameters.h │ │ ├── AutoCalibrateSettings_structs.h │ │ ├── AutomationUtils_classes.h │ │ ├── AutomationUtils_functions.cpp │ │ ├── AutomationUtils_parameters.h │ │ ├── AutomationUtils_structs.h │ │ ├── BPProgressionIcon_WidgetBP_classes.h │ │ ├── BPProgressionIcon_WidgetBP_functions.cpp │ │ ├── BPProgressionIcon_WidgetBP_parameters.h │ │ ├── BPProgressionIcon_WidgetBP_structs.h │ │ ├── BP_LightBeam_classes.h │ │ ├── BP_LightBeam_functions.cpp │ │ ├── BP_LightBeam_parameters.h │ │ ├── BP_LightBeam_structs.h │ │ ├── B_Spline_Impact_Road2_classes.h │ │ ├── B_Spline_Impact_Road2_functions.cpp │ │ ├── B_Spline_Impact_Road2_parameters.h │ │ ├── B_Spline_Impact_Road2_structs.h │ │ ├── B_Spline_Impact_Road_classes.h │ │ ├── B_Spline_Impact_Road_functions.cpp │ │ ├── B_Spline_Impact_Road_parameters.h │ │ ├── B_Spline_Impact_Road_structs.h │ │ ├── BackButton_classes.h │ │ ├── BackButton_functions.cpp │ │ ├── BackButton_parameters.h │ │ ├── BackButton_structs.h │ │ ├── BasicHelper.cpp │ │ ├── BasicHelper.h │ │ ├── BattlePassEntry_WidgetBP_classes.h │ │ ├── BattlePassEntry_WidgetBP_functions.cpp │ │ ├── BattlePassEntry_WidgetBP_parameters.h │ │ ├── BattlePassEntry_WidgetBP_structs.h │ │ ├── BattlePassPanelRewardEntry_classes.h │ │ ├── BattlePassPanelRewardEntry_functions.cpp │ │ ├── BattlePassPanelRewardEntry_parameters.h │ │ ├── BattlePassPanelRewardEntry_structs.h │ │ ├── BattlePassPanel_WidgetBP_classes.h │ │ ├── BattlePassPanel_WidgetBP_functions.cpp │ │ ├── BattlePassPanel_WidgetBP_parameters.h │ │ ├── BattlePassPanel_WidgetBP_structs.h │ │ ├── BattlePassPurchaseButton_classes.h │ │ ├── BattlePassPurchaseButton_functions.cpp │ │ ├── BattlePassPurchaseButton_parameters.h │ │ ├── BattlePassPurchaseButton_structs.h │ │ ├── BattlePassPurchaseDialog_WidgetBP_classes.h │ │ ├── BattlePassPurchaseDialog_WidgetBP_functions.cpp │ │ ├── BattlePassPurchaseDialog_WidgetBP_parameters.h │ │ ├── BattlePassPurchaseDialog_WidgetBP_structs.h │ │ ├── BattlePassPurchaseEntry_WidgetBP_classes.h │ │ ├── BattlePassPurchaseEntry_WidgetBP_functions.cpp │ │ ├── BattlePassPurchaseEntry_WidgetBP_parameters.h │ │ ├── BattlePassPurchaseEntry_WidgetBP_structs.h │ │ ├── BattlePassRedeemableButton_classes.h │ │ ├── BattlePassRedeemableButton_functions.cpp │ │ ├── BattlePassRedeemableButton_parameters.h │ │ ├── BattlePassRedeemableButton_structs.h │ │ ├── BattlePass_WidgetBP_classes.h │ │ ├── BattlePass_WidgetBP_functions.cpp │ │ ├── BattlePass_WidgetBP_parameters.h │ │ ├── BattlePass_WidgetBP_structs.h │ │ ├── BlockedPlayers_WidgetBP_classes.h │ │ ├── BlockedPlayers_WidgetBP_functions.cpp │ │ ├── BlockedPlayers_WidgetBP_parameters.h │ │ ├── BlockedPlayers_WidgetBP_structs.h │ │ ├── BlueButtonBase_classes.h │ │ ├── BlueButtonBase_functions.cpp │ │ ├── BlueButtonBase_parameters.h │ │ ├── BlueButtonBase_structs.h │ │ ├── Border_classes.h │ │ ├── Border_functions.cpp │ │ ├── Border_parameters.h │ │ ├── Border_structs.h │ │ ├── BuildPatchServices_classes.h │ │ ├── BuildPatchServices_functions.cpp │ │ ├── BuildPatchServices_parameters.h │ │ ├── BuildPatchServices_structs.h │ │ ├── ButtonBase2_classes.h │ │ ├── ButtonBase2_functions.cpp │ │ ├── ButtonBase2_parameters.h │ │ ├── ButtonBase2_structs.h │ │ ├── ButtonBase_classes.h │ │ ├── ButtonBase_functions.cpp │ │ ├── ButtonBase_parameters.h │ │ ├── ButtonBase_structs.h │ │ ├── CableComponent_classes.h │ │ ├── CableComponent_functions.cpp │ │ ├── CableComponent_parameters.h │ │ ├── CableComponent_structs.h │ │ ├── CancelButton_classes.h │ │ ├── CancelButton_functions.cpp │ │ ├── CancelButton_parameters.h │ │ ├── CancelButton_structs.h │ │ ├── CareerProgress_WidgetBP_classes.h │ │ ├── CareerProgress_WidgetBP_functions.cpp │ │ ├── CareerProgress_WidgetBP_parameters.h │ │ ├── CareerProgress_WidgetBP_structs.h │ │ ├── Career_WidgetBP_classes.h │ │ ├── Career_WidgetBP_functions.cpp │ │ ├── Career_WidgetBP_parameters.h │ │ ├── Career_WidgetBP_structs.h │ │ ├── ChallengeButtonLarge_WidgetBP_classes.h │ │ ├── ChallengeButtonLarge_WidgetBP_functions.cpp │ │ ├── ChallengeButtonLarge_WidgetBP_parameters.h │ │ ├── ChallengeButtonLarge_WidgetBP_structs.h │ │ ├── ChallengeButtonMedium_WidgetBP_classes.h │ │ ├── ChallengeButtonMedium_WidgetBP_functions.cpp │ │ ├── ChallengeButtonMedium_WidgetBP_parameters.h │ │ ├── ChallengeButtonMedium_WidgetBP_structs.h │ │ ├── ChallengeButtonSmall_WidgetBP_classes.h │ │ ├── ChallengeButtonSmall_WidgetBP_functions.cpp │ │ ├── ChallengeButtonSmall_WidgetBP_parameters.h │ │ ├── ChallengeButtonSmall_WidgetBP_structs.h │ │ ├── ChallengeButtonWeapon_WidgetBP_classes.h │ │ ├── ChallengeButtonWeapon_WidgetBP_functions.cpp │ │ ├── ChallengeButtonWeapon_WidgetBP_parameters.h │ │ ├── ChallengeButtonWeapon_WidgetBP_structs.h │ │ ├── ChallengeCompleteEntry_WidgetBP_classes.h │ │ ├── ChallengeCompleteEntry_WidgetBP_functions.cpp │ │ ├── ChallengeCompleteEntry_WidgetBP_parameters.h │ │ ├── ChallengeCompleteEntry_WidgetBP_structs.h │ │ ├── ChallengeDialog_WidgetBP_classes.h │ │ ├── ChallengeDialog_WidgetBP_functions.cpp │ │ ├── ChallengeDialog_WidgetBP_parameters.h │ │ ├── ChallengeDialog_WidgetBP_structs.h │ │ ├── ChallengeEntryFeaturedLarge_WidgetBP_classes.h │ │ ├── ChallengeEntryFeaturedLarge_WidgetBP_functions.cpp │ │ ├── ChallengeEntryFeaturedLarge_WidgetBP_parameters.h │ │ ├── ChallengeEntryFeaturedLarge_WidgetBP_structs.h │ │ ├── ChallengeEntryFeatured_WidgetBP_classes.h │ │ ├── ChallengeEntryFeatured_WidgetBP_functions.cpp │ │ ├── ChallengeEntryFeatured_WidgetBP_parameters.h │ │ ├── ChallengeEntryFeatured_WidgetBP_structs.h │ │ ├── ChallengeEntryLarge_WidgetBP_classes.h │ │ ├── ChallengeEntryLarge_WidgetBP_functions.cpp │ │ ├── ChallengeEntryLarge_WidgetBP_parameters.h │ │ ├── ChallengeEntryLarge_WidgetBP_structs.h │ │ ├── ChallengeEntryMedium_WidgetBP_classes.h │ │ ├── ChallengeEntryMedium_WidgetBP_functions.cpp │ │ ├── ChallengeEntryMedium_WidgetBP_parameters.h │ │ ├── ChallengeEntryMedium_WidgetBP_structs.h │ │ ├── ChallengeEntrySmall_WidgetBP_classes.h │ │ ├── ChallengeEntrySmall_WidgetBP_functions.cpp │ │ ├── ChallengeEntrySmall_WidgetBP_parameters.h │ │ ├── ChallengeEntrySmall_WidgetBP_structs.h │ │ ├── ChallengeInspectEntry_WidgetBP_classes.h │ │ ├── ChallengeInspectEntry_WidgetBP_functions.cpp │ │ ├── ChallengeInspectEntry_WidgetBP_parameters.h │ │ ├── ChallengeInspectEntry_WidgetBP_structs.h │ │ ├── ChallengeInspect_WidgetBP_classes.h │ │ ├── ChallengeInspect_WidgetBP_functions.cpp │ │ ├── ChallengeInspect_WidgetBP_parameters.h │ │ ├── ChallengeInspect_WidgetBP_structs.h │ │ ├── ChallengePanelEntry_WidgetBP_classes.h │ │ ├── ChallengePanelEntry_WidgetBP_functions.cpp │ │ ├── ChallengePanelEntry_WidgetBP_parameters.h │ │ ├── ChallengePanelEntry_WidgetBP_structs.h │ │ ├── ChallengePanel_WidgetBP_classes.h │ │ ├── ChallengePanel_WidgetBP_functions.cpp │ │ ├── ChallengePanel_WidgetBP_parameters.h │ │ ├── ChallengePanel_WidgetBP_structs.h │ │ ├── ChallengesLarge_WidgetBP_classes.h │ │ ├── ChallengesLarge_WidgetBP_functions.cpp │ │ ├── ChallengesLarge_WidgetBP_parameters.h │ │ ├── ChallengesLarge_WidgetBP_structs.h │ │ ├── ChallengesMedium_WidgetBP_classes.h │ │ ├── ChallengesMedium_WidgetBP_functions.cpp │ │ ├── ChallengesMedium_WidgetBP_parameters.h │ │ ├── ChallengesMedium_WidgetBP_structs.h │ │ ├── ChallengesSmall_WidgetBP_classes.h │ │ ├── ChallengesSmall_WidgetBP_functions.cpp │ │ ├── ChallengesSmall_WidgetBP_parameters.h │ │ ├── ChallengesSmall_WidgetBP_structs.h │ │ ├── Challenges_WidgetBP_classes.h │ │ ├── Challenges_WidgetBP_functions.cpp │ │ ├── Challenges_WidgetBP_parameters.h │ │ ├── Challenges_WidgetBP_structs.h │ │ ├── ChaosCloth_classes.h │ │ ├── ChaosCloth_functions.cpp │ │ ├── ChaosCloth_parameters.h │ │ ├── ChaosCloth_structs.h │ │ ├── ChaosSolverEngine_classes.h │ │ ├── ChaosSolverEngine_functions.cpp │ │ ├── ChaosSolverEngine_parameters.h │ │ ├── ChaosSolverEngine_structs.h │ │ ├── Chaos_classes.h │ │ ├── Chaos_functions.cpp │ │ ├── Chaos_parameters.h │ │ ├── Chaos_structs.h │ │ ├── CheckBox_classes.h │ │ ├── CheckBox_functions.cpp │ │ ├── CheckBox_parameters.h │ │ ├── CheckBox_structs.h │ │ ├── CheckInBigReward_WidgetBP_classes.h │ │ ├── CheckInBigReward_WidgetBP_functions.cpp │ │ ├── CheckInBigReward_WidgetBP_parameters.h │ │ ├── CheckInBigReward_WidgetBP_structs.h │ │ ├── CheckInDialog_WidgetBP_classes.h │ │ ├── CheckInDialog_WidgetBP_functions.cpp │ │ ├── CheckInDialog_WidgetBP_parameters.h │ │ ├── CheckInDialog_WidgetBP_structs.h │ │ ├── CheckInReward_WidgetBP_classes.h │ │ ├── CheckInReward_WidgetBP_functions.cpp │ │ ├── CheckInReward_WidgetBP_parameters.h │ │ ├── CheckInReward_WidgetBP_structs.h │ │ ├── ChunkInstall_WidgetBP_classes.h │ │ ├── ChunkInstall_WidgetBP_functions.cpp │ │ ├── ChunkInstall_WidgetBP_parameters.h │ │ ├── ChunkInstall_WidgetBP_structs.h │ │ ├── CinematicCamera_classes.h │ │ ├── CinematicCamera_functions.cpp │ │ ├── CinematicCamera_parameters.h │ │ ├── CinematicCamera_structs.h │ │ ├── ClaimChallengeIndicator_WidgetBP_classes.h │ │ ├── ClaimChallengeIndicator_WidgetBP_functions.cpp │ │ ├── ClaimChallengeIndicator_WidgetBP_parameters.h │ │ ├── ClaimChallengeIndicator_WidgetBP_structs.h │ │ ├── ClothingSystemRuntimeCommon_classes.h │ │ ├── ClothingSystemRuntimeCommon_functions.cpp │ │ ├── ClothingSystemRuntimeCommon_parameters.h │ │ ├── ClothingSystemRuntimeCommon_structs.h │ │ ├── ClothingSystemRuntimeInterface_classes.h │ │ ├── ClothingSystemRuntimeInterface_functions.cpp │ │ ├── ClothingSystemRuntimeInterface_parameters.h │ │ ├── ClothingSystemRuntimeInterface_structs.h │ │ ├── ClothingSystemRuntimeNv_classes.h │ │ ├── ClothingSystemRuntimeNv_functions.cpp │ │ ├── ClothingSystemRuntimeNv_parameters.h │ │ ├── ClothingSystemRuntimeNv_structs.h │ │ ├── ColorPicker_classes.h │ │ ├── ColorPicker_functions.cpp │ │ ├── ColorPicker_parameters.h │ │ ├── ColorPicker_structs.h │ │ ├── ColorblindTestImage_classes.h │ │ ├── ColorblindTestImage_functions.cpp │ │ ├── ColorblindTestImage_parameters.h │ │ ├── ColorblindTestImage_structs.h │ │ ├── ComingSoon_classes.h │ │ ├── ComingSoon_functions.cpp │ │ ├── ComingSoon_parameters.h │ │ ├── ComingSoon_structs.h │ │ ├── ControllerControlSettings_WidgetBP_classes.h │ │ ├── ControllerControlSettings_WidgetBP_functions.cpp │ │ ├── ControllerControlSettings_WidgetBP_parameters.h │ │ ├── ControllerControlSettings_WidgetBP_structs.h │ │ ├── ControllerSelectSettings_WidgetBP_classes.h │ │ ├── ControllerSelectSettings_WidgetBP_functions.cpp │ │ ├── ControllerSelectSettings_WidgetBP_parameters.h │ │ ├── ControllerSelectSettings_WidgetBP_structs.h │ │ ├── ControllerSettings_WidgetBP_classes.h │ │ ├── ControllerSettings_WidgetBP_functions.cpp │ │ ├── ControllerSettings_WidgetBP_parameters.h │ │ ├── ControllerSettings_WidgetBP_structs.h │ │ ├── CopyButton_classes.h │ │ ├── CopyButton_functions.cpp │ │ ├── CopyButton_parameters.h │ │ ├── CopyButton_structs.h │ │ ├── CoreUObject_classes.h │ │ ├── CoreUObject_functions.cpp │ │ ├── CoreUObject_parameters.h │ │ ├── CoreUObject_structs.h │ │ ├── CrosshairSelect_classes.h │ │ ├── CrosshairSelect_functions.cpp │ │ ├── CrosshairSelect_parameters.h │ │ ├── CrosshairSelect_structs.h │ │ ├── CurrencyPurchaseDialog_WidgetBP_classes.h │ │ ├── CurrencyPurchaseDialog_WidgetBP_functions.cpp │ │ ├── CurrencyPurchaseDialog_WidgetBP_parameters.h │ │ ├── CurrencyPurchaseDialog_WidgetBP_structs.h │ │ ├── CurrencyPurchaseEntry_WidgetBP_classes.h │ │ ├── CurrencyPurchaseEntry_WidgetBP_functions.cpp │ │ ├── CurrencyPurchaseEntry_WidgetBP_parameters.h │ │ ├── CurrencyPurchaseEntry_WidgetBP_structs.h │ │ ├── CurrencyRetryButton_classes.h │ │ ├── CurrencyRetryButton_functions.cpp │ │ ├── CurrencyRetryButton_parameters.h │ │ ├── CurrencyRetryButton_structs.h │ │ ├── CurrencyStoreEntryBig_WidgetBP_classes.h │ │ ├── CurrencyStoreEntryBig_WidgetBP_functions.cpp │ │ ├── CurrencyStoreEntryBig_WidgetBP_parameters.h │ │ ├── CurrencyStoreEntryBig_WidgetBP_structs.h │ │ ├── CurrencyStoreEntryMedium_WidgetBP_classes.h │ │ ├── CurrencyStoreEntryMedium_WidgetBP_functions.cpp │ │ ├── CurrencyStoreEntryMedium_WidgetBP_parameters.h │ │ ├── CurrencyStoreEntryMedium_WidgetBP_structs.h │ │ ├── CurrencyStoreEntrySmall_WidgetBP_classes.h │ │ ├── CurrencyStoreEntrySmall_WidgetBP_functions.cpp │ │ ├── CurrencyStoreEntrySmall_WidgetBP_parameters.h │ │ ├── CurrencyStoreEntrySmall_WidgetBP_structs.h │ │ ├── CurrencyStore_WidgetBP_classes.h │ │ ├── CurrencyStore_WidgetBP_functions.cpp │ │ ├── CurrencyStore_WidgetBP_parameters.h │ │ ├── CurrencyStore_WidgetBP_structs.h │ │ ├── CustomGameCreatedBy_WidgetBP_classes.h │ │ ├── CustomGameCreatedBy_WidgetBP_functions.cpp │ │ ├── CustomGameCreatedBy_WidgetBP_parameters.h │ │ ├── CustomGameCreatedBy_WidgetBP_structs.h │ │ ├── CustomGames_WidgetBP_classes.h │ │ ├── CustomGames_WidgetBP_functions.cpp │ │ ├── CustomGames_WidgetBP_parameters.h │ │ ├── CustomGames_WidgetBP_structs.h │ │ ├── CustomMeshComponent_classes.h │ │ ├── CustomMeshComponent_functions.cpp │ │ ├── CustomMeshComponent_parameters.h │ │ ├── CustomMeshComponent_structs.h │ │ ├── CustomScrollHorizontal_WidgetBP_classes.h │ │ ├── CustomScrollHorizontal_WidgetBP_functions.cpp │ │ ├── CustomScrollHorizontal_WidgetBP_parameters.h │ │ ├── CustomScrollHorizontal_WidgetBP_structs.h │ │ ├── CustomScrollVertical_WidgetBP_classes.h │ │ ├── CustomScrollVertical_WidgetBP_functions.cpp │ │ ├── CustomScrollVertical_WidgetBP_parameters.h │ │ ├── CustomScrollVertical_WidgetBP_structs.h │ │ ├── DailyCheckIn_WidgetBP_classes.h │ │ ├── DailyCheckIn_WidgetBP_functions.cpp │ │ ├── DailyCheckIn_WidgetBP_parameters.h │ │ ├── DailyCheckIn_WidgetBP_structs.h │ │ ├── DailyPlayStreak_WidgetBP_classes.h │ │ ├── DailyPlayStreak_WidgetBP_functions.cpp │ │ ├── DailyPlayStreak_WidgetBP_parameters.h │ │ ├── DailyPlayStreak_WidgetBP_structs.h │ │ ├── DatasmithContent_classes.h │ │ ├── DatasmithContent_functions.cpp │ │ ├── DatasmithContent_parameters.h │ │ ├── DatasmithContent_structs.h │ │ ├── Demo_WidgetBP_classes.h │ │ ├── Demo_WidgetBP_functions.cpp │ │ ├── Demo_WidgetBP_parameters.h │ │ ├── Demo_WidgetBP_structs.h │ │ ├── DeveloperSettings_classes.h │ │ ├── DeveloperSettings_functions.cpp │ │ ├── DeveloperSettings_parameters.h │ │ ├── DeveloperSettings_structs.h │ │ ├── DialogBackground_classes.h │ │ ├── DialogBackground_functions.cpp │ │ ├── DialogBackground_parameters.h │ │ ├── DialogBackground_structs.h │ │ ├── Dialog_EscapeMenu_classes.h │ │ ├── Dialog_EscapeMenu_functions.cpp │ │ ├── Dialog_EscapeMenu_parameters.h │ │ ├── Dialog_EscapeMenu_structs.h │ │ ├── Dialog_GameSessionReconnect_classes.h │ │ ├── Dialog_GameSessionReconnect_functions.cpp │ │ ├── Dialog_GameSessionReconnect_parameters.h │ │ ├── Dialog_GameSessionReconnect_structs.h │ │ ├── Dialog_GamepadReconnect_classes.h │ │ ├── Dialog_GamepadReconnect_functions.cpp │ │ ├── Dialog_GamepadReconnect_parameters.h │ │ ├── Dialog_GamepadReconnect_structs.h │ │ ├── Dialog_Message_classes.h │ │ ├── Dialog_Message_functions.cpp │ │ ├── Dialog_Message_parameters.h │ │ ├── Dialog_Message_structs.h │ │ ├── Dialog_PlaylistActive_classes.h │ │ ├── Dialog_PlaylistActive_functions.cpp │ │ ├── Dialog_PlaylistActive_parameters.h │ │ ├── Dialog_PlaylistActive_structs.h │ │ ├── Dialog_RedeemKey_classes.h │ │ ├── Dialog_RedeemKey_functions.cpp │ │ ├── Dialog_RedeemKey_parameters.h │ │ ├── Dialog_RedeemKey_structs.h │ │ ├── Dialog_Settings_classes.h │ │ ├── Dialog_Settings_functions.cpp │ │ ├── Dialog_Settings_parameters.h │ │ ├── Dialog_Settings_structs.h │ │ ├── DiscardSettingsDialog_WidgetBP_classes.h │ │ ├── DiscardSettingsDialog_WidgetBP_functions.cpp │ │ ├── DiscardSettingsDialog_WidgetBP_parameters.h │ │ ├── DiscardSettingsDialog_WidgetBP_structs.h │ │ ├── DiscordRpc_classes.h │ │ ├── DiscordRpc_functions.cpp │ │ ├── DiscordRpc_parameters.h │ │ ├── DiscordRpc_structs.h │ │ ├── DiscountWidget_classes.h │ │ ├── DiscountWidget_functions.cpp │ │ ├── DiscountWidget_parameters.h │ │ ├── DiscountWidget_structs.h │ │ ├── DmgTypeBP_Environmental_classes.h │ │ ├── DmgTypeBP_Environmental_functions.cpp │ │ ├── DmgTypeBP_Environmental_parameters.h │ │ ├── DmgTypeBP_Environmental_structs.h │ │ ├── DropIndicator_WidgetBP_classes.h │ │ ├── DropIndicator_WidgetBP_functions.cpp │ │ ├── DropIndicator_WidgetBP_parameters.h │ │ ├── DropIndicator_WidgetBP_structs.h │ │ ├── Dropdown_classes.h │ │ ├── Dropdown_functions.cpp │ │ ├── Dropdown_parameters.h │ │ ├── Dropdown_structs.h │ │ ├── DropsMenu_WidgetBP_classes.h │ │ ├── DropsMenu_WidgetBP_functions.cpp │ │ ├── DropsMenu_WidgetBP_parameters.h │ │ ├── DropsMenu_WidgetBP_structs.h │ │ ├── EMPGrenadeLauncher_BP_classes.h │ │ ├── EMPGrenadeLauncher_BP_functions.cpp │ │ ├── EMPGrenadeLauncher_BP_parameters.h │ │ ├── EMPGrenadeLauncher_BP_structs.h │ │ ├── EMPGrenadePickup_BP_classes.h │ │ ├── EMPGrenadePickup_BP_functions.cpp │ │ ├── EMPGrenadePickup_BP_parameters.h │ │ ├── EMPGrenadePickup_BP_structs.h │ │ ├── EMPGrenade_BP_classes.h │ │ ├── EMPGrenade_BP_functions.cpp │ │ ├── EMPGrenade_BP_parameters.h │ │ ├── EMPGrenade_BP_structs.h │ │ ├── EQU8_classes.h │ │ ├── EQU8_functions.cpp │ │ ├── EQU8_parameters.h │ │ ├── EQU8_structs.h │ │ ├── EditableMesh_classes.h │ │ ├── EditableMesh_functions.cpp │ │ ├── EditableMesh_parameters.h │ │ ├── EditableMesh_structs.h │ │ ├── EngineMessages_classes.h │ │ ├── EngineMessages_functions.cpp │ │ ├── EngineMessages_parameters.h │ │ ├── EngineMessages_structs.h │ │ ├── EngineSettings_classes.h │ │ ├── EngineSettings_functions.cpp │ │ ├── EngineSettings_parameters.h │ │ ├── EngineSettings_structs.h │ │ ├── Engine_classes.h │ │ ├── Engine_functions.cpp │ │ ├── Engine_parameters.h │ │ ├── Engine_structs.h │ │ ├── EnvironmentReference_BP_classes.h │ │ ├── EnvironmentReference_BP_functions.cpp │ │ ├── EnvironmentReference_BP_parameters.h │ │ ├── EnvironmentReference_BP_structs.h │ │ ├── EquipButton_classes.h │ │ ├── EquipButton_functions.cpp │ │ ├── EquipButton_parameters.h │ │ ├── EquipButton_structs.h │ │ ├── ErrorMenu_classes.h │ │ ├── ErrorMenu_functions.cpp │ │ ├── ErrorMenu_parameters.h │ │ ├── ErrorMenu_structs.h │ │ ├── EyeTracker_classes.h │ │ ├── EyeTracker_functions.cpp │ │ ├── EyeTracker_parameters.h │ │ ├── EyeTracker_structs.h │ │ ├── FPPAnimBlueprint_classes.h │ │ ├── FPPAnimBlueprint_functions.cpp │ │ ├── FPPAnimBlueprint_parameters.h │ │ ├── FPPAnimBlueprint_structs.h │ │ ├── FacialAnimation_classes.h │ │ ├── FacialAnimation_functions.cpp │ │ ├── FacialAnimation_parameters.h │ │ ├── FacialAnimation_structs.h │ │ ├── FeatureButtonBase_classes.h │ │ ├── FeatureButtonBase_functions.cpp │ │ ├── FeatureButtonBase_parameters.h │ │ ├── FeatureButtonBase_structs.h │ │ ├── FeedActionButton_classes.h │ │ ├── FeedActionButton_functions.cpp │ │ ├── FeedActionButton_parameters.h │ │ ├── FeedActionButton_structs.h │ │ ├── FeedIndicator_classes.h │ │ ├── FeedIndicator_functions.cpp │ │ ├── FeedIndicator_parameters.h │ │ ├── FeedIndicator_structs.h │ │ ├── FieldSystemEngine_classes.h │ │ ├── FieldSystemEngine_functions.cpp │ │ ├── FieldSystemEngine_parameters.h │ │ ├── FieldSystemEngine_structs.h │ │ ├── Fists_BP_classes.h │ │ ├── Fists_BP_functions.cpp │ │ ├── Fists_BP_parameters.h │ │ ├── Fists_BP_structs.h │ │ ├── Fists_DmgType_classes.h │ │ ├── Fists_DmgType_functions.cpp │ │ ├── Fists_DmgType_parameters.h │ │ ├── Fists_DmgType_structs.h │ │ ├── Foliage_classes.h │ │ ├── Foliage_functions.cpp │ │ ├── Foliage_parameters.h │ │ ├── Foliage_structs.h │ │ ├── FriendRequestDialog_WidgetBP_classes.h │ │ ├── FriendRequestDialog_WidgetBP_functions.cpp │ │ ├── FriendRequestDialog_WidgetBP_parameters.h │ │ ├── FriendRequestDialog_WidgetBP_structs.h │ │ ├── FriendRequestEntry_WidgetBP_classes.h │ │ ├── FriendRequestEntry_WidgetBP_functions.cpp │ │ ├── FriendRequestEntry_WidgetBP_parameters.h │ │ ├── FriendRequestEntry_WidgetBP_structs.h │ │ ├── FriendRequestNotificationEntry_WidgetBP_classes.h │ │ ├── FriendRequestNotificationEntry_WidgetBP_functions.cpp │ │ ├── FriendRequestNotificationEntry_WidgetBP_parameters.h │ │ ├── FriendRequestNotificationEntry_WidgetBP_structs.h │ │ ├── FriendRequestTextInput_classes.h │ │ ├── FriendRequestTextInput_functions.cpp │ │ ├── FriendRequestTextInput_parameters.h │ │ ├── FriendRequestTextInput_structs.h │ │ ├── FriendsListSub_WidgetBP_classes.h │ │ ├── FriendsListSub_WidgetBP_functions.cpp │ │ ├── FriendsListSub_WidgetBP_parameters.h │ │ ├── FriendsListSub_WidgetBP_structs.h │ │ ├── FriendsList_WidgetBP_classes.h │ │ ├── FriendsList_WidgetBP_functions.cpp │ │ ├── FriendsList_WidgetBP_parameters.h │ │ ├── FriendsList_WidgetBP_structs.h │ │ ├── FullLootSequence_classes.h │ │ ├── FullLootSequence_functions.cpp │ │ ├── FullLootSequence_parameters.h │ │ ├── FullLootSequence_structs.h │ │ ├── GameModeEntry_WidgetBP_classes.h │ │ ├── GameModeEntry_WidgetBP_functions.cpp │ │ ├── GameModeEntry_WidgetBP_parameters.h │ │ ├── GameModeEntry_WidgetBP_structs.h │ │ ├── GameModeInfo_classes.h │ │ ├── GameModeInfo_functions.cpp │ │ ├── GameModeInfo_parameters.h │ │ ├── GameModeInfo_structs.h │ │ ├── GamepadSelectCarousel_classes.h │ │ ├── GamepadSelectCarousel_functions.cpp │ │ ├── GamepadSelectCarousel_parameters.h │ │ ├── GamepadSelectCarousel_structs.h │ │ ├── GameplayCameras_classes.h │ │ ├── GameplayCameras_functions.cpp │ │ ├── GameplayCameras_parameters.h │ │ ├── GameplayCameras_structs.h │ │ ├── GameplaySettings_WidgetBP_classes.h │ │ ├── GameplaySettings_WidgetBP_functions.cpp │ │ ├── GameplaySettings_WidgetBP_parameters.h │ │ ├── GameplaySettings_WidgetBP_structs.h │ │ ├── GameplayTags_classes.h │ │ ├── GameplayTags_functions.cpp │ │ ├── GameplayTags_parameters.h │ │ ├── GameplayTags_structs.h │ │ ├── GameplayTasks_classes.h │ │ ├── GameplayTasks_functions.cpp │ │ ├── GameplayTasks_parameters.h │ │ ├── GameplayTasks_structs.h │ │ ├── GeometryCacheTracks_classes.h │ │ ├── GeometryCacheTracks_functions.cpp │ │ ├── GeometryCacheTracks_parameters.h │ │ ├── GeometryCacheTracks_structs.h │ │ ├── GeometryCache_classes.h │ │ ├── GeometryCache_functions.cpp │ │ ├── GeometryCache_parameters.h │ │ ├── GeometryCache_structs.h │ │ ├── GeometryCollectionEngine_classes.h │ │ ├── GeometryCollectionEngine_functions.cpp │ │ ├── GeometryCollectionEngine_parameters.h │ │ ├── GeometryCollectionEngine_structs.h │ │ ├── GeometryCollectionTracks_classes.h │ │ ├── GeometryCollectionTracks_functions.cpp │ │ ├── GeometryCollectionTracks_parameters.h │ │ ├── GeometryCollectionTracks_structs.h │ │ ├── GoldButtonBase_classes.h │ │ ├── GoldButtonBase_functions.cpp │ │ ├── GoldButtonBase_parameters.h │ │ ├── GoldButtonBase_structs.h │ │ ├── GooglePAD_classes.h │ │ ├── GooglePAD_functions.cpp │ │ ├── GooglePAD_parameters.h │ │ ├── GooglePAD_structs.h │ │ ├── GreenButtonBase_classes.h │ │ ├── GreenButtonBase_functions.cpp │ │ ├── GreenButtonBase_parameters.h │ │ ├── GreenButtonBase_structs.h │ │ ├── HeadMountedDisplay_classes.h │ │ ├── HeadMountedDisplay_functions.cpp │ │ ├── HeadMountedDisplay_parameters.h │ │ ├── HeadMountedDisplay_structs.h │ │ ├── HeaderBase_classes.h │ │ ├── HeaderBase_functions.cpp │ │ ├── HeaderBase_parameters.h │ │ ├── HeaderBase_structs.h │ │ ├── Host_WidgetBP_classes.h │ │ ├── Host_WidgetBP_functions.cpp │ │ ├── Host_WidgetBP_parameters.h │ │ ├── Host_WidgetBP_structs.h │ │ ├── ImageWrapper_classes.h │ │ ├── ImageWrapper_functions.cpp │ │ ├── ImageWrapper_parameters.h │ │ ├── ImageWrapper_structs.h │ │ ├── ImageWriteQueue_classes.h │ │ ├── ImageWriteQueue_functions.cpp │ │ ├── ImageWriteQueue_parameters.h │ │ ├── ImageWriteQueue_structs.h │ │ ├── ImgMediaEngine_classes.h │ │ ├── ImgMediaEngine_functions.cpp │ │ ├── ImgMediaEngine_parameters.h │ │ ├── ImgMediaEngine_structs.h │ │ ├── ImgMediaFactory_classes.h │ │ ├── ImgMediaFactory_functions.cpp │ │ ├── ImgMediaFactory_parameters.h │ │ ├── ImgMediaFactory_structs.h │ │ ├── ImgMedia_classes.h │ │ ├── ImgMedia_functions.cpp │ │ ├── ImgMedia_parameters.h │ │ ├── ImgMedia_structs.h │ │ ├── InputCore_classes.h │ │ ├── InputCore_functions.cpp │ │ ├── InputCore_parameters.h │ │ ├── InputCore_structs.h │ │ ├── InspectItem_BP_classes.h │ │ ├── InspectItem_BP_functions.cpp │ │ ├── InspectItem_BP_parameters.h │ │ ├── InspectItem_BP_structs.h │ │ ├── InspectItem_WidgetBP_classes.h │ │ ├── InspectItem_WidgetBP_functions.cpp │ │ ├── InspectItem_WidgetBP_parameters.h │ │ ├── InspectItem_WidgetBP_structs.h │ │ ├── InteractiveToolsFramework_classes.h │ │ ├── InteractiveToolsFramework_functions.cpp │ │ ├── InteractiveToolsFramework_parameters.h │ │ ├── InteractiveToolsFramework_structs.h │ │ ├── IntroMediaSoundActor_BP_classes.h │ │ ├── IntroMediaSoundActor_BP_functions.cpp │ │ ├── IntroMediaSoundActor_BP_parameters.h │ │ ├── IntroMediaSoundActor_BP_structs.h │ │ ├── IntroVideoWidget_classes.h │ │ ├── IntroVideoWidget_functions.cpp │ │ ├── IntroVideoWidget_parameters.h │ │ ├── IntroVideoWidget_structs.h │ │ ├── InviteEntry_WidgetBP_classes.h │ │ ├── InviteEntry_WidgetBP_functions.cpp │ │ ├── InviteEntry_WidgetBP_parameters.h │ │ ├── InviteEntry_WidgetBP_structs.h │ │ ├── InviteManager_BP_classes.h │ │ ├── InviteManager_BP_functions.cpp │ │ ├── InviteManager_BP_parameters.h │ │ ├── InviteManager_BP_structs.h │ │ ├── InviteMenu_WidgetBP_classes.h │ │ ├── InviteMenu_WidgetBP_functions.cpp │ │ ├── InviteMenu_WidgetBP_parameters.h │ │ ├── InviteMenu_WidgetBP_structs.h │ │ ├── InviteNotificationEntry_WidgetBP_classes.h │ │ ├── InviteNotificationEntry_WidgetBP_functions.cpp │ │ ├── InviteNotificationEntry_WidgetBP_parameters.h │ │ ├── InviteNotificationEntry_WidgetBP_structs.h │ │ ├── ItemPurchaseDialog_WidgetBP_classes.h │ │ ├── ItemPurchaseDialog_WidgetBP_functions.cpp │ │ ├── ItemPurchaseDialog_WidgetBP_parameters.h │ │ ├── ItemPurchaseDialog_WidgetBP_structs.h │ │ ├── ItemShopBattlePassEntry_WidgetBP_classes.h │ │ ├── ItemShopBattlePassEntry_WidgetBP_functions.cpp │ │ ├── ItemShopBattlePassEntry_WidgetBP_parameters.h │ │ ├── ItemShopBattlePassEntry_WidgetBP_structs.h │ │ ├── ItemShopBattlePassSection_WidgetBP_classes.h │ │ ├── ItemShopBattlePassSection_WidgetBP_functions.cpp │ │ ├── ItemShopBattlePassSection_WidgetBP_parameters.h │ │ ├── ItemShopBattlePassSection_WidgetBP_structs.h │ │ ├── ItemShopEntryBig_WidgetBP_classes.h │ │ ├── ItemShopEntryBig_WidgetBP_functions.cpp │ │ ├── ItemShopEntryBig_WidgetBP_parameters.h │ │ ├── ItemShopEntryBig_WidgetBP_structs.h │ │ ├── ItemShopEntryFeatured_WidgetBP_classes.h │ │ ├── ItemShopEntryFeatured_WidgetBP_functions.cpp │ │ ├── ItemShopEntryFeatured_WidgetBP_parameters.h │ │ ├── ItemShopEntryFeatured_WidgetBP_structs.h │ │ ├── ItemShopEntryMedium_WidgetBP_classes.h │ │ ├── ItemShopEntryMedium_WidgetBP_functions.cpp │ │ ├── ItemShopEntryMedium_WidgetBP_parameters.h │ │ ├── ItemShopEntryMedium_WidgetBP_structs.h │ │ ├── ItemShopEntrySmall_WidgetBP_classes.h │ │ ├── ItemShopEntrySmall_WidgetBP_functions.cpp │ │ ├── ItemShopEntrySmall_WidgetBP_parameters.h │ │ ├── ItemShopEntrySmall_WidgetBP_structs.h │ │ ├── ItemShopInspectEntry_WidgetBP_classes.h │ │ ├── ItemShopInspectEntry_WidgetBP_functions.cpp │ │ ├── ItemShopInspectEntry_WidgetBP_parameters.h │ │ ├── ItemShopInspectEntry_WidgetBP_structs.h │ │ ├── ItemShopInspect_WidgetBP_classes.h │ │ ├── ItemShopInspect_WidgetBP_functions.cpp │ │ ├── ItemShopInspect_WidgetBP_parameters.h │ │ ├── ItemShopInspect_WidgetBP_structs.h │ │ ├── ItemShopPurchaseButton_classes.h │ │ ├── ItemShopPurchaseButton_functions.cpp │ │ ├── ItemShopPurchaseButton_parameters.h │ │ ├── ItemShopPurchaseButton_structs.h │ │ ├── ItemShopPurchaseEntry_classes.h │ │ ├── ItemShopPurchaseEntry_functions.cpp │ │ ├── ItemShopPurchaseEntry_parameters.h │ │ ├── ItemShopPurchaseEntry_structs.h │ │ ├── ItemShopPurchasePanel_classes.h │ │ ├── ItemShopPurchasePanel_functions.cpp │ │ ├── ItemShopPurchasePanel_parameters.h │ │ ├── ItemShopPurchasePanel_structs.h │ │ ├── ItemShopSection_WidgetBP_classes.h │ │ ├── ItemShopSection_WidgetBP_functions.cpp │ │ ├── ItemShopSection_WidgetBP_parameters.h │ │ ├── ItemShopSection_WidgetBP_structs.h │ │ ├── ItemShop_WidgetBP_classes.h │ │ ├── ItemShop_WidgetBP_functions.cpp │ │ ├── ItemShop_WidgetBP_parameters.h │ │ ├── ItemShop_WidgetBP_structs.h │ │ ├── JoinServerDialog_WidgetBP_classes.h │ │ ├── JoinServerDialog_WidgetBP_functions.cpp │ │ ├── JoinServerDialog_WidgetBP_parameters.h │ │ ├── JoinServerDialog_WidgetBP_structs.h │ │ ├── JsonUtilities_classes.h │ │ ├── JsonUtilities_functions.cpp │ │ ├── JsonUtilities_parameters.h │ │ ├── JsonUtilities_structs.h │ │ ├── KeybindEntry_classes.h │ │ ├── KeybindEntry_functions.cpp │ │ ├── KeybindEntry_parameters.h │ │ ├── KeybindEntry_structs.h │ │ ├── KeybindOverlay_WidgetBP_classes.h │ │ ├── KeybindOverlay_WidgetBP_functions.cpp │ │ ├── KeybindOverlay_WidgetBP_parameters.h │ │ ├── KeybindOverlay_WidgetBP_structs.h │ │ ├── KeybindSettings_WidgetBP_classes.h │ │ ├── KeybindSettings_WidgetBP_functions.cpp │ │ ├── KeybindSettings_WidgetBP_parameters.h │ │ ├── KeybindSettings_WidgetBP_structs.h │ │ ├── Landscape_classes.h │ │ ├── Landscape_functions.cpp │ │ ├── Landscape_parameters.h │ │ ├── Landscape_structs.h │ │ ├── LevelSequence_classes.h │ │ ├── LevelSequence_functions.cpp │ │ ├── LevelSequence_parameters.h │ │ ├── LevelSequence_structs.h │ │ ├── LightPropagationVolumeRuntime_classes.h │ │ ├── LightPropagationVolumeRuntime_functions.cpp │ │ ├── LightPropagationVolumeRuntime_parameters.h │ │ ├── LightPropagationVolumeRuntime_structs.h │ │ ├── LightRedButtonBase_classes.h │ │ ├── LightRedButtonBase_functions.cpp │ │ ├── LightRedButtonBase_parameters.h │ │ ├── LightRedButtonBase_structs.h │ │ ├── LimitedTimeOfferDialog_WidgetBP_classes.h │ │ ├── LimitedTimeOfferDialog_WidgetBP_functions.cpp │ │ ├── LimitedTimeOfferDialog_WidgetBP_parameters.h │ │ ├── LimitedTimeOfferDialog_WidgetBP_structs.h │ │ ├── LimitedTimeOfferSection_classes.h │ │ ├── LimitedTimeOfferSection_functions.cpp │ │ ├── LimitedTimeOfferSection_parameters.h │ │ ├── LimitedTimeOfferSection_structs.h │ │ ├── LoadingScreen_classes.h │ │ ├── LoadingScreen_functions.cpp │ │ ├── LoadingScreen_parameters.h │ │ ├── LoadingScreen_structs.h │ │ ├── LockerButtonLarge_WidgetBP_classes.h │ │ ├── LockerButtonLarge_WidgetBP_functions.cpp │ │ ├── LockerButtonLarge_WidgetBP_parameters.h │ │ ├── LockerButtonLarge_WidgetBP_structs.h │ │ ├── LockerButtonMedium_WidgetBP_classes.h │ │ ├── LockerButtonMedium_WidgetBP_functions.cpp │ │ ├── LockerButtonMedium_WidgetBP_parameters.h │ │ ├── LockerButtonMedium_WidgetBP_structs.h │ │ ├── LockerButtonPlayer_WidgetBP_classes.h │ │ ├── LockerButtonPlayer_WidgetBP_functions.cpp │ │ ├── LockerButtonPlayer_WidgetBP_parameters.h │ │ ├── LockerButtonPlayer_WidgetBP_structs.h │ │ ├── LockerButtonSmall_WidgetBP_classes.h │ │ ├── LockerButtonSmall_WidgetBP_functions.cpp │ │ ├── LockerButtonSmall_WidgetBP_parameters.h │ │ ├── LockerButtonSmall_WidgetBP_structs.h │ │ ├── LockerHorizontalItemEntry_WidgetBP_classes.h │ │ ├── LockerHorizontalItemEntry_WidgetBP_functions.cpp │ │ ├── LockerHorizontalItemEntry_WidgetBP_parameters.h │ │ ├── LockerHorizontalItemEntry_WidgetBP_structs.h │ │ ├── LockerInspect_WidgetBP_classes.h │ │ ├── LockerInspect_WidgetBP_functions.cpp │ │ ├── LockerInspect_WidgetBP_parameters.h │ │ ├── LockerInspect_WidgetBP_structs.h │ │ ├── LockerParentItemEntry_WidgetBP_classes.h │ │ ├── LockerParentItemEntry_WidgetBP_functions.cpp │ │ ├── LockerParentItemEntry_WidgetBP_parameters.h │ │ ├── LockerParentItemEntry_WidgetBP_structs.h │ │ ├── LockerVerticalItemEntry_WidgetBP_classes.h │ │ ├── LockerVerticalItemEntry_WidgetBP_functions.cpp │ │ ├── LockerVerticalItemEntry_WidgetBP_parameters.h │ │ ├── LockerVerticalItemEntry_WidgetBP_structs.h │ │ ├── Locker_WidgetBP_classes.h │ │ ├── Locker_WidgetBP_functions.cpp │ │ ├── Locker_WidgetBP_parameters.h │ │ ├── Locker_WidgetBP_structs.h │ │ ├── LoginMenu_WidgetBP_classes.h │ │ ├── LoginMenu_WidgetBP_functions.cpp │ │ ├── LoginMenu_WidgetBP_parameters.h │ │ ├── LoginMenu_WidgetBP_structs.h │ │ ├── Lootbox_WidgetBP_classes.h │ │ ├── Lootbox_WidgetBP_functions.cpp │ │ ├── Lootbox_WidgetBP_parameters.h │ │ ├── Lootbox_WidgetBP_structs.h │ │ ├── MKBControlSettings_WidgetBP_classes.h │ │ ├── MKBControlSettings_WidgetBP_functions.cpp │ │ ├── MKBControlSettings_WidgetBP_parameters.h │ │ ├── MKBControlSettings_WidgetBP_structs.h │ │ ├── MKBSettings_WidgetBP_classes.h │ │ ├── MKBSettings_WidgetBP_functions.cpp │ │ ├── MKBSettings_WidgetBP_parameters.h │ │ ├── MKBSettings_WidgetBP_structs.h │ │ ├── MRMesh_classes.h │ │ ├── MRMesh_functions.cpp │ │ ├── MRMesh_parameters.h │ │ ├── MRMesh_structs.h │ │ ├── MagicLeapARPinInfoActor_classes.h │ │ ├── MagicLeapARPinInfoActor_functions.cpp │ │ ├── MagicLeapARPinInfoActor_parameters.h │ │ ├── MagicLeapARPinInfoActor_structs.h │ │ ├── MagicLeapARPin_classes.h │ │ ├── MagicLeapARPin_functions.cpp │ │ ├── MagicLeapARPin_parameters.h │ │ ├── MagicLeapARPin_structs.h │ │ ├── MagicLeapSharedWorld_classes.h │ │ ├── MagicLeapSharedWorld_functions.cpp │ │ ├── MagicLeapSharedWorld_parameters.h │ │ ├── MagicLeapSharedWorld_structs.h │ │ ├── MainMenuGameMode_BP_classes.h │ │ ├── MainMenuGameMode_BP_functions.cpp │ │ ├── MainMenuGameMode_BP_parameters.h │ │ ├── MainMenuGameMode_BP_structs.h │ │ ├── MainMenuNavBar_classes.h │ │ ├── MainMenuNavBar_functions.cpp │ │ ├── MainMenuNavBar_parameters.h │ │ ├── MainMenuNavBar_structs.h │ │ ├── MainMenuPlayerController_BP_classes.h │ │ ├── MainMenuPlayerController_BP_functions.cpp │ │ ├── MainMenuPlayerController_BP_parameters.h │ │ ├── MainMenuPlayerController_BP_structs.h │ │ ├── MainMenu_Content_Impact_classes.h │ │ ├── MainMenu_Content_Impact_functions.cpp │ │ ├── MainMenu_Content_Impact_parameters.h │ │ ├── MainMenu_Content_Impact_structs.h │ │ ├── MainMenu_Inspect_classes.h │ │ ├── MainMenu_Inspect_functions.cpp │ │ ├── MainMenu_Inspect_parameters.h │ │ ├── MainMenu_Inspect_structs.h │ │ ├── MainMenu_WidgetBP_classes.h │ │ ├── MainMenu_WidgetBP_functions.cpp │ │ ├── MainMenu_WidgetBP_parameters.h │ │ ├── MainMenu_WidgetBP_structs.h │ │ ├── MainMenu_classes.h │ │ ├── MainMenu_functions.cpp │ │ ├── MainMenu_parameters.h │ │ ├── MainMenu_structs.h │ │ ├── MaterialShaderQualitySettings_classes.h │ │ ├── MaterialShaderQualitySettings_functions.cpp │ │ ├── MaterialShaderQualitySettings_parameters.h │ │ ├── MaterialShaderQualitySettings_structs.h │ │ ├── MediaAssets_classes.h │ │ ├── MediaAssets_functions.cpp │ │ ├── MediaAssets_parameters.h │ │ ├── MediaAssets_structs.h │ │ ├── MediaCompositing_classes.h │ │ ├── MediaCompositing_functions.cpp │ │ ├── MediaCompositing_parameters.h │ │ ├── MediaCompositing_structs.h │ │ ├── MediaUtils_classes.h │ │ ├── MediaUtils_functions.cpp │ │ ├── MediaUtils_parameters.h │ │ ├── MediaUtils_structs.h │ │ ├── MeleeCamShake_classes.h │ │ ├── MeleeCamShake_functions.cpp │ │ ├── MeleeCamShake_parameters.h │ │ ├── MeleeCamShake_structs.h │ │ ├── MeleeHitCamShake_classes.h │ │ ├── MeleeHitCamShake_functions.cpp │ │ ├── MeleeHitCamShake_parameters.h │ │ ├── MeleeHitCamShake_structs.h │ │ ├── Melee_DmgType_classes.h │ │ ├── Melee_DmgType_functions.cpp │ │ ├── Melee_DmgType_parameters.h │ │ ├── Melee_DmgType_structs.h │ │ ├── MenuBackground_classes.h │ │ ├── MenuBackground_functions.cpp │ │ ├── MenuBackground_parameters.h │ │ ├── MenuBackground_structs.h │ │ ├── MenuButtonBase_classes.h │ │ ├── MenuButtonBase_functions.cpp │ │ ├── MenuButtonBase_parameters.h │ │ ├── MenuButtonBase_structs.h │ │ ├── MeshDescription_classes.h │ │ ├── MeshDescription_functions.cpp │ │ ├── MeshDescription_parameters.h │ │ ├── MeshDescription_structs.h │ │ ├── MotoSynth_classes.h │ │ ├── MotoSynth_functions.cpp │ │ ├── MotoSynth_parameters.h │ │ ├── MotoSynth_structs.h │ │ ├── MoviePlayer_classes.h │ │ ├── MoviePlayer_functions.cpp │ │ ├── MoviePlayer_parameters.h │ │ ├── MoviePlayer_structs.h │ │ ├── MovieSceneCapture_classes.h │ │ ├── MovieSceneCapture_functions.cpp │ │ ├── MovieSceneCapture_parameters.h │ │ ├── MovieSceneCapture_structs.h │ │ ├── MovieSceneTracks_classes.h │ │ ├── MovieSceneTracks_functions.cpp │ │ ├── MovieSceneTracks_parameters.h │ │ ├── MovieSceneTracks_structs.h │ │ ├── MovieScene_classes.h │ │ ├── MovieScene_functions.cpp │ │ ├── MovieScene_parameters.h │ │ ├── MovieScene_structs.h │ │ ├── NVIDIAGfeSDK_classes.h │ │ ├── NVIDIAGfeSDK_functions.cpp │ │ ├── NVIDIAGfeSDK_parameters.h │ │ ├── NVIDIAGfeSDK_structs.h │ │ ├── NameTag_classes.h │ │ ├── NameTag_functions.cpp │ │ ├── NameTag_parameters.h │ │ ├── NameTag_structs.h │ │ ├── NavBarLeftButton_classes.h │ │ ├── NavBarLeftButton_functions.cpp │ │ ├── NavBarLeftButton_parameters.h │ │ ├── NavBarLeftButton_structs.h │ │ ├── NavBarRightButton_classes.h │ │ ├── NavBarRightButton_functions.cpp │ │ ├── NavBarRightButton_parameters.h │ │ ├── NavBarRightButton_structs.h │ │ ├── NavBar_classes.h │ │ ├── NavBar_functions.cpp │ │ ├── NavBar_parameters.h │ │ ├── NavBar_structs.h │ │ ├── NavButton_classes.h │ │ ├── NavButton_functions.cpp │ │ ├── NavButton_parameters.h │ │ ├── NavButton_structs.h │ │ ├── NavigationSystem_classes.h │ │ ├── NavigationSystem_functions.cpp │ │ ├── NavigationSystem_parameters.h │ │ ├── NavigationSystem_structs.h │ │ ├── NetCore_classes.h │ │ ├── NetCore_functions.cpp │ │ ├── NetCore_parameters.h │ │ ├── NetCore_structs.h │ │ ├── NewsFeedEntry_WidgetBP_classes.h │ │ ├── NewsFeedEntry_WidgetBP_functions.cpp │ │ ├── NewsFeedEntry_WidgetBP_parameters.h │ │ ├── NewsFeedEntry_WidgetBP_structs.h │ │ ├── NewsFeed_WidgetBP_classes.h │ │ ├── NewsFeed_WidgetBP_functions.cpp │ │ ├── NewsFeed_WidgetBP_parameters.h │ │ ├── NewsFeed_WidgetBP_structs.h │ │ ├── NotificationButton_classes.h │ │ ├── NotificationButton_functions.cpp │ │ ├── NotificationButton_parameters.h │ │ ├── NotificationButton_structs.h │ │ ├── NotificationManager_BP_classes.h │ │ ├── NotificationManager_BP_functions.cpp │ │ ├── NotificationManager_BP_parameters.h │ │ ├── NotificationManager_BP_structs.h │ │ ├── NotificationOverlay_WidgetBP_classes.h │ │ ├── NotificationOverlay_WidgetBP_functions.cpp │ │ ├── NotificationOverlay_WidgetBP_parameters.h │ │ ├── NotificationOverlay_WidgetBP_structs.h │ │ ├── NumericCarousel_classes.h │ │ ├── NumericCarousel_functions.cpp │ │ ├── NumericCarousel_parameters.h │ │ ├── NumericCarousel_structs.h │ │ ├── OWGameEvents_classes.h │ │ ├── OWGameEvents_functions.cpp │ │ ├── OWGameEvents_parameters.h │ │ ├── OWGameEvents_structs.h │ │ ├── OnlineServices_classes.h │ │ ├── OnlineServices_functions.cpp │ │ ├── OnlineServices_parameters.h │ │ ├── OnlineServices_structs.h │ │ ├── OnlineSubsystem1047_classes.h │ │ ├── OnlineSubsystem1047_functions.cpp │ │ ├── OnlineSubsystem1047_parameters.h │ │ ├── OnlineSubsystem1047_structs.h │ │ ├── OnlineSubsystemSteam_classes.h │ │ ├── OnlineSubsystemSteam_functions.cpp │ │ ├── OnlineSubsystemSteam_parameters.h │ │ ├── OnlineSubsystemSteam_structs.h │ │ ├── OnlineSubsystemUtils_classes.h │ │ ├── OnlineSubsystemUtils_functions.cpp │ │ ├── OnlineSubsystemUtils_parameters.h │ │ ├── OnlineSubsystemUtils_structs.h │ │ ├── OnlineSubsystem_classes.h │ │ ├── OnlineSubsystem_functions.cpp │ │ ├── OnlineSubsystem_parameters.h │ │ ├── OnlineSubsystem_structs.h │ │ ├── OodleNetworkHandlerComponent_classes.h │ │ ├── OodleNetworkHandlerComponent_functions.cpp │ │ ├── OodleNetworkHandlerComponent_parameters.h │ │ ├── OodleNetworkHandlerComponent_structs.h │ │ ├── Overlay_classes.h │ │ ├── Overlay_functions.cpp │ │ ├── Overlay_parameters.h │ │ ├── Overlay_structs.h │ │ ├── PS4ButtonLayout_WidgetBP_classes.h │ │ ├── PS4ButtonLayout_WidgetBP_functions.cpp │ │ ├── PS4ButtonLayout_WidgetBP_parameters.h │ │ ├── PS4ButtonLayout_WidgetBP_structs.h │ │ ├── PacketHandler_classes.h │ │ ├── PacketHandler_functions.cpp │ │ ├── PacketHandler_parameters.h │ │ ├── PacketHandler_structs.h │ │ ├── PartyEntry_WidgetBP_classes.h │ │ ├── PartyEntry_WidgetBP_functions.cpp │ │ ├── PartyEntry_WidgetBP_parameters.h │ │ ├── PartyEntry_WidgetBP_structs.h │ │ ├── PartyInspectPlayerEntry_WidgetBP_classes.h │ │ ├── PartyInspectPlayerEntry_WidgetBP_functions.cpp │ │ ├── PartyInspectPlayerEntry_WidgetBP_parameters.h │ │ ├── PartyInspectPlayerEntry_WidgetBP_structs.h │ │ ├── PartyInspect_WidgetBP_classes.h │ │ ├── PartyInspect_WidgetBP_functions.cpp │ │ ├── PartyInspect_WidgetBP_parameters.h │ │ ├── PartyInspect_WidgetBP_structs.h │ │ ├── Party_WidgetBP_classes.h │ │ ├── Party_WidgetBP_functions.cpp │ │ ├── Party_WidgetBP_parameters.h │ │ ├── Party_WidgetBP_structs.h │ │ ├── PasswordInput_classes.h │ │ ├── PasswordInput_functions.cpp │ │ ├── PasswordInput_parameters.h │ │ ├── PasswordInput_structs.h │ │ ├── PausePlayerEntry_WidgetBP_classes.h │ │ ├── PausePlayerEntry_WidgetBP_functions.cpp │ │ ├── PausePlayerEntry_WidgetBP_parameters.h │ │ ├── PausePlayerEntry_WidgetBP_structs.h │ │ ├── PhysXVehicles_classes.h │ │ ├── PhysXVehicles_functions.cpp │ │ ├── PhysXVehicles_parameters.h │ │ ├── PhysXVehicles_structs.h │ │ ├── PhysicsCore_classes.h │ │ ├── PhysicsCore_functions.cpp │ │ ├── PhysicsCore_parameters.h │ │ ├── PhysicsCore_structs.h │ │ ├── PlayButton2_classes.h │ │ ├── PlayButton2_functions.cpp │ │ ├── PlayButton2_parameters.h │ │ ├── PlayButton2_structs.h │ │ ├── PlayButton_classes.h │ │ ├── PlayButton_functions.cpp │ │ ├── PlayButton_parameters.h │ │ ├── PlayButton_structs.h │ │ ├── PlaySelection_WidgetBP_classes.h │ │ ├── PlaySelection_WidgetBP_functions.cpp │ │ ├── PlaySelection_WidgetBP_parameters.h │ │ ├── PlaySelection_WidgetBP_structs.h │ │ ├── PlayStreakDialog_WidgetBP_classes.h │ │ ├── PlayStreakDialog_WidgetBP_functions.cpp │ │ ├── PlayStreakDialog_WidgetBP_parameters.h │ │ ├── PlayStreakDialog_WidgetBP_structs.h │ │ ├── PlayStreakNotification_WidgetBP_classes.h │ │ ├── PlayStreakNotification_WidgetBP_functions.cpp │ │ ├── PlayStreakNotification_WidgetBP_parameters.h │ │ ├── PlayStreakNotification_WidgetBP_structs.h │ │ ├── PlayStreakReward_WidgetBP_classes.h │ │ ├── PlayStreakReward_WidgetBP_functions.cpp │ │ ├── PlayStreakReward_WidgetBP_parameters.h │ │ ├── PlayStreakReward_WidgetBP_structs.h │ │ ├── Play_WidgetBP_classes.h │ │ ├── Play_WidgetBP_functions.cpp │ │ ├── Play_WidgetBP_parameters.h │ │ ├── Play_WidgetBP_structs.h │ │ ├── PlayerActions_WidgetBP_classes.h │ │ ├── PlayerActions_WidgetBP_functions.cpp │ │ ├── PlayerActions_WidgetBP_parameters.h │ │ ├── PlayerActions_WidgetBP_structs.h │ │ ├── PlayerCard_WidgetBP_classes.h │ │ ├── PlayerCard_WidgetBP_functions.cpp │ │ ├── PlayerCard_WidgetBP_parameters.h │ │ ├── PlayerCard_WidgetBP_structs.h │ │ ├── PlayerEntry_classes.h │ │ ├── PlayerEntry_functions.cpp │ │ ├── PlayerEntry_parameters.h │ │ ├── PlayerEntry_structs.h │ │ ├── PlayerWallet_WidgetBP_classes.h │ │ ├── PlayerWallet_WidgetBP_functions.cpp │ │ ├── PlayerWallet_WidgetBP_parameters.h │ │ ├── PlayerWallet_WidgetBP_structs.h │ │ ├── PlaylistEntry_WidgetBP_classes.h │ │ ├── PlaylistEntry_WidgetBP_functions.cpp │ │ ├── PlaylistEntry_WidgetBP_parameters.h │ │ ├── PlaylistEntry_WidgetBP_structs.h │ │ ├── PlaylistGameModeSelect_WidgetBP_classes.h │ │ ├── PlaylistGameModeSelect_WidgetBP_functions.cpp │ │ ├── PlaylistGameModeSelect_WidgetBP_parameters.h │ │ ├── PlaylistGameModeSelect_WidgetBP_structs.h │ │ ├── PlaylistSelection_WidgetBP_classes.h │ │ ├── PlaylistSelection_WidgetBP_functions.cpp │ │ ├── PlaylistSelection_WidgetBP_parameters.h │ │ ├── PlaylistSelection_WidgetBP_structs.h │ │ ├── PortalBP_classes.h │ │ ├── PortalBP_functions.cpp │ │ ├── PortalBP_parameters.h │ │ ├── PortalBP_structs.h │ │ ├── PortalLauncherBP_classes.h │ │ ├── PortalLauncherBP_functions.cpp │ │ ├── PortalLauncherBP_parameters.h │ │ ├── PortalLauncherBP_structs.h │ │ ├── PortalWarsCharacter_BP_classes.h │ │ ├── PortalWarsCharacter_BP_functions.cpp │ │ ├── PortalWarsCharacter_BP_parameters.h │ │ ├── PortalWarsCharacter_BP_structs.h │ │ ├── PortalWarsGameInstance_BP_classes.h │ │ ├── PortalWarsGameInstance_BP_functions.cpp │ │ ├── PortalWarsGameInstance_BP_parameters.h │ │ ├── PortalWarsGameInstance_BP_structs.h │ │ ├── PortalWarsGlobals_BP_classes.h │ │ ├── PortalWarsGlobals_BP_functions.cpp │ │ ├── PortalWarsGlobals_BP_parameters.h │ │ ├── PortalWarsGlobals_BP_structs.h │ │ ├── PortalWarsGlobals_classes.h │ │ ├── PortalWarsGlobals_functions.cpp │ │ ├── PortalWarsGlobals_parameters.h │ │ ├── PortalWarsGlobals_structs.h │ │ ├── PortalWarsLocalPlayer_BP_classes.h │ │ ├── PortalWarsLocalPlayer_BP_functions.cpp │ │ ├── PortalWarsLocalPlayer_BP_parameters.h │ │ ├── PortalWarsLocalPlayer_BP_structs.h │ │ ├── PortalWarsMainMenuCharacter_BP_classes.h │ │ ├── PortalWarsMainMenuCharacter_BP_functions.cpp │ │ ├── PortalWarsMainMenuCharacter_BP_parameters.h │ │ ├── PortalWarsMainMenuCharacter_BP_structs.h │ │ ├── PortalWars_classes.h │ │ ├── PortalWars_functions.cpp │ │ ├── PortalWars_parameters.h │ │ ├── PortalWars_structs.h │ │ ├── Portal_DmgType_classes.h │ │ ├── Portal_DmgType_functions.cpp │ │ ├── Portal_DmgType_parameters.h │ │ ├── Portal_DmgType_structs.h │ │ ├── PostGameCard_WidgetBP_classes.h │ │ ├── PostGameCard_WidgetBP_functions.cpp │ │ ├── PostGameCard_WidgetBP_parameters.h │ │ ├── PostGameCard_WidgetBP_structs.h │ │ ├── PostGameOverview_WidgetBP_classes.h │ │ ├── PostGameOverview_WidgetBP_functions.cpp │ │ ├── PostGameOverview_WidgetBP_parameters.h │ │ ├── PostGameOverview_WidgetBP_structs.h │ │ ├── PriceEntry_classes.h │ │ ├── PriceEntry_functions.cpp │ │ ├── PriceEntry_parameters.h │ │ ├── PriceEntry_structs.h │ │ ├── PriceWidgetVertical_classes.h │ │ ├── PriceWidgetVertical_functions.cpp │ │ ├── PriceWidgetVertical_parameters.h │ │ ├── PriceWidgetVertical_structs.h │ │ ├── PrivacySettings_WidgetBP_classes.h │ │ ├── PrivacySettings_WidgetBP_functions.cpp │ │ ├── PrivacySettings_WidgetBP_parameters.h │ │ ├── PrivacySettings_WidgetBP_structs.h │ │ ├── ProceduralMeshComponent_classes.h │ │ ├── ProceduralMeshComponent_functions.cpp │ │ ├── ProceduralMeshComponent_parameters.h │ │ ├── ProceduralMeshComponent_structs.h │ │ ├── ProgressionUpdateDialog_WidgetBP_classes.h │ │ ├── ProgressionUpdateDialog_WidgetBP_functions.cpp │ │ ├── ProgressionUpdateDialog_WidgetBP_parameters.h │ │ ├── ProgressionUpdateDialog_WidgetBP_structs.h │ │ ├── PropertyAccess_classes.h │ │ ├── PropertyAccess_functions.cpp │ │ ├── PropertyAccess_parameters.h │ │ ├── PropertyAccess_structs.h │ │ ├── PropertyPath_classes.h │ │ ├── PropertyPath_functions.cpp │ │ ├── PropertyPath_parameters.h │ │ ├── PropertyPath_structs.h │ │ ├── PurchaseButton_classes.h │ │ ├── PurchaseButton_functions.cpp │ │ ├── PurchaseButton_parameters.h │ │ ├── PurchaseButton_structs.h │ │ ├── PurchaseDialogBackground_classes.h │ │ ├── PurchaseDialogBackground_functions.cpp │ │ ├── PurchaseDialogBackground_parameters.h │ │ ├── PurchaseDialogBackground_structs.h │ │ ├── RadioEntry_classes.h │ │ ├── RadioEntry_functions.cpp │ │ ├── RadioEntry_parameters.h │ │ ├── RadioEntry_structs.h │ │ ├── RadioGroup_classes.h │ │ ├── RadioGroup_functions.cpp │ │ ├── RadioGroup_parameters.h │ │ ├── RadioGroup_structs.h │ │ ├── RankLeaderboardEntry_WidgetBP_classes.h │ │ ├── RankLeaderboardEntry_WidgetBP_functions.cpp │ │ ├── RankLeaderboardEntry_WidgetBP_parameters.h │ │ ├── RankLeaderboardEntry_WidgetBP_structs.h │ │ ├── RankLeaderboard_WidgetBP_classes.h │ │ ├── RankLeaderboard_WidgetBP_functions.cpp │ │ ├── RankLeaderboard_WidgetBP_parameters.h │ │ ├── RankLeaderboard_WidgetBP_structs.h │ │ ├── RankListEntry_WidgetBP_classes.h │ │ ├── RankListEntry_WidgetBP_functions.cpp │ │ ├── RankListEntry_WidgetBP_parameters.h │ │ ├── RankListEntry_WidgetBP_structs.h │ │ ├── RankList_WidgetBP_classes.h │ │ ├── RankList_WidgetBP_functions.cpp │ │ ├── RankList_WidgetBP_parameters.h │ │ ├── RankList_WidgetBP_structs.h │ │ ├── RankUpdate_WidgetBP_classes.h │ │ ├── RankUpdate_WidgetBP_functions.cpp │ │ ├── RankUpdate_WidgetBP_parameters.h │ │ ├── RankUpdate_WidgetBP_structs.h │ │ ├── RecentPlayers_WidgetBP_classes.h │ │ ├── RecentPlayers_WidgetBP_functions.cpp │ │ ├── RecentPlayers_WidgetBP_parameters.h │ │ ├── RecentPlayers_WidgetBP_structs.h │ │ ├── RedButtonBase_classes.h │ │ ├── RedButtonBase_functions.cpp │ │ ├── RedButtonBase_parameters.h │ │ ├── RedButtonBase_structs.h │ │ ├── RedeemButton_classes.h │ │ ├── RedeemButton_functions.cpp │ │ ├── RedeemButton_parameters.h │ │ ├── RedeemButton_structs.h │ │ ├── ReferFriendDialog_WidgetBP_classes.h │ │ ├── ReferFriendDialog_WidgetBP_functions.cpp │ │ ├── ReferFriendDialog_WidgetBP_parameters.h │ │ ├── ReferFriendDialog_WidgetBP_structs.h │ │ ├── ReferFriend_WidgetBP_classes.h │ │ ├── ReferFriend_WidgetBP_functions.cpp │ │ ├── ReferFriend_WidgetBP_parameters.h │ │ ├── ReferFriend_WidgetBP_structs.h │ │ ├── ReferralPassEntry_WidgetBP_classes.h │ │ ├── ReferralPassEntry_WidgetBP_functions.cpp │ │ ├── ReferralPassEntry_WidgetBP_parameters.h │ │ ├── ReferralPassEntry_WidgetBP_structs.h │ │ ├── ReferralPass_WidgetBP_classes.h │ │ ├── ReferralPass_WidgetBP_functions.cpp │ │ ├── ReferralPass_WidgetBP_parameters.h │ │ ├── ReferralPass_WidgetBP_structs.h │ │ ├── RenameReplayDialog_WidgetBP_classes.h │ │ ├── RenameReplayDialog_WidgetBP_functions.cpp │ │ ├── RenameReplayDialog_WidgetBP_parameters.h │ │ ├── RenameReplayDialog_WidgetBP_structs.h │ │ ├── Renderer_classes.h │ │ ├── Renderer_functions.cpp │ │ ├── Renderer_parameters.h │ │ ├── Renderer_structs.h │ │ ├── RepairButton_classes.h │ │ ├── RepairButton_functions.cpp │ │ ├── RepairButton_parameters.h │ │ ├── RepairButton_structs.h │ │ ├── ReplayEntryRow_WidgetBP_classes.h │ │ ├── ReplayEntryRow_WidgetBP_functions.cpp │ │ ├── ReplayEntryRow_WidgetBP_parameters.h │ │ ├── ReplayEntryRow_WidgetBP_structs.h │ │ ├── ReplayEntry_WidgetBP_classes.h │ │ ├── ReplayEntry_WidgetBP_functions.cpp │ │ ├── ReplayEntry_WidgetBP_parameters.h │ │ ├── ReplayEntry_WidgetBP_structs.h │ │ ├── Replays_WidgetBP_classes.h │ │ ├── Replays_WidgetBP_functions.cpp │ │ ├── Replays_WidgetBP_parameters.h │ │ ├── Replays_WidgetBP_structs.h │ │ ├── ReportCategoryDropdown_classes.h │ │ ├── ReportCategoryDropdown_functions.cpp │ │ ├── ReportCategoryDropdown_parameters.h │ │ ├── ReportCategoryDropdown_structs.h │ │ ├── ReportPlayer_WidgetBP_classes.h │ │ ├── ReportPlayer_WidgetBP_functions.cpp │ │ ├── ReportPlayer_WidgetBP_parameters.h │ │ ├── ReportPlayer_WidgetBP_structs.h │ │ ├── ReportTextInput_classes.h │ │ ├── ReportTextInput_functions.cpp │ │ ├── ReportTextInput_parameters.h │ │ ├── ReportTextInput_structs.h │ │ ├── Reticle_classes.h │ │ ├── Reticle_functions.cpp │ │ ├── Reticle_parameters.h │ │ ├── Reticle_structs.h │ │ ├── RewardCenterButton_classes.h │ │ ├── RewardCenterButton_functions.cpp │ │ ├── RewardCenterButton_parameters.h │ │ ├── RewardCenterButton_structs.h │ │ ├── RewardCenterSectionHeader_classes.h │ │ ├── RewardCenterSectionHeader_functions.cpp │ │ ├── RewardCenterSectionHeader_parameters.h │ │ ├── RewardCenterSectionHeader_structs.h │ │ ├── RewardCenter_WidgetBP_classes.h │ │ ├── RewardCenter_WidgetBP_functions.cpp │ │ ├── RewardCenter_WidgetBP_parameters.h │ │ ├── RewardCenter_WidgetBP_structs.h │ │ ├── RewardInspect_WidgetBP_classes.h │ │ ├── RewardInspect_WidgetBP_functions.cpp │ │ ├── RewardInspect_WidgetBP_parameters.h │ │ ├── RewardInspect_WidgetBP_structs.h │ │ ├── RewardPreview_classes.h │ │ ├── RewardPreview_functions.cpp │ │ ├── RewardPreview_parameters.h │ │ ├── RewardPreview_structs.h │ │ ├── RewardReceivedEntry_WidgetBP_classes.h │ │ ├── RewardReceivedEntry_WidgetBP_functions.cpp │ │ ├── RewardReceivedEntry_WidgetBP_parameters.h │ │ ├── RewardReceivedEntry_WidgetBP_structs.h │ │ ├── RewardReceived_WidgetBP_classes.h │ │ ├── RewardReceived_WidgetBP_functions.cpp │ │ ├── RewardReceived_WidgetBP_parameters.h │ │ ├── RewardReceived_WidgetBP_structs.h │ │ ├── Reward_WidgetBP_classes.h │ │ ├── Reward_WidgetBP_functions.cpp │ │ ├── Reward_WidgetBP_parameters.h │ │ ├── Reward_WidgetBP_structs.h │ │ ├── RichTextImageDecorator_classes.h │ │ ├── RichTextImageDecorator_functions.cpp │ │ ├── RichTextImageDecorator_parameters.h │ │ ├── RichTextImageDecorator_structs.h │ │ ├── SAW_3P_AnimBP_V3_classes.h │ │ ├── SAW_3P_AnimBP_V3_functions.cpp │ │ ├── SAW_3P_AnimBP_V3_parameters.h │ │ ├── SAW_3P_AnimBP_V3_structs.h │ │ ├── SAW_3P_IK_AnimBP_V3_classes.h │ │ ├── SAW_3P_IK_AnimBP_V3_functions.cpp │ │ ├── SAW_3P_IK_AnimBP_V3_parameters.h │ │ ├── SAW_3P_IK_AnimBP_V3_structs.h │ │ ├── SAW_MM_AnimBP_classes.h │ │ ├── SAW_MM_AnimBP_functions.cpp │ │ ├── SAW_MM_AnimBP_parameters.h │ │ ├── SAW_MM_AnimBP_structs.h │ │ ├── SeasonRewards_WidgetBP_classes.h │ │ ├── SeasonRewards_WidgetBP_functions.cpp │ │ ├── SeasonRewards_WidgetBP_parameters.h │ │ ├── SeasonRewards_WidgetBP_structs.h │ │ ├── SendRequestButton_classes.h │ │ ├── SendRequestButton_functions.cpp │ │ ├── SendRequestButton_parameters.h │ │ ├── SendRequestButton_structs.h │ │ ├── Serialization_classes.h │ │ ├── Serialization_functions.cpp │ │ ├── Serialization_parameters.h │ │ ├── Serialization_structs.h │ │ ├── ServerBrowser_WidgetBP_classes.h │ │ ├── ServerBrowser_WidgetBP_functions.cpp │ │ ├── ServerBrowser_WidgetBP_parameters.h │ │ ├── ServerBrowser_WidgetBP_structs.h │ │ ├── ServerEntryRow_WidgetBP_classes.h │ │ ├── ServerEntryRow_WidgetBP_functions.cpp │ │ ├── ServerEntryRow_WidgetBP_parameters.h │ │ ├── ServerEntryRow_WidgetBP_structs.h │ │ ├── ServerEntry_WidgetBP_classes.h │ │ ├── ServerEntry_WidgetBP_functions.cpp │ │ ├── ServerEntry_WidgetBP_parameters.h │ │ ├── ServerEntry_WidgetBP_structs.h │ │ ├── SessionMessages_classes.h │ │ ├── SessionMessages_functions.cpp │ │ ├── SessionMessages_parameters.h │ │ ├── SessionMessages_structs.h │ │ ├── SetBlendOutAnim_classes.h │ │ ├── SetBlendOutAnim_functions.cpp │ │ ├── SetBlendOutAnim_parameters.h │ │ ├── SetBlendOutAnim_structs.h │ │ ├── SettingsButton_classes.h │ │ ├── SettingsButton_functions.cpp │ │ ├── SettingsButton_parameters.h │ │ ├── SettingsButton_structs.h │ │ ├── SettingsSectionHeader_classes.h │ │ ├── SettingsSectionHeader_functions.cpp │ │ ├── SettingsSectionHeader_parameters.h │ │ ├── SettingsSectionHeader_structs.h │ │ ├── Settings_WidgetBP_classes.h │ │ ├── Settings_WidgetBP_functions.cpp │ │ ├── Settings_WidgetBP_parameters.h │ │ ├── Settings_WidgetBP_structs.h │ │ ├── SideNavBar_classes.h │ │ ├── SideNavBar_functions.cpp │ │ ├── SideNavBar_parameters.h │ │ ├── SideNavBar_structs.h │ │ ├── SideNavButton_classes.h │ │ ├── SideNavButton_functions.cpp │ │ ├── SideNavButton_parameters.h │ │ ├── SideNavButton_structs.h │ │ ├── SignificanceManager_classes.h │ │ ├── SignificanceManager_functions.cpp │ │ ├── SignificanceManager_parameters.h │ │ ├── SignificanceManager_structs.h │ │ ├── SlateCore_classes.h │ │ ├── SlateCore_functions.cpp │ │ ├── SlateCore_parameters.h │ │ ├── SlateCore_structs.h │ │ ├── Slate_classes.h │ │ ├── Slate_functions.cpp │ │ ├── Slate_parameters.h │ │ ├── Slate_structs.h │ │ ├── SocialInvite_WidgetBP_classes.h │ │ ├── SocialInvite_WidgetBP_functions.cpp │ │ ├── SocialInvite_WidgetBP_parameters.h │ │ ├── SocialInvite_WidgetBP_structs.h │ │ ├── SocialPlayerEntry_WidgetBP_classes.h │ │ ├── SocialPlayerEntry_WidgetBP_functions.cpp │ │ ├── SocialPlayerEntry_WidgetBP_parameters.h │ │ ├── SocialPlayerEntry_WidgetBP_structs.h │ │ ├── SoundFields_classes.h │ │ ├── SoundFields_functions.cpp │ │ ├── SoundFields_parameters.h │ │ ├── SoundFields_structs.h │ │ ├── SpinSlider_classes.h │ │ ├── SpinSlider_functions.cpp │ │ ├── SpinSlider_parameters.h │ │ ├── SpinSlider_structs.h │ │ ├── SprintCamShakeBP_classes.h │ │ ├── SprintCamShakeBP_functions.cpp │ │ ├── SprintCamShakeBP_parameters.h │ │ ├── SprintCamShakeBP_structs.h │ │ ├── StaticMeshDescription_classes.h │ │ ├── StaticMeshDescription_functions.cpp │ │ ├── StaticMeshDescription_parameters.h │ │ ├── StaticMeshDescription_structs.h │ │ ├── StatsEntry_WidgetBP_classes.h │ │ ├── StatsEntry_WidgetBP_functions.cpp │ │ ├── StatsEntry_WidgetBP_parameters.h │ │ ├── StatsEntry_WidgetBP_structs.h │ │ ├── StatsOverview_WidgetBP_classes.h │ │ ├── StatsOverview_WidgetBP_functions.cpp │ │ ├── StatsOverview_WidgetBP_parameters.h │ │ ├── StatsOverview_WidgetBP_structs.h │ │ ├── StatsPlaylist_WidgetBP_classes.h │ │ ├── StatsPlaylist_WidgetBP_functions.cpp │ │ ├── StatsPlaylist_WidgetBP_parameters.h │ │ ├── StatsPlaylist_WidgetBP_structs.h │ │ ├── Stats_WidgetBP_classes.h │ │ ├── Stats_WidgetBP_functions.cpp │ │ ├── Stats_WidgetBP_parameters.h │ │ ├── Stats_WidgetBP_structs.h │ │ ├── StreakProgressionIcon_WidgetBP_classes.h │ │ ├── StreakProgressionIcon_WidgetBP_functions.cpp │ │ ├── StreakProgressionIcon_WidgetBP_parameters.h │ │ ├── StreakProgressionIcon_WidgetBP_structs.h │ │ ├── SubNavBar_classes.h │ │ ├── SubNavBar_functions.cpp │ │ ├── SubNavBar_parameters.h │ │ ├── SubNavBar_structs.h │ │ ├── SubNavButton_classes.h │ │ ├── SubNavButton_functions.cpp │ │ ├── SubNavButton_parameters.h │ │ ├── SubNavButton_structs.h │ │ ├── SubmitButton_classes.h │ │ ├── SubmitButton_functions.cpp │ │ ├── SubmitButton_parameters.h │ │ ├── SubmitButton_structs.h │ │ ├── Suicide_DmgType_classes.h │ │ ├── Suicide_DmgType_functions.cpp │ │ ├── Suicide_DmgType_parameters.h │ │ ├── Suicide_DmgType_structs.h │ │ ├── Synthesis_classes.h │ │ ├── Synthesis_functions.cpp │ │ ├── Synthesis_parameters.h │ │ ├── Synthesis_structs.h │ │ ├── TcpMessaging_classes.h │ │ ├── TcpMessaging_functions.cpp │ │ ├── TcpMessaging_parameters.h │ │ ├── TcpMessaging_structs.h │ │ ├── TemplateSequence_classes.h │ │ ├── TemplateSequence_functions.cpp │ │ ├── TemplateSequence_parameters.h │ │ ├── TemplateSequence_structs.h │ │ ├── TextInput_classes.h │ │ ├── TextInput_functions.cpp │ │ ├── TextInput_parameters.h │ │ ├── TextInput_structs.h │ │ ├── TimeManagement_classes.h │ │ ├── TimeManagement_functions.cpp │ │ ├── TimeManagement_parameters.h │ │ ├── TimeManagement_structs.h │ │ ├── Training_WidgetBP_classes.h │ │ ├── Training_WidgetBP_functions.cpp │ │ ├── Training_WidgetBP_parameters.h │ │ ├── Training_WidgetBP_structs.h │ │ ├── UDS_FeatureToggle_classes.h │ │ ├── UDS_FeatureToggle_functions.cpp │ │ ├── UDS_FeatureToggle_parameters.h │ │ ├── UDS_FeatureToggle_structs.h │ │ ├── UDS_NoiseType_classes.h │ │ ├── UDS_NoiseType_functions.cpp │ │ ├── UDS_NoiseType_parameters.h │ │ ├── UDS_NoiseType_structs.h │ │ ├── UDS_SkyLightMode_classes.h │ │ ├── UDS_SkyLightMode_functions.cpp │ │ ├── UDS_SkyLightMode_parameters.h │ │ ├── UDS_SkyLightMode_structs.h │ │ ├── UISettings_WidgetBP_classes.h │ │ ├── UISettings_WidgetBP_functions.cpp │ │ ├── UISettings_WidgetBP_parameters.h │ │ ├── UISettings_WidgetBP_structs.h │ │ ├── UMG_classes.h │ │ ├── UMG_functions.cpp │ │ ├── UMG_parameters.h │ │ ├── UMG_structs.h │ │ ├── UdpMessaging_classes.h │ │ ├── UdpMessaging_functions.cpp │ │ ├── UdpMessaging_parameters.h │ │ ├── UdpMessaging_structs.h │ │ ├── Ultra_Dynamic_Sky_BP_classes.h │ │ ├── Ultra_Dynamic_Sky_BP_functions.cpp │ │ ├── Ultra_Dynamic_Sky_BP_parameters.h │ │ ├── Ultra_Dynamic_Sky_BP_structs.h │ │ ├── UnlockDialog_WidgetBP_classes.h │ │ ├── UnlockDialog_WidgetBP_functions.cpp │ │ ├── UnlockDialog_WidgetBP_parameters.h │ │ ├── UnlockDialog_WidgetBP_structs.h │ │ ├── UnlockNoteEntry_WidgetBP_classes.h │ │ ├── UnlockNoteEntry_WidgetBP_functions.cpp │ │ ├── UnlockNoteEntry_WidgetBP_parameters.h │ │ ├── UnlockNoteEntry_WidgetBP_structs.h │ │ ├── VariantManagerContent_classes.h │ │ ├── VariantManagerContent_functions.cpp │ │ ├── VariantManagerContent_parameters.h │ │ ├── VariantManagerContent_structs.h │ │ ├── VideoSettings_WidgetBP_classes.h │ │ ├── VideoSettings_WidgetBP_functions.cpp │ │ ├── VideoSettings_WidgetBP_parameters.h │ │ ├── VideoSettings_WidgetBP_structs.h │ │ ├── ViewButton_classes.h │ │ ├── ViewButton_functions.cpp │ │ ├── ViewButton_parameters.h │ │ ├── ViewButton_structs.h │ │ ├── VivoxCore_classes.h │ │ ├── VivoxCore_functions.cpp │ │ ├── VivoxCore_parameters.h │ │ ├── VivoxCore_structs.h │ │ ├── WarningText_classes.h │ │ ├── WarningText_functions.cpp │ │ ├── WarningText_parameters.h │ │ ├── WarningText_structs.h │ │ ├── WmfMediaFactory_classes.h │ │ ├── WmfMediaFactory_functions.cpp │ │ ├── WmfMediaFactory_parameters.h │ │ ├── WmfMediaFactory_structs.h │ │ ├── XPBoostEntry_WidgetBP_classes.h │ │ ├── XPBoostEntry_WidgetBP_functions.cpp │ │ ├── XPBoostEntry_WidgetBP_parameters.h │ │ ├── XPBoostEntry_WidgetBP_structs.h │ │ ├── XPProgressionIcon_WidgetBP_classes.h │ │ ├── XPProgressionIcon_WidgetBP_functions.cpp │ │ ├── XPProgressionIcon_WidgetBP_parameters.h │ │ ├── XPProgressionIcon_WidgetBP_structs.h │ │ ├── XPUpdateEntry_WidgetBP_classes.h │ │ ├── XPUpdateEntry_WidgetBP_functions.cpp │ │ ├── XPUpdateEntry_WidgetBP_parameters.h │ │ ├── XPUpdateEntry_WidgetBP_structs.h │ │ ├── XPUpdate_WidgetBP_classes.h │ │ ├── XPUpdate_WidgetBP_functions.cpp │ │ ├── XPUpdate_WidgetBP_parameters.h │ │ ├── XPUpdate_WidgetBP_structs.h │ │ ├── XboxButtonLayout_WidgetBP_classes.h │ │ ├── XboxButtonLayout_WidgetBP_functions.cpp │ │ ├── XboxButtonLayout_WidgetBP_parameters.h │ │ └── XboxButtonLayout_WidgetBP_structs.h └── utils │ ├── globals.cpp │ ├── globals.h │ ├── utils.cpp │ └── utils.h ├── splitgate.vcxproj └── splitgate.vcxproj.filters /splitgate/core/features/features.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace features { 4 | void esp(); 5 | } -------------------------------------------------------------------------------- /splitgate/core/hooks/minhook/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NMan1/splitgate-cheat/bf935f5b3c0dfc5d618298e76e474b1c8b3cea4b/splitgate/core/hooks/minhook/buffer.c -------------------------------------------------------------------------------- /splitgate/core/pch.h: -------------------------------------------------------------------------------- 1 | #include "sdk\sdk.h" 2 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/AcceptInviteDialog_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ActionPlayerEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ActorSequence_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/AddFriends_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/AlertButton_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/AnimationCore_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/AudioAnalyzer_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/AudioAnalyzer_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/AudioExtensions_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/AudioExtensions_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/AudioPlatformConfiguration_classes.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/AudioSettings_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/AutoCalibrateSettings_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/AutomationUtils_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/BPProgressionIcon_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/BP_LightBeam_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/B_Spline_Impact_Road2_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/B_Spline_Impact_Road_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/BackButton_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/BattlePassEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/BattlePassPanelRewardEntry_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/BattlePassPanel_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/BattlePassPurchaseButton_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/BattlePassPurchaseDialog_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/BattlePassPurchaseEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/BattlePassRedeemableButton_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/BattlePass_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/BlockedPlayers_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/BlueButtonBase_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Border_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ButtonBase2_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ButtonBase_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/CableComponent_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/CancelButton_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/CareerProgress_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Career_WidgetBP_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Career_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ChallengeButtonLarge_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ChallengeButtonMedium_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ChallengeButtonSmall_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ChallengeButtonWeapon_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ChallengeCompleteEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ChallengeDialog_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ChallengeEntryFeaturedLarge_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ChallengeEntryFeatured_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ChallengeEntryLarge_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ChallengeEntryMedium_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ChallengeEntrySmall_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ChallengeInspectEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ChallengeInspect_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ChallengePanelEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ChallengePanel_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ChallengesLarge_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ChallengesMedium_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ChallengesSmall_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Challenges_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Chaos_classes.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Chaos_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/CheckBox_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/CheckBox_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/CheckInBigReward_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/CheckInDialog_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/CheckInReward_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ChunkInstall_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ClaimChallengeIndicator_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ColorPicker_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ColorPicker_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ColorblindTestImage_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ComingSoon_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ControllerControlSettings_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ControllerSelectSettings_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ControllerSettings_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/CopyButton_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/CopyButton_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/CrosshairSelect_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/CrosshairSelect_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/CurrencyPurchaseDialog_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/CurrencyPurchaseEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/CurrencyRetryButton_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/CurrencyStoreEntryBig_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/CurrencyStoreEntryMedium_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/CurrencyStoreEntrySmall_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/CurrencyStore_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/CustomGameCreatedBy_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/CustomGames_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/CustomScrollHorizontal_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/CustomScrollVertical_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/DailyCheckIn_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/DailyPlayStreak_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Demo_WidgetBP_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Demo_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/DeveloperSettings_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/DeveloperSettings_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/DialogBackground_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Dialog_EscapeMenu_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Dialog_EscapeMenu_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Dialog_GameSessionReconnect_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Dialog_GamepadReconnect_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Dialog_Message_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Dialog_Message_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Dialog_PlaylistActive_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Dialog_RedeemKey_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Dialog_RedeemKey_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Dialog_Settings_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/DiscardSettingsDialog_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/DiscountWidget_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/DiscountWidget_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/DmgTypeBP_Environmental_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/DropIndicator_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Dropdown_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Dropdown_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/DropsMenu_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/EMPGrenadeLauncher_BP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/EMPGrenadePickup_BP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/EMPGrenade_BP_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/EMPGrenade_BP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/EQU8_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/EQU8_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/EngineMessages_classes.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/EngineMessages_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/EnvironmentReference_BP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/EquipButton_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/EquipButton_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ErrorMenu_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/FPPAnimBlueprint_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/FacialAnimation_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/FacialAnimation_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/FeatureButtonBase_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/FeedActionButton_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/FeedActionButton_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/FeedIndicator_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/FeedIndicator_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Fists_BP_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Fists_BP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Fists_DmgType_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Fists_DmgType_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/FriendRequestDialog_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/FriendRequestEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/FriendRequestNotificationEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/FriendRequestTextInput_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/FriendsListSub_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/FriendsList_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/FullLootSequence_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/GameModeEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/GameModeInfo_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/GameModeInfo_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/GamepadSelectCarousel_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/GameplaySettings_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/GoldButtonBase_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/GreenButtonBase_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/HeaderBase_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Host_WidgetBP_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Host_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ImageWrapper_classes.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ImageWrapper_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ImgMediaEngine_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ImgMediaEngine_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ImgMediaFactory_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ImgMediaFactory_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ImgMedia_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/InputCore_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/InspectItem_BP_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/InspectItem_BP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/InspectItem_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/IntroMediaSoundActor_BP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/IntroVideoWidget_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/IntroVideoWidget_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/InviteEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/InviteManager_BP_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/InviteManager_BP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/InviteMenu_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/InviteNotificationEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ItemPurchaseDialog_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ItemShopBattlePassEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ItemShopBattlePassSection_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ItemShopEntryBig_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ItemShopEntryFeatured_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ItemShopEntryMedium_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ItemShopEntrySmall_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ItemShopInspectEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ItemShopInspect_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ItemShopPurchaseButton_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ItemShopPurchaseEntry_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ItemShopPurchasePanel_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ItemShopSection_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ItemShop_WidgetBP_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ItemShop_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/JoinServerDialog_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/JsonUtilities_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/KeybindEntry_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/KeybindEntry_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/KeybindOverlay_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/KeybindSettings_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/LightPropagationVolumeRuntime_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/LightRedButtonBase_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/LimitedTimeOfferDialog_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/LimitedTimeOfferSection_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/LoadingScreen_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/LoadingScreen_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/LockerButtonLarge_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/LockerButtonMedium_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/LockerButtonPlayer_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/LockerButtonSmall_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/LockerHorizontalItemEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/LockerInspect_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/LockerParentItemEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/LockerVerticalItemEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Locker_WidgetBP_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Locker_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/LoginMenu_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Lootbox_WidgetBP_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Lootbox_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/MKBControlSettings_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/MKBSettings_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/MagicLeapARPinInfoActor_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/MainMenuGameMode_BP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/MainMenuNavBar_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/MainMenuNavBar_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/MainMenuPlayerController_BP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/MainMenu_Content_Impact_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/MainMenu_Inspect_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/MainMenu_Inspect_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/MainMenu_WidgetBP_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/MainMenu_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/MainMenu_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/MainMenu_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/MediaCompositing_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/MediaUtils_classes.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/MediaUtils_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/MeleeCamShake_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/MeleeCamShake_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/MeleeHitCamShake_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/MeleeHitCamShake_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Melee_DmgType_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Melee_DmgType_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/MenuBackground_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/MenuButtonBase_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/MoviePlayer_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/NameTag_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/NameTag_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/NavBarLeftButton_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/NavBarLeftButton_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/NavBarRightButton_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/NavBarRightButton_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/NavBar_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/NavBar_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/NavButton_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/NetCore_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/NewsFeedEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/NewsFeed_WidgetBP_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/NewsFeed_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/NotificationButton_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/NotificationManager_BP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/NotificationOverlay_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/NumericCarousel_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/NumericCarousel_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/OWGameEvents_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/OnlineServices_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/OnlineSubsystem1047_classes.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/OnlineSubsystemSteam_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Overlay_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PS4ButtonLayout_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PacketHandler_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PacketHandler_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PartyEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PartyInspectPlayerEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PartyInspect_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Party_WidgetBP_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Party_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PasswordInput_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PasswordInput_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PausePlayerEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PhysicsCore_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PlayButton2_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PlayButton2_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PlayButton_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PlayButton_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PlaySelection_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PlayStreakDialog_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PlayStreakNotification_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PlayStreakReward_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Play_WidgetBP_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Play_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PlayerActions_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PlayerCard_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PlayerEntry_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PlayerEntry_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PlayerWallet_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PlaylistEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PlaylistGameModeSelect_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PlaylistSelection_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PortalBP_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PortalBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PortalLauncherBP_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PortalLauncherBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PortalWarsCharacter_BP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PortalWarsGameInstance_BP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PortalWarsGlobals_BP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PortalWarsGlobals_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PortalWarsLocalPlayer_BP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PortalWarsMainMenuCharacter_BP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Portal_DmgType_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Portal_DmgType_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PostGameCard_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PostGameOverview_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PriceEntry_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PriceEntry_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PriceWidgetVertical_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PrivacySettings_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ProgressionUpdateDialog_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PropertyAccess_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PropertyPath_classes.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PropertyPath_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PurchaseButton_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PurchaseButton_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/PurchaseDialogBackground_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/RadioEntry_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/RadioGroup_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/RadioGroup_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/RankLeaderboardEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/RankLeaderboard_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/RankListEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/RankList_WidgetBP_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/RankList_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/RankUpdate_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/RecentPlayers_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/RedButtonBase_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/RedeemButton_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/RedeemButton_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ReferFriendDialog_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ReferFriend_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ReferralPassEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ReferralPass_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/RenameReplayDialog_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Renderer_classes.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Renderer_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/RepairButton_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/RepairButton_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ReplayEntryRow_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ReplayEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Replays_WidgetBP_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Replays_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ReportCategoryDropdown_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ReportPlayer_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ReportTextInput_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ReportTextInput_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Reticle_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Reticle_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/RewardCenterButton_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/RewardCenterSectionHeader_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/RewardCenter_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/RewardInspect_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/RewardPreview_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/RewardPreview_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/RewardReceivedEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/RewardReceived_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Reward_WidgetBP_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Reward_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/RichTextImageDecorator_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/SAW_3P_AnimBP_V3_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/SAW_3P_IK_AnimBP_V3_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/SAW_MM_AnimBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/SeasonRewards_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/SendRequestButton_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Serialization_classes.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Serialization_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ServerBrowser_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ServerEntryRow_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ServerEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/SessionMessages_classes.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/SessionMessages_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/SetBlendOutAnim_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/SettingsButton_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/SettingsSectionHeader_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Settings_WidgetBP_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Settings_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/SideNavBar_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/SideNavBar_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/SideNavButton_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/SignificanceManager_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/SlateCore_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Slate_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/SocialInvite_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/SocialPlayerEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/SoundFields_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/SoundFields_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/SpinSlider_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/SpinSlider_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/SprintCamShakeBP_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/SprintCamShakeBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/StatsEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/StatsOverview_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/StatsPlaylist_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Stats_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/StreakProgressionIcon_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/SubNavBar_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/SubNavBar_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/SubNavButton_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/SubmitButton_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Suicide_DmgType_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/TcpMessaging_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/TcpMessaging_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/TextInput_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/TextInput_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Training_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/UDS_FeatureToggle_classes.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/UDS_NoiseType_classes.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/UDS_SkyLightMode_classes.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/UISettings_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/UdpMessaging_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/Ultra_Dynamic_Sky_BP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/UnlockDialog_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/UnlockNoteEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/VideoSettings_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ViewButton_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/ViewButton_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/VivoxCore_classes.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/VivoxCore_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/WarningText_functions.cpp: -------------------------------------------------------------------------------- 1 | #include "..\..\pch.h" 2 | 3 | 4 | 5 | /*!!DEFINE!!*/ 6 | 7 | /*!!HELPER_DEF!!*/ 8 | 9 | /*!!HELPER_INC!!*/ 10 | 11 | #ifdef _MSC_VER 12 | #pragma pack(push, 0x01) 13 | #endif 14 | 15 | namespace CG 16 | { 17 | //--------------------------------------------------------------------------- 18 | // Functions 19 | //--------------------------------------------------------------------------- 20 | 21 | } 22 | 23 | #ifdef _MSC_VER 24 | #pragma pack(pop) 25 | #endif 26 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/WarningText_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/WmfMediaFactory_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/XPBoostEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/XPProgressionIcon_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/XPUpdateEntry_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/XPUpdate_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | -------------------------------------------------------------------------------- /splitgate/core/sdk/sdk/XboxButtonLayout_WidgetBP_structs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\..\pch.h" 4 | 5 | 6 | /*!!DEFINE!!*/ 7 | 8 | /*!!HELPER_DEF!!*/ 9 | 10 | /*!!HELPER_INC!!*/ 11 | 12 | #ifdef _MSC_VER 13 | #pragma pack(push, 0x01) 14 | #endif 15 | 16 | namespace CG 17 | { 18 | } 19 | 20 | #ifdef _MSC_VER 21 | #pragma pack(pop) 22 | #endif 23 | --------------------------------------------------------------------------------