├── .clang-format ├── .github └── workflows │ └── build-windows.yml ├── .gitignore ├── .gitmodules ├── .vscode ├── c_cpp_properties.json └── settings.json ├── README.md ├── bin ├── linux-musl-x86_64 │ └── libnethost.a ├── linux-x86_64 │ └── libnethost.a └── windows-x86-64 │ ├── libnethost.lib │ └── libnethost.pdb ├── include ├── commands.h ├── common_entry.h ├── common_player_data.h ├── console.h ├── dotnet │ ├── coreclr_delegates.h │ ├── hostfxr.h │ └── nethost.h ├── engine_functions.h ├── events.h ├── hooks.h ├── lockfree_queue_sink.h ├── os │ ├── linux │ │ └── sdk │ │ │ └── platform_sdk.h │ └── windows │ │ └── sdk │ │ └── platform_sdk.h ├── sdk │ ├── PropertyFixup.hpp │ ├── SDK.hpp │ ├── SDK │ │ ├── ABP_NPC_Base_classes.hpp │ │ ├── AIModule_classes.hpp │ │ ├── AIModule_parameters.hpp │ │ ├── AIModule_structs.hpp │ │ ├── ALI_HumanCloth_classes.hpp │ │ ├── ALI_HumanCloth_parameters.hpp │ │ ├── ALI_HumanCloth_structs.hpp │ │ ├── ALI_HumanHair_classes.hpp │ │ ├── ALI_HumanHair_parameters.hpp │ │ ├── ALI_HumanHair_structs.hpp │ │ ├── ALI_NPC_HairCloth_classes.hpp │ │ ├── ALI_NPC_HairCloth_parameters.hpp │ │ ├── ALI_NPC_HairCloth_structs.hpp │ │ ├── ALI_PalmiSubFunction_classes.hpp │ │ ├── ALI_PalmiSubFunction_parameters.hpp │ │ ├── ALI_PalmiSubFunction_structs.hpp │ │ ├── ActorLayerUtilities_classes.hpp │ │ ├── ActorLayerUtilities_parameters.hpp │ │ ├── ActorLayerUtilities_structs.hpp │ │ ├── ActorSequence_classes.hpp │ │ ├── ActorSequence_parameters.hpp │ │ ├── ActorSequence_structs.hpp │ │ ├── AdditionalCascades_classes.hpp │ │ ├── AdditionalCascades_parameters.hpp │ │ ├── AdditionalCascades_structs.hpp │ │ ├── AdvancedWidgets_classes.hpp │ │ ├── AdvancedWidgets_parameters.hpp │ │ ├── AdvancedWidgets_structs.hpp │ │ ├── AkAudio_classes.hpp │ │ ├── AkAudio_parameters.hpp │ │ ├── AkAudio_structs.hpp │ │ ├── AndroidFileServer_classes.hpp │ │ ├── AndroidFileServer_parameters.hpp │ │ ├── AndroidFileServer_structs.hpp │ │ ├── AndroidPermission_classes.hpp │ │ ├── AndroidPermission_parameters.hpp │ │ ├── AndroidPermission_structs.hpp │ │ ├── AnimGraphRuntime_classes.hpp │ │ ├── AnimGraphRuntime_parameters.hpp │ │ ├── AnimGraphRuntime_structs.hpp │ │ ├── AnimNotify_AkEvent_classes.hpp │ │ ├── AnimNotify_AkEvent_parameters.hpp │ │ ├── AnimNotify_AkEvent_structs.hpp │ │ ├── AnimationCore_classes.hpp │ │ ├── AnimationCore_parameters.hpp │ │ ├── AnimationCore_structs.hpp │ │ ├── AnimationSharing_classes.hpp │ │ ├── AnimationSharing_parameters.hpp │ │ ├── AnimationSharing_structs.hpp │ │ ├── ApexDestruction_classes.hpp │ │ ├── ApexDestruction_parameters.hpp │ │ ├── ApexDestruction_structs.hpp │ │ ├── AppleImageUtils_classes.hpp │ │ ├── AppleImageUtils_parameters.hpp │ │ ├── AppleImageUtils_structs.hpp │ │ ├── ArchVisCharacter_classes.hpp │ │ ├── ArchVisCharacter_parameters.hpp │ │ ├── ArchVisCharacter_structs.hpp │ │ ├── AssetRegistry_classes.hpp │ │ ├── AssetRegistry_parameters.hpp │ │ ├── AssetRegistry_structs.hpp │ │ ├── AssetTags_classes.hpp │ │ ├── AssetTags_parameters.hpp │ │ ├── AssetTags_structs.hpp │ │ ├── AudioAnalyzer_classes.hpp │ │ ├── AudioAnalyzer_parameters.hpp │ │ ├── AudioAnalyzer_structs.hpp │ │ ├── AudioCapture_classes.hpp │ │ ├── AudioCapture_parameters.hpp │ │ ├── AudioCapture_structs.hpp │ │ ├── AudioExtensions_classes.hpp │ │ ├── AudioExtensions_parameters.hpp │ │ ├── AudioExtensions_structs.hpp │ │ ├── AudioLinkCore_classes.hpp │ │ ├── AudioLinkCore_parameters.hpp │ │ ├── AudioLinkCore_structs.hpp │ │ ├── AudioLinkEngine_classes.hpp │ │ ├── AudioLinkEngine_parameters.hpp │ │ ├── AudioLinkEngine_structs.hpp │ │ ├── AudioMixer_classes.hpp │ │ ├── AudioMixer_parameters.hpp │ │ ├── AudioMixer_structs.hpp │ │ ├── AudioPlatformConfiguration_classes.hpp │ │ ├── AudioPlatformConfiguration_parameters.hpp │ │ ├── AudioPlatformConfiguration_structs.hpp │ │ ├── AudioSynesthesia_classes.hpp │ │ ├── AudioSynesthesia_parameters.hpp │ │ ├── AudioSynesthesia_structs.hpp │ │ ├── AudioWidgets_classes.hpp │ │ ├── AudioWidgets_parameters.hpp │ │ ├── AudioWidgets_structs.hpp │ │ ├── AugmentedReality_classes.hpp │ │ ├── AugmentedReality_parameters.hpp │ │ ├── AugmentedReality_structs.hpp │ │ ├── AutomationController_classes.hpp │ │ ├── AutomationController_parameters.hpp │ │ ├── AutomationController_structs.hpp │ │ ├── AutomationMessages_classes.hpp │ │ ├── AutomationMessages_parameters.hpp │ │ ├── AutomationMessages_structs.hpp │ │ ├── AutomationTest_classes.hpp │ │ ├── AutomationTest_parameters.hpp │ │ ├── AutomationTest_structs.hpp │ │ ├── AutomationUtils_classes.hpp │ │ ├── AutomationUtils_parameters.hpp │ │ ├── AutomationUtils_structs.hpp │ │ ├── AvfMediaFactory_classes.hpp │ │ ├── AvfMediaFactory_parameters.hpp │ │ ├── AvfMediaFactory_structs.hpp │ │ ├── Basic.hpp │ │ ├── BuildPatchServices_classes.hpp │ │ ├── BuildPatchServices_parameters.hpp │ │ ├── BuildPatchServices_structs.hpp │ │ ├── CR_PlayerClavicleAdjust_classes.hpp │ │ ├── CR_PlayerClavicleAdjust_parameters.hpp │ │ ├── CR_PlayerClavicleAdjust_structs.hpp │ │ ├── CableComponent_classes.hpp │ │ ├── CableComponent_parameters.hpp │ │ ├── CableComponent_structs.hpp │ │ ├── CameraCalibrationCoreMovieScene_classes.hpp │ │ ├── CameraCalibrationCoreMovieScene_parameters.hpp │ │ ├── CameraCalibrationCoreMovieScene_structs.hpp │ │ ├── CameraCalibrationCore_classes.hpp │ │ ├── CameraCalibrationCore_parameters.hpp │ │ ├── CameraCalibrationCore_structs.hpp │ │ ├── CapsuleTraceRotation_classes.hpp │ │ ├── CapsuleTraceRotation_parameters.hpp │ │ ├── CapsuleTraceRotation_structs.hpp │ │ ├── ChaosCaching_classes.hpp │ │ ├── ChaosCaching_parameters.hpp │ │ ├── ChaosCaching_structs.hpp │ │ ├── ChaosCloth_classes.hpp │ │ ├── ChaosCloth_parameters.hpp │ │ ├── ChaosCloth_structs.hpp │ │ ├── ChaosNiagara_classes.hpp │ │ ├── ChaosNiagara_parameters.hpp │ │ ├── ChaosNiagara_structs.hpp │ │ ├── ChaosSolverEngine_classes.hpp │ │ ├── ChaosSolverEngine_parameters.hpp │ │ ├── ChaosSolverEngine_structs.hpp │ │ ├── Chaos_classes.hpp │ │ ├── Chaos_parameters.hpp │ │ ├── Chaos_structs.hpp │ │ ├── CinematicCamera_classes.hpp │ │ ├── CinematicCamera_parameters.hpp │ │ ├── CinematicCamera_structs.hpp │ │ ├── ClothingSystemRuntimeCommon_classes.hpp │ │ ├── ClothingSystemRuntimeCommon_parameters.hpp │ │ ├── ClothingSystemRuntimeCommon_structs.hpp │ │ ├── ClothingSystemRuntimeInterface_classes.hpp │ │ ├── ClothingSystemRuntimeInterface_parameters.hpp │ │ ├── ClothingSystemRuntimeInterface_structs.hpp │ │ ├── ClothingSystemRuntimeNv_classes.hpp │ │ ├── ClothingSystemRuntimeNv_parameters.hpp │ │ ├── ClothingSystemRuntimeNv_structs.hpp │ │ ├── CommonGame_classes.hpp │ │ ├── CommonGame_parameters.hpp │ │ ├── CommonGame_structs.hpp │ │ ├── CommonInput_classes.hpp │ │ ├── CommonInput_parameters.hpp │ │ ├── CommonInput_structs.hpp │ │ ├── CommonLoadingScreen_classes.hpp │ │ ├── CommonLoadingScreen_parameters.hpp │ │ ├── CommonLoadingScreen_structs.hpp │ │ ├── CommonUI_classes.hpp │ │ ├── CommonUI_parameters.hpp │ │ ├── CommonUI_structs.hpp │ │ ├── CommonUser_classes.hpp │ │ ├── CommonUser_parameters.hpp │ │ ├── CommonUser_structs.hpp │ │ ├── Composure_classes.hpp │ │ ├── Composure_parameters.hpp │ │ ├── Composure_structs.hpp │ │ ├── Constraints_classes.hpp │ │ ├── Constraints_parameters.hpp │ │ ├── Constraints_structs.hpp │ │ ├── ControlRigSpline_classes.hpp │ │ ├── ControlRigSpline_parameters.hpp │ │ ├── ControlRigSpline_structs.hpp │ │ ├── ControlRig_classes.hpp │ │ ├── ControlRig_parameters.hpp │ │ ├── ControlRig_structs.hpp │ │ ├── CoreOnline_classes.hpp │ │ ├── CoreOnline_parameters.hpp │ │ ├── CoreOnline_structs.hpp │ │ ├── CoreUObject_classes.hpp │ │ ├── CoreUObject_parameters.hpp │ │ ├── CoreUObject_structs.hpp │ │ ├── CustomMeshComponent_classes.hpp │ │ ├── CustomMeshComponent_parameters.hpp │ │ ├── CustomMeshComponent_structs.hpp │ │ ├── DLSSBlueprint_classes.hpp │ │ ├── DLSSBlueprint_parameters.hpp │ │ ├── DLSSBlueprint_structs.hpp │ │ ├── DLSS_classes.hpp │ │ ├── DLSS_parameters.hpp │ │ ├── DLSS_structs.hpp │ │ ├── DataRegistry_classes.hpp │ │ ├── DataRegistry_parameters.hpp │ │ ├── DataRegistry_structs.hpp │ │ ├── DataflowCore_classes.hpp │ │ ├── DataflowCore_parameters.hpp │ │ ├── DataflowCore_structs.hpp │ │ ├── DataflowEngine_classes.hpp │ │ ├── DataflowEngine_parameters.hpp │ │ ├── DataflowEngine_structs.hpp │ │ ├── DataflowNodes_classes.hpp │ │ ├── DataflowNodes_parameters.hpp │ │ ├── DataflowNodes_structs.hpp │ │ ├── DatasmithContent_classes.hpp │ │ ├── DatasmithContent_parameters.hpp │ │ ├── DatasmithContent_structs.hpp │ │ ├── DeveloperSettings_classes.hpp │ │ ├── DeveloperSettings_parameters.hpp │ │ ├── DeveloperSettings_structs.hpp │ │ ├── DmgTypeBP_Environmental_classes.hpp │ │ ├── DmgTypeBP_Environmental_parameters.hpp │ │ ├── DmgTypeBP_Environmental_structs.hpp │ │ ├── EEffectSpawnParametersType_classes.hpp │ │ ├── EEffectSpawnParametersType_parameters.hpp │ │ ├── EEffectSpawnParametersType_structs.hpp │ │ ├── EOtomoFollowState_classes.hpp │ │ ├── EOtomoFollowState_parameters.hpp │ │ ├── EOtomoFollowState_structs.hpp │ │ ├── EPalBoxHoveredSlotType_classes.hpp │ │ ├── EPalBoxHoveredSlotType_parameters.hpp │ │ ├── EPalBoxHoveredSlotType_structs.hpp │ │ ├── EPalCaptureReticleSeqence_classes.hpp │ │ ├── EPalCaptureReticleSeqence_parameters.hpp │ │ ├── EPalCaptureReticleSeqence_structs.hpp │ │ ├── EPalSphereCaptureFailedReason_classes.hpp │ │ ├── EPalSphereCaptureFailedReason_parameters.hpp │ │ ├── EPalSphereCaptureFailedReason_structs.hpp │ │ ├── EPalTreasureBoxVisualType_classes.hpp │ │ ├── EPalTreasureBoxVisualType_parameters.hpp │ │ ├── EPalTreasureBoxVisualType_structs.hpp │ │ ├── EPalUIPalInfoType_classes.hpp │ │ ├── EPalUIPalInfoType_parameters.hpp │ │ ├── EPalUIPalInfoType_structs.hpp │ │ ├── EPal_AI_AlertByKilledFriendState_classes.hpp │ │ ├── EPal_AI_AlertByKilledFriendState_parameters.hpp │ │ ├── EPal_AI_AlertByKilledFriendState_structs.hpp │ │ ├── EPal_NPC_CombatGunState_classes.hpp │ │ ├── EPal_NPC_CombatGunState_parameters.hpp │ │ ├── EPal_NPC_CombatGunState_structs.hpp │ │ ├── EPal_NPC_CombatMeleeState_classes.hpp │ │ ├── EPal_NPC_CombatMeleeState_parameters.hpp │ │ ├── EPal_NPC_CombatMeleeState_structs.hpp │ │ ├── ERideActionDirection_classes.hpp │ │ ├── ERideActionDirection_parameters.hpp │ │ ├── ERideActionDirection_structs.hpp │ │ ├── ERideActionState_classes.hpp │ │ ├── ERideActionState_parameters.hpp │ │ ├── ERideActionState_structs.hpp │ │ ├── EWarningPalAIMoveType_classes.hpp │ │ ├── EWarningPalAIMoveType_parameters.hpp │ │ ├── EWarningPalAIMoveType_structs.hpp │ │ ├── EWildPalAIMoveMode_classes.hpp │ │ ├── EWildPalAIMoveMode_parameters.hpp │ │ ├── EWildPalAIMoveMode_structs.hpp │ │ ├── EWildPalAIRestType_classes.hpp │ │ ├── EWildPalAIRestType_parameters.hpp │ │ ├── EWildPalAIRestType_structs.hpp │ │ ├── E_PalCaptureSphereBouncedReason_classes.hpp │ │ ├── E_PalCaptureSphereBouncedReason_parameters.hpp │ │ ├── E_PalCaptureSphereBouncedReason_structs.hpp │ │ ├── E_PalEmo_classes.hpp │ │ ├── E_PalEmo_parameters.hpp │ │ ├── E_PalEmo_structs.hpp │ │ ├── E_PalItemShopTabType_classes.hpp │ │ ├── E_PalItemShopTabType_parameters.hpp │ │ ├── E_PalItemShopTabType_structs.hpp │ │ ├── E_PalUIGuildHPGaugeDisplayType_classes.hpp │ │ ├── E_PalUIGuildHPGaugeDisplayType_parameters.hpp │ │ ├── E_PalUIGuildHPGaugeDisplayType_structs.hpp │ │ ├── E_PalUIPlayerDebuffNoticeType_classes.hpp │ │ ├── E_PalUIPlayerDebuffNoticeType_parameters.hpp │ │ ├── E_PalUIPlayerDebuffNoticeType_structs.hpp │ │ ├── E_PalUIThrowObjectNoneMessageType_classes.hpp │ │ ├── E_PalUIThrowObjectNoneMessageType_parameters.hpp │ │ ├── E_PalUIThrowObjectNoneMessageType_structs.hpp │ │ ├── E_UICharacterMakeCategory_classes.hpp │ │ ├── E_UICharacterMakeCategory_parameters.hpp │ │ ├── E_UICharacterMakeCategory_structs.hpp │ │ ├── EngineMessages_classes.hpp │ │ ├── EngineMessages_parameters.hpp │ │ ├── EngineMessages_structs.hpp │ │ ├── EngineSettings_classes.hpp │ │ ├── EngineSettings_parameters.hpp │ │ ├── EngineSettings_structs.hpp │ │ ├── Engine_classes.hpp │ │ ├── Engine_parameters.hpp │ │ ├── Engine_structs.hpp │ │ ├── EnhancedInput_classes.hpp │ │ ├── EnhancedInput_parameters.hpp │ │ ├── EnhancedInput_structs.hpp │ │ ├── EyeTracker_classes.hpp │ │ ├── EyeTracker_parameters.hpp │ │ ├── EyeTracker_structs.hpp │ │ ├── FPalPartnerSkillIconData_classes.hpp │ │ ├── FPalPartnerSkillIconData_parameters.hpp │ │ ├── FPalPartnerSkillIconData_structs.hpp │ │ ├── FPalPresentLotteryDataTableRow_classes.hpp │ │ ├── FPalPresentLotteryDataTableRow_parameters.hpp │ │ ├── FPalPresentLotteryDataTableRow_structs.hpp │ │ ├── FPalRequestItemLotteryDataTableRow_classes.hpp │ │ ├── FPalRequestItemLotteryDataTableRow_parameters.hpp │ │ ├── FPalRequestItemLotteryDataTableRow_structs.hpp │ │ ├── FPalTechnologyIconData_classes.hpp │ │ ├── FPalTechnologyIconData_parameters.hpp │ │ ├── FPalTechnologyIconData_structs.hpp │ │ ├── FPalUIPalInfoDisplayData_classes.hpp │ │ ├── FPalUIPalInfoDisplayData_parameters.hpp │ │ ├── FPalUIPalInfoDisplayData_structs.hpp │ │ ├── FPassiveSkillCollectItemLotteryData_classes.hpp │ │ ├── FPassiveSkillCollectItemLotteryData_parameters.hpp │ │ ├── FPassiveSkillCollectItemLotteryData_structs.hpp │ │ ├── FSR2MovieRenderPipeline_classes.hpp │ │ ├── FSR2MovieRenderPipeline_parameters.hpp │ │ ├── FSR2MovieRenderPipeline_structs.hpp │ │ ├── FSR2TemporalUpscaling_classes.hpp │ │ ├── FSR2TemporalUpscaling_parameters.hpp │ │ ├── FSR2TemporalUpscaling_structs.hpp │ │ ├── F_NPCCampPreset_classes.hpp │ │ ├── F_NPCCampPreset_parameters.hpp │ │ ├── F_NPCCampPreset_structs.hpp │ │ ├── F_NPCOnePointSpawnInfo_classes.hpp │ │ ├── F_NPCOnePointSpawnInfo_parameters.hpp │ │ ├── F_NPCOnePointSpawnInfo_structs.hpp │ │ ├── F_NPC_PathWalkArray_classes.hpp │ │ ├── F_NPC_PathWalkArray_parameters.hpp │ │ ├── F_NPC_PathWalkArray_structs.hpp │ │ ├── F_NPC_PathWalkPoint_classes.hpp │ │ ├── F_NPC_PathWalkPoint_parameters.hpp │ │ ├── F_NPC_PathWalkPoint_structs.hpp │ │ ├── FacialAnimation_classes.hpp │ │ ├── FacialAnimation_parameters.hpp │ │ ├── FacialAnimation_structs.hpp │ │ ├── FieldSystemEngine_classes.hpp │ │ ├── FieldSystemEngine_parameters.hpp │ │ ├── FieldSystemEngine_structs.hpp │ │ ├── Foliage_classes.hpp │ │ ├── Foliage_parameters.hpp │ │ ├── Foliage_structs.hpp │ │ ├── FullBodyIK_classes.hpp │ │ ├── FullBodyIK_parameters.hpp │ │ ├── FullBodyIK_structs.hpp │ │ ├── FunctionalTesting_classes.hpp │ │ ├── FunctionalTesting_parameters.hpp │ │ ├── FunctionalTesting_structs.hpp │ │ ├── GLTFExporter_classes.hpp │ │ ├── GLTFExporter_parameters.hpp │ │ ├── GLTFExporter_structs.hpp │ │ ├── GameFeatures_classes.hpp │ │ ├── GameFeatures_parameters.hpp │ │ ├── GameFeatures_structs.hpp │ │ ├── GameplayCameras_classes.hpp │ │ ├── GameplayCameras_parameters.hpp │ │ ├── GameplayCameras_structs.hpp │ │ ├── GameplayTags_classes.hpp │ │ ├── GameplayTags_parameters.hpp │ │ ├── GameplayTags_structs.hpp │ │ ├── GameplayTasks_classes.hpp │ │ ├── GameplayTasks_parameters.hpp │ │ ├── GameplayTasks_structs.hpp │ │ ├── GeometryCacheTracks_classes.hpp │ │ ├── GeometryCacheTracks_parameters.hpp │ │ ├── GeometryCacheTracks_structs.hpp │ │ ├── GeometryCache_classes.hpp │ │ ├── GeometryCache_parameters.hpp │ │ ├── GeometryCache_structs.hpp │ │ ├── GeometryCollectionEngine_classes.hpp │ │ ├── GeometryCollectionEngine_parameters.hpp │ │ ├── GeometryCollectionEngine_structs.hpp │ │ ├── GeometryCollectionNodes_classes.hpp │ │ ├── GeometryCollectionNodes_parameters.hpp │ │ ├── GeometryCollectionNodes_structs.hpp │ │ ├── GeometryCollectionTracks_classes.hpp │ │ ├── GeometryCollectionTracks_parameters.hpp │ │ ├── GeometryCollectionTracks_structs.hpp │ │ ├── GeometryFramework_classes.hpp │ │ ├── GeometryFramework_parameters.hpp │ │ ├── GeometryFramework_structs.hpp │ │ ├── GooglePAD_classes.hpp │ │ ├── GooglePAD_parameters.hpp │ │ ├── GooglePAD_structs.hpp │ │ ├── HeadMountedDisplay_classes.hpp │ │ ├── HeadMountedDisplay_parameters.hpp │ │ ├── HeadMountedDisplay_structs.hpp │ │ ├── Hotfix_classes.hpp │ │ ├── Hotfix_parameters.hpp │ │ ├── Hotfix_structs.hpp │ │ ├── HoudiniEngineRuntime_classes.hpp │ │ ├── HoudiniEngineRuntime_parameters.hpp │ │ ├── HoudiniEngineRuntime_structs.hpp │ │ ├── HttpBlueprint_classes.hpp │ │ ├── HttpBlueprint_parameters.hpp │ │ ├── HttpBlueprint_structs.hpp │ │ ├── HttpNetworkReplayStreaming_classes.hpp │ │ ├── HttpNetworkReplayStreaming_parameters.hpp │ │ ├── HttpNetworkReplayStreaming_structs.hpp │ │ ├── IKRig_classes.hpp │ │ ├── IKRig_parameters.hpp │ │ ├── IKRig_structs.hpp │ │ ├── ImGui_classes.hpp │ │ ├── ImGui_parameters.hpp │ │ ├── ImGui_structs.hpp │ │ ├── ImageWriteQueue_classes.hpp │ │ ├── ImageWriteQueue_parameters.hpp │ │ ├── ImageWriteQueue_structs.hpp │ │ ├── ImgMediaEngine_classes.hpp │ │ ├── ImgMediaEngine_parameters.hpp │ │ ├── ImgMediaEngine_structs.hpp │ │ ├── ImgMediaFactory_classes.hpp │ │ ├── ImgMediaFactory_parameters.hpp │ │ ├── ImgMediaFactory_structs.hpp │ │ ├── ImgMedia_classes.hpp │ │ ├── ImgMedia_parameters.hpp │ │ ├── ImgMedia_structs.hpp │ │ ├── InputCore_classes.hpp │ │ ├── InputCore_parameters.hpp │ │ ├── InputCore_structs.hpp │ │ ├── InteractiveToolsFramework_classes.hpp │ │ ├── InteractiveToolsFramework_parameters.hpp │ │ ├── InteractiveToolsFramework_structs.hpp │ │ ├── IrisStub_classes.hpp │ │ ├── IrisStub_parameters.hpp │ │ ├── IrisStub_structs.hpp │ │ ├── JsonBlueprintUtilities_classes.hpp │ │ ├── JsonBlueprintUtilities_parameters.hpp │ │ ├── JsonBlueprintUtilities_structs.hpp │ │ ├── JsonUtilities_classes.hpp │ │ ├── JsonUtilities_parameters.hpp │ │ ├── JsonUtilities_structs.hpp │ │ ├── KawaiiPhysics_classes.hpp │ │ ├── KawaiiPhysics_parameters.hpp │ │ ├── KawaiiPhysics_structs.hpp │ │ ├── Landmass_classes.hpp │ │ ├── Landmass_parameters.hpp │ │ ├── Landmass_structs.hpp │ │ ├── Landscape_classes.hpp │ │ ├── Landscape_parameters.hpp │ │ ├── Landscape_structs.hpp │ │ ├── LevelSequence_classes.hpp │ │ ├── LevelSequence_parameters.hpp │ │ ├── LevelSequence_structs.hpp │ │ ├── LimitVolumeBox_BossStage_classes.hpp │ │ ├── LimitVolumeBox_BossStage_parameters.hpp │ │ ├── LimitVolumeBox_BossStage_structs.hpp │ │ ├── LimitVolumeBox_GrassTest_classes.hpp │ │ ├── LimitVolumeBox_GrassTest_parameters.hpp │ │ ├── LimitVolumeBox_GrassTest_structs.hpp │ │ ├── LimitVolumeBox_classes.hpp │ │ ├── LimitVolumeBox_parameters.hpp │ │ ├── LimitVolumeBox_structs.hpp │ │ ├── LiveLinkAnimationCore_classes.hpp │ │ ├── LiveLinkAnimationCore_parameters.hpp │ │ ├── LiveLinkAnimationCore_structs.hpp │ │ ├── LiveLinkCamera_classes.hpp │ │ ├── LiveLinkCamera_parameters.hpp │ │ ├── LiveLinkCamera_structs.hpp │ │ ├── LiveLinkComponents_classes.hpp │ │ ├── LiveLinkComponents_parameters.hpp │ │ ├── LiveLinkComponents_structs.hpp │ │ ├── LiveLinkInterface_classes.hpp │ │ ├── LiveLinkInterface_parameters.hpp │ │ ├── LiveLinkInterface_structs.hpp │ │ ├── LiveLinkMessageBusFramework_classes.hpp │ │ ├── LiveLinkMessageBusFramework_parameters.hpp │ │ ├── LiveLinkMessageBusFramework_structs.hpp │ │ ├── LiveLinkMovieScene_classes.hpp │ │ ├── LiveLinkMovieScene_parameters.hpp │ │ ├── LiveLinkMovieScene_structs.hpp │ │ ├── LiveLink_classes.hpp │ │ ├── LiveLink_parameters.hpp │ │ ├── LiveLink_structs.hpp │ │ ├── Lobby_classes.hpp │ │ ├── Lobby_parameters.hpp │ │ ├── Lobby_structs.hpp │ │ ├── LocalFileNetworkReplayStreaming_classes.hpp │ │ ├── LocalFileNetworkReplayStreaming_parameters.hpp │ │ ├── LocalFileNetworkReplayStreaming_structs.hpp │ │ ├── Localization_classes.hpp │ │ ├── Localization_parameters.hpp │ │ ├── Localization_structs.hpp │ │ ├── LocationServicesBPLibrary_classes.hpp │ │ ├── LocationServicesBPLibrary_parameters.hpp │ │ ├── LocationServicesBPLibrary_structs.hpp │ │ ├── MRMesh_classes.hpp │ │ ├── MRMesh_parameters.hpp │ │ ├── MRMesh_structs.hpp │ │ ├── MaterialShaderQualitySettings_classes.hpp │ │ ├── MaterialShaderQualitySettings_parameters.hpp │ │ ├── MaterialShaderQualitySettings_structs.hpp │ │ ├── MediaAssets_classes.hpp │ │ ├── MediaAssets_parameters.hpp │ │ ├── MediaAssets_structs.hpp │ │ ├── MediaCompositing_classes.hpp │ │ ├── MediaCompositing_parameters.hpp │ │ ├── MediaCompositing_structs.hpp │ │ ├── MediaIOCore_classes.hpp │ │ ├── MediaIOCore_parameters.hpp │ │ ├── MediaIOCore_structs.hpp │ │ ├── MediaPlate_classes.hpp │ │ ├── MediaPlate_parameters.hpp │ │ ├── MediaPlate_structs.hpp │ │ ├── MediaUtils_classes.hpp │ │ ├── MediaUtils_parameters.hpp │ │ ├── MediaUtils_structs.hpp │ │ ├── MeshDescription_classes.hpp │ │ ├── MeshDescription_parameters.hpp │ │ ├── MeshDescription_structs.hpp │ │ ├── MeshModelingToolsExp_classes.hpp │ │ ├── MeshModelingToolsExp_parameters.hpp │ │ ├── MeshModelingToolsExp_structs.hpp │ │ ├── MeshModelingTools_classes.hpp │ │ ├── MeshModelingTools_parameters.hpp │ │ ├── MeshModelingTools_structs.hpp │ │ ├── MeshToSpawnAlong_classes.hpp │ │ ├── MeshToSpawnAlong_parameters.hpp │ │ ├── MeshToSpawnAlong_structs.hpp │ │ ├── MetasoundEngine_classes.hpp │ │ ├── MetasoundEngine_parameters.hpp │ │ ├── MetasoundEngine_structs.hpp │ │ ├── MetasoundFrontend_classes.hpp │ │ ├── MetasoundFrontend_parameters.hpp │ │ ├── MetasoundFrontend_structs.hpp │ │ ├── MobilePatchingUtils_classes.hpp │ │ ├── MobilePatchingUtils_parameters.hpp │ │ ├── MobilePatchingUtils_structs.hpp │ │ ├── ModelingComponents_classes.hpp │ │ ├── ModelingComponents_parameters.hpp │ │ ├── ModelingComponents_structs.hpp │ │ ├── ModelingOperators_classes.hpp │ │ ├── ModelingOperators_parameters.hpp │ │ ├── ModelingOperators_structs.hpp │ │ ├── ModularGameplayActors_classes.hpp │ │ ├── ModularGameplayActors_parameters.hpp │ │ ├── ModularGameplayActors_structs.hpp │ │ ├── ModularGameplay_classes.hpp │ │ ├── ModularGameplay_parameters.hpp │ │ ├── ModularGameplay_structs.hpp │ │ ├── MotionWarping_classes.hpp │ │ ├── MotionWarping_parameters.hpp │ │ ├── MotionWarping_structs.hpp │ │ ├── MoviePlayer_classes.hpp │ │ ├── MoviePlayer_parameters.hpp │ │ ├── MoviePlayer_structs.hpp │ │ ├── MovieRenderPipelineCore_classes.hpp │ │ ├── MovieRenderPipelineCore_parameters.hpp │ │ ├── MovieRenderPipelineCore_structs.hpp │ │ ├── MovieRenderPipelineRenderPasses_classes.hpp │ │ ├── MovieRenderPipelineRenderPasses_parameters.hpp │ │ ├── MovieRenderPipelineRenderPasses_structs.hpp │ │ ├── MovieRenderPipelineSettings_classes.hpp │ │ ├── MovieRenderPipelineSettings_parameters.hpp │ │ ├── MovieRenderPipelineSettings_structs.hpp │ │ ├── MovieSceneCapture_classes.hpp │ │ ├── MovieSceneCapture_parameters.hpp │ │ ├── MovieSceneCapture_structs.hpp │ │ ├── MovieSceneTracks_classes.hpp │ │ ├── MovieSceneTracks_parameters.hpp │ │ ├── MovieSceneTracks_structs.hpp │ │ ├── MovieScene_classes.hpp │ │ ├── MovieScene_parameters.hpp │ │ ├── MovieScene_structs.hpp │ │ ├── NISBlueprint_classes.hpp │ │ ├── NISBlueprint_parameters.hpp │ │ ├── NISBlueprint_structs.hpp │ │ ├── NavigationSystem_classes.hpp │ │ ├── NavigationSystem_parameters.hpp │ │ ├── NavigationSystem_structs.hpp │ │ ├── NetCore_classes.hpp │ │ ├── NetCore_parameters.hpp │ │ ├── NetCore_structs.hpp │ │ ├── NiagaraAnimNotifies_classes.hpp │ │ ├── NiagaraAnimNotifies_parameters.hpp │ │ ├── NiagaraAnimNotifies_structs.hpp │ │ ├── NiagaraCore_classes.hpp │ │ ├── NiagaraCore_parameters.hpp │ │ ├── NiagaraCore_structs.hpp │ │ ├── NiagaraShader_classes.hpp │ │ ├── NiagaraShader_parameters.hpp │ │ ├── NiagaraShader_structs.hpp │ │ ├── NiagaraUIRenderer_classes.hpp │ │ ├── NiagaraUIRenderer_parameters.hpp │ │ ├── NiagaraUIRenderer_structs.hpp │ │ ├── Niagara_classes.hpp │ │ ├── Niagara_parameters.hpp │ │ ├── Niagara_structs.hpp │ │ ├── OnlineSubsystemEOS_classes.hpp │ │ ├── OnlineSubsystemEOS_parameters.hpp │ │ ├── OnlineSubsystemEOS_structs.hpp │ │ ├── OnlineSubsystemSteam_classes.hpp │ │ ├── OnlineSubsystemSteam_parameters.hpp │ │ ├── OnlineSubsystemSteam_structs.hpp │ │ ├── OnlineSubsystemUtils_classes.hpp │ │ ├── OnlineSubsystemUtils_parameters.hpp │ │ ├── OnlineSubsystemUtils_structs.hpp │ │ ├── OnlineSubsystem_classes.hpp │ │ ├── OnlineSubsystem_parameters.hpp │ │ ├── OnlineSubsystem_structs.hpp │ │ ├── OodleNetworkHandlerComponent_classes.hpp │ │ ├── OodleNetworkHandlerComponent_parameters.hpp │ │ ├── OodleNetworkHandlerComponent_structs.hpp │ │ ├── OpenColorIO_classes.hpp │ │ ├── OpenColorIO_parameters.hpp │ │ ├── OpenColorIO_structs.hpp │ │ ├── Overlay_classes.hpp │ │ ├── Overlay_parameters.hpp │ │ ├── Overlay_structs.hpp │ │ ├── PBIK_classes.hpp │ │ ├── PBIK_parameters.hpp │ │ ├── PBIK_structs.hpp │ │ ├── PL_MainWorld5_classes.hpp │ │ ├── PL_MainWorld5_parameters.hpp │ │ ├── PL_MainWorld5_structs.hpp │ │ ├── PPSkyCreatorPlugin_classes.hpp │ │ ├── PPSkyCreatorPlugin_parameters.hpp │ │ ├── PPSkyCreatorPlugin_structs.hpp │ │ ├── PPSkyCreator_ControllerExample_classes.hpp │ │ ├── PPSkyCreator_ControllerExample_parameters.hpp │ │ ├── PPSkyCreator_ControllerExample_structs.hpp │ │ ├── PRESET_Flowers1_BP_classes.hpp │ │ ├── PRESET_Flowers1_BP_parameters.hpp │ │ ├── PRESET_Flowers1_BP_structs.hpp │ │ ├── PRESET_FlowersAndLeaves_BP_classes.hpp │ │ ├── PRESET_FlowersAndLeaves_BP_parameters.hpp │ │ ├── PRESET_FlowersAndLeaves_BP_structs.hpp │ │ ├── PRESET_Ivy1_BP_classes.hpp │ │ ├── PRESET_Ivy1_BP_parameters.hpp │ │ ├── PRESET_Ivy1_BP_structs.hpp │ │ ├── PRESET_Ivy1_Var3_BP_classes.hpp │ │ ├── PRESET_Ivy1_Var3_BP_parameters.hpp │ │ ├── PRESET_Ivy1_Var3_BP_structs.hpp │ │ ├── PRESET_Ivy1_WithBridges_BP_classes.hpp │ │ ├── PRESET_Ivy1_WithBridges_BP_parameters.hpp │ │ ├── PRESET_Ivy1_WithBridges_BP_structs.hpp │ │ ├── PRESET_IvySingleLeaf1_BP_classes.hpp │ │ ├── PRESET_IvySingleLeaf1_BP_parameters.hpp │ │ ├── PRESET_IvySingleLeaf1_BP_structs.hpp │ │ ├── PRESET_IvySingleStrand_BP_classes.hpp │ │ ├── PRESET_IvySingleStrand_BP_parameters.hpp │ │ ├── PRESET_IvySingleStrand_BP_structs.hpp │ │ ├── PRESET_Ivy_SlowerLeaves_BP_classes.hpp │ │ ├── PRESET_Ivy_SlowerLeaves_BP_parameters.hpp │ │ ├── PRESET_Ivy_SlowerLeaves_BP_structs.hpp │ │ ├── PRESET_Liana1_BP_classes.hpp │ │ ├── PRESET_Liana1_BP_parameters.hpp │ │ ├── PRESET_Liana1_BP_structs.hpp │ │ ├── PacketHandler_classes.hpp │ │ ├── PacketHandler_parameters.hpp │ │ ├── PacketHandler_structs.hpp │ │ ├── PalBossBattleSequence_Combat_classes.hpp │ │ ├── PalBossBattleSequence_Combat_parameters.hpp │ │ ├── PalBossBattleSequence_Combat_structs.hpp │ │ ├── PalBossBattleSequence_Completed_classes.hpp │ │ ├── PalBossBattleSequence_Completed_parameters.hpp │ │ ├── PalBossBattleSequence_Completed_structs.hpp │ │ ├── PalBossBattleSequence_Ending_classes.hpp │ │ ├── PalBossBattleSequence_Ending_parameters.hpp │ │ ├── PalBossBattleSequence_Ending_structs.hpp │ │ ├── PalBossBattleSequence_Opening_classes.hpp │ │ ├── PalBossBattleSequence_Opening_parameters.hpp │ │ ├── PalBossBattleSequence_Opening_structs.hpp │ │ ├── Pal_classes.hpp │ │ ├── Pal_parameters.hpp │ │ ├── Pal_structs.hpp │ │ ├── Paper2D_classes.hpp │ │ ├── Paper2D_parameters.hpp │ │ ├── Paper2D_structs.hpp │ │ ├── Party_classes.hpp │ │ ├── Party_parameters.hpp │ │ ├── Party_structs.hpp │ │ ├── PhysicsCore_classes.hpp │ │ ├── PhysicsCore_parameters.hpp │ │ ├── PhysicsCore_structs.hpp │ │ ├── PlacementTools_classes.hpp │ │ ├── PlacementTools_parameters.hpp │ │ ├── PlacementTools_structs.hpp │ │ ├── PocketpairUser_classes.hpp │ │ ├── PocketpairUser_parameters.hpp │ │ ├── PocketpairUser_structs.hpp │ │ ├── ProceduralMeshComponent_classes.hpp │ │ ├── ProceduralMeshComponent_parameters.hpp │ │ ├── ProceduralMeshComponent_structs.hpp │ │ ├── ProfilerMessages_classes.hpp │ │ ├── ProfilerMessages_parameters.hpp │ │ ├── ProfilerMessages_structs.hpp │ │ ├── PropertyPath_classes.hpp │ │ ├── PropertyPath_parameters.hpp │ │ ├── PropertyPath_structs.hpp │ │ ├── Qos_classes.hpp │ │ ├── Qos_parameters.hpp │ │ ├── Qos_structs.hpp │ │ ├── Rejoin_classes.hpp │ │ ├── Rejoin_parameters.hpp │ │ ├── Rejoin_structs.hpp │ │ ├── ReplicationGraph_classes.hpp │ │ ├── ReplicationGraph_parameters.hpp │ │ ├── ReplicationGraph_structs.hpp │ │ ├── ResonanceAudio_classes.hpp │ │ ├── ResonanceAudio_parameters.hpp │ │ ├── ResonanceAudio_structs.hpp │ │ ├── RigVM_classes.hpp │ │ ├── RigVM_parameters.hpp │ │ ├── RigVM_structs.hpp │ │ ├── RiverSplineElement_classes.hpp │ │ ├── RiverSplineElement_parameters.hpp │ │ ├── RiverSplineElement_structs.hpp │ │ ├── S_PPSkyCreatorTimePreset_classes.hpp │ │ ├── S_PPSkyCreatorTimePreset_parameters.hpp │ │ ├── S_PPSkyCreatorTimePreset_structs.hpp │ │ ├── S_PalBiomeEffect_classes.hpp │ │ ├── S_PalBiomeEffect_parameters.hpp │ │ ├── S_PalBiomeEffect_structs.hpp │ │ ├── ScreenShotComparisonTools_classes.hpp │ │ ├── ScreenShotComparisonTools_parameters.hpp │ │ ├── ScreenShotComparisonTools_structs.hpp │ │ ├── SequencerScripting_classes.hpp │ │ ├── SequencerScripting_parameters.hpp │ │ ├── SequencerScripting_structs.hpp │ │ ├── Serialization_classes.hpp │ │ ├── Serialization_parameters.hpp │ │ ├── Serialization_structs.hpp │ │ ├── SessionMessages_classes.hpp │ │ ├── SessionMessages_parameters.hpp │ │ ├── SessionMessages_structs.hpp │ │ ├── SignificanceManager_classes.hpp │ │ ├── SignificanceManager_parameters.hpp │ │ ├── SignificanceManager_structs.hpp │ │ ├── SkelMeshToSpawnAlong_classes.hpp │ │ ├── SkelMeshToSpawnAlong_parameters.hpp │ │ ├── SkelMeshToSpawnAlong_structs.hpp │ │ ├── SkyCreatorPlugin_classes.hpp │ │ ├── SkyCreatorPlugin_parameters.hpp │ │ ├── SkyCreatorPlugin_structs.hpp │ │ ├── SlateCore_classes.hpp │ │ ├── SlateCore_parameters.hpp │ │ ├── SlateCore_structs.hpp │ │ ├── SlateReflector_classes.hpp │ │ ├── SlateReflector_parameters.hpp │ │ ├── SlateReflector_structs.hpp │ │ ├── Slate_classes.hpp │ │ ├── Slate_parameters.hpp │ │ ├── Slate_structs.hpp │ │ ├── SocketSubsystemEOS_classes.hpp │ │ ├── SocketSubsystemEOS_parameters.hpp │ │ ├── SocketSubsystemEOS_structs.hpp │ │ ├── SoundFields_classes.hpp │ │ ├── SoundFields_parameters.hpp │ │ ├── SoundFields_structs.hpp │ │ ├── SourceControl_classes.hpp │ │ ├── SourceControl_parameters.hpp │ │ ├── SourceControl_structs.hpp │ │ ├── SplineAttachment_classes.hpp │ │ ├── SplineAttachment_parameters.hpp │ │ ├── SplineAttachment_structs.hpp │ │ ├── SplineObject_classes.hpp │ │ ├── SplineObject_parameters.hpp │ │ ├── SplineObject_structs.hpp │ │ ├── SplineTarget_BP_classes.hpp │ │ ├── SplineTarget_BP_parameters.hpp │ │ ├── SplineTarget_BP_structs.hpp │ │ ├── SplinesInEditor_classes.hpp │ │ ├── SplinesInEditor_parameters.hpp │ │ ├── SplinesInEditor_structs.hpp │ │ ├── SpreadSheetToCsv_classes.hpp │ │ ├── SpreadSheetToCsv_parameters.hpp │ │ ├── SpreadSheetToCsv_structs.hpp │ │ ├── StaticMeshDescription_classes.hpp │ │ ├── StaticMeshDescription_parameters.hpp │ │ ├── StaticMeshDescription_structs.hpp │ │ ├── SteamSockets_classes.hpp │ │ ├── SteamSockets_parameters.hpp │ │ ├── SteamSockets_structs.hpp │ │ ├── StemSpline_BP_classes.hpp │ │ ├── StemSpline_BP_parameters.hpp │ │ ├── StemSpline_BP_structs.hpp │ │ ├── SubStemStarter_classes.hpp │ │ ├── SubStemStarter_parameters.hpp │ │ ├── SubStemStarter_structs.hpp │ │ ├── SunPosition_classes.hpp │ │ ├── SunPosition_parameters.hpp │ │ ├── SunPosition_structs.hpp │ │ ├── SunSky_classes.hpp │ │ ├── SunSky_parameters.hpp │ │ ├── SunSky_structs.hpp │ │ ├── Synthesis_classes.hpp │ │ ├── Synthesis_parameters.hpp │ │ ├── Synthesis_structs.hpp │ │ ├── TakeMovieScene_classes.hpp │ │ ├── TakeMovieScene_parameters.hpp │ │ ├── TakeMovieScene_structs.hpp │ │ ├── TcpMessaging_classes.hpp │ │ ├── TcpMessaging_parameters.hpp │ │ ├── TcpMessaging_structs.hpp │ │ ├── TemplateSequence_classes.hpp │ │ ├── TemplateSequence_parameters.hpp │ │ ├── TemplateSequence_structs.hpp │ │ ├── TimeManagement_classes.hpp │ │ ├── TimeManagement_parameters.hpp │ │ ├── TimeManagement_structs.hpp │ │ ├── ToolMenus_classes.hpp │ │ ├── ToolMenus_parameters.hpp │ │ ├── ToolMenus_structs.hpp │ │ ├── ToolWidgets_classes.hpp │ │ ├── ToolWidgets_parameters.hpp │ │ ├── ToolWidgets_structs.hpp │ │ ├── TraceUtilities_classes.hpp │ │ ├── TraceUtilities_parameters.hpp │ │ ├── TraceUtilities_structs.hpp │ │ ├── TypedElementFramework_classes.hpp │ │ ├── TypedElementFramework_parameters.hpp │ │ ├── TypedElementFramework_structs.hpp │ │ ├── TypedElementRuntime_classes.hpp │ │ ├── TypedElementRuntime_parameters.hpp │ │ ├── TypedElementRuntime_structs.hpp │ │ ├── UMG_classes.hpp │ │ ├── UMG_parameters.hpp │ │ ├── UMG_structs.hpp │ │ ├── UObjectPlugin_classes.hpp │ │ ├── UObjectPlugin_parameters.hpp │ │ ├── UObjectPlugin_structs.hpp │ │ ├── UdpMessaging_classes.hpp │ │ ├── UdpMessaging_parameters.hpp │ │ ├── UdpMessaging_structs.hpp │ │ ├── UnrealEdMessages_classes.hpp │ │ ├── UnrealEdMessages_parameters.hpp │ │ ├── UnrealEdMessages_structs.hpp │ │ ├── VariantManagerContent_classes.hpp │ │ ├── VariantManagerContent_parameters.hpp │ │ ├── VariantManagerContent_structs.hpp │ │ ├── VectorVM_classes.hpp │ │ ├── VectorVM_parameters.hpp │ │ ├── VectorVM_structs.hpp │ │ ├── Water_classes.hpp │ │ ├── Water_parameters.hpp │ │ ├── Water_structs.hpp │ │ ├── WaveTable_classes.hpp │ │ ├── WaveTable_parameters.hpp │ │ ├── WaveTable_structs.hpp │ │ ├── WebBrowserWidget_classes.hpp │ │ ├── WebBrowserWidget_parameters.hpp │ │ ├── WebBrowserWidget_structs.hpp │ │ ├── WebBrowser_classes.hpp │ │ ├── WebBrowser_parameters.hpp │ │ ├── WebBrowser_structs.hpp │ │ ├── WidgetCarousel_classes.hpp │ │ ├── WidgetCarousel_parameters.hpp │ │ └── WidgetCarousel_structs.hpp │ └── SDKDirect.h ├── types.h └── utils.h ├── src ├── commands │ ├── broadcast.cpp │ ├── garbage_collection.cpp │ ├── kick_player.cpp │ └── list_player.cpp ├── common_player_data.cpp ├── console.cpp ├── engine_functions.cpp ├── ev_test │ └── ev_test.cpp ├── events.cpp ├── hooks │ ├── add_item.cpp │ ├── hooks_install.cpp │ ├── process_event.cpp │ ├── send_damage.cpp │ ├── spawn_play_actor.cpp │ └── update_name.cpp ├── os │ ├── linux │ │ ├── libentry │ │ │ └── libentry.cpp │ │ ├── unrealsdk.cpp │ │ └── utils.cpp │ └── windows │ │ ├── libentry │ │ └── libentry.cpp │ │ ├── unrealsdk.cpp │ │ └── utils.cpp ├── pal_loader_core.cpp └── sdk │ ├── sdk-basic.cpp │ ├── sdk-engine-core.cpp │ ├── sdk-palcamestateingame.cpp │ └── sdk-upalutility.cpp └── xmake.lua /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/build-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/.github/workflows/build-windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | .xmake 3 | .vscode/compile_commands.json 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/README.md -------------------------------------------------------------------------------- /bin/linux-musl-x86_64/libnethost.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/bin/linux-musl-x86_64/libnethost.a -------------------------------------------------------------------------------- /bin/linux-x86_64/libnethost.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/bin/linux-x86_64/libnethost.a -------------------------------------------------------------------------------- /bin/windows-x86-64/libnethost.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/bin/windows-x86-64/libnethost.lib -------------------------------------------------------------------------------- /bin/windows-x86-64/libnethost.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/bin/windows-x86-64/libnethost.pdb -------------------------------------------------------------------------------- /include/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/commands.h -------------------------------------------------------------------------------- /include/common_entry.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | void pal_loader_thread_start(); -------------------------------------------------------------------------------- /include/common_player_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/common_player_data.h -------------------------------------------------------------------------------- /include/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/console.h -------------------------------------------------------------------------------- /include/dotnet/coreclr_delegates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/dotnet/coreclr_delegates.h -------------------------------------------------------------------------------- /include/dotnet/hostfxr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/dotnet/hostfxr.h -------------------------------------------------------------------------------- /include/dotnet/nethost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/dotnet/nethost.h -------------------------------------------------------------------------------- /include/engine_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/engine_functions.h -------------------------------------------------------------------------------- /include/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/events.h -------------------------------------------------------------------------------- /include/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/hooks.h -------------------------------------------------------------------------------- /include/lockfree_queue_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/lockfree_queue_sink.h -------------------------------------------------------------------------------- /include/os/linux/sdk/platform_sdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/os/linux/sdk/platform_sdk.h -------------------------------------------------------------------------------- /include/os/windows/sdk/platform_sdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/os/windows/sdk/platform_sdk.h -------------------------------------------------------------------------------- /include/sdk/PropertyFixup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/PropertyFixup.hpp -------------------------------------------------------------------------------- /include/sdk/SDK.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ABP_NPC_Base_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ABP_NPC_Base_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AIModule_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AIModule_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AIModule_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AIModule_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AIModule_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AIModule_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ALI_HumanCloth_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ALI_HumanCloth_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ALI_HumanCloth_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ALI_HumanCloth_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ALI_HumanCloth_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ALI_HumanCloth_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ALI_HumanHair_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ALI_HumanHair_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ALI_HumanHair_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ALI_HumanHair_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ALI_HumanHair_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ALI_HumanHair_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ALI_NPC_HairCloth_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ALI_NPC_HairCloth_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ALI_NPC_HairCloth_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ALI_NPC_HairCloth_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ALI_NPC_HairCloth_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ALI_NPC_HairCloth_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ALI_PalmiSubFunction_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ALI_PalmiSubFunction_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ALI_PalmiSubFunction_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ALI_PalmiSubFunction_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ALI_PalmiSubFunction_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ALI_PalmiSubFunction_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ActorLayerUtilities_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ActorLayerUtilities_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ActorLayerUtilities_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ActorLayerUtilities_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ActorLayerUtilities_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ActorLayerUtilities_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ActorSequence_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ActorSequence_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ActorSequence_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ActorSequence_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ActorSequence_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ActorSequence_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AdditionalCascades_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AdditionalCascades_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AdditionalCascades_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AdditionalCascades_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AdditionalCascades_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AdditionalCascades_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AdvancedWidgets_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AdvancedWidgets_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AdvancedWidgets_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AdvancedWidgets_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AdvancedWidgets_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AdvancedWidgets_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AkAudio_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AkAudio_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AkAudio_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AkAudio_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AkAudio_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AkAudio_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AndroidFileServer_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AndroidFileServer_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AndroidFileServer_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AndroidFileServer_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AndroidFileServer_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AndroidFileServer_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AndroidPermission_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AndroidPermission_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AndroidPermission_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AndroidPermission_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AndroidPermission_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AndroidPermission_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AnimGraphRuntime_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AnimGraphRuntime_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AnimGraphRuntime_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AnimGraphRuntime_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AnimGraphRuntime_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AnimGraphRuntime_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AnimNotify_AkEvent_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AnimNotify_AkEvent_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AnimNotify_AkEvent_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AnimNotify_AkEvent_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AnimNotify_AkEvent_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AnimNotify_AkEvent_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AnimationCore_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AnimationCore_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AnimationCore_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AnimationCore_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AnimationCore_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AnimationCore_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AnimationSharing_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AnimationSharing_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AnimationSharing_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AnimationSharing_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AnimationSharing_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AnimationSharing_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ApexDestruction_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ApexDestruction_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ApexDestruction_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ApexDestruction_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ApexDestruction_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ApexDestruction_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AppleImageUtils_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AppleImageUtils_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AppleImageUtils_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AppleImageUtils_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AppleImageUtils_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AppleImageUtils_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ArchVisCharacter_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ArchVisCharacter_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ArchVisCharacter_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ArchVisCharacter_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ArchVisCharacter_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ArchVisCharacter_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AssetRegistry_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AssetRegistry_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AssetRegistry_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AssetRegistry_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AssetRegistry_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AssetRegistry_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AssetTags_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AssetTags_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AssetTags_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AssetTags_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AssetTags_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AssetTags_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AudioAnalyzer_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AudioAnalyzer_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AudioAnalyzer_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AudioAnalyzer_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AudioAnalyzer_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AudioAnalyzer_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AudioCapture_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AudioCapture_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AudioCapture_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AudioCapture_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AudioCapture_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AudioCapture_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AudioExtensions_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AudioExtensions_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AudioExtensions_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AudioExtensions_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AudioExtensions_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AudioExtensions_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AudioLinkCore_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AudioLinkCore_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AudioLinkCore_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AudioLinkCore_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AudioLinkCore_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AudioLinkCore_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AudioLinkEngine_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AudioLinkEngine_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AudioLinkEngine_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AudioLinkEngine_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AudioLinkEngine_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AudioLinkEngine_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AudioMixer_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AudioMixer_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AudioMixer_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AudioMixer_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AudioMixer_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AudioMixer_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AudioSynesthesia_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AudioSynesthesia_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AudioSynesthesia_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AudioSynesthesia_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AudioSynesthesia_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AudioSynesthesia_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AudioWidgets_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AudioWidgets_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AudioWidgets_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AudioWidgets_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AudioWidgets_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AudioWidgets_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AugmentedReality_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AugmentedReality_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AugmentedReality_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AugmentedReality_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AugmentedReality_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AugmentedReality_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AutomationController_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AutomationController_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AutomationController_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AutomationController_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AutomationController_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AutomationController_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AutomationMessages_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AutomationMessages_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AutomationMessages_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AutomationMessages_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AutomationMessages_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AutomationMessages_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AutomationTest_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AutomationTest_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AutomationTest_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AutomationTest_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AutomationTest_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AutomationTest_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AutomationUtils_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AutomationUtils_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AutomationUtils_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AutomationUtils_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AutomationUtils_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AutomationUtils_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AvfMediaFactory_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AvfMediaFactory_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AvfMediaFactory_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AvfMediaFactory_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/AvfMediaFactory_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/AvfMediaFactory_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Basic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Basic.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/BuildPatchServices_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/BuildPatchServices_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/BuildPatchServices_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/BuildPatchServices_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/BuildPatchServices_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/BuildPatchServices_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CR_PlayerClavicleAdjust_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CR_PlayerClavicleAdjust_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CR_PlayerClavicleAdjust_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CR_PlayerClavicleAdjust_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CableComponent_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CableComponent_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CableComponent_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CableComponent_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CableComponent_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CableComponent_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CameraCalibrationCore_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CameraCalibrationCore_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CameraCalibrationCore_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CameraCalibrationCore_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CameraCalibrationCore_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CameraCalibrationCore_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CapsuleTraceRotation_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CapsuleTraceRotation_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CapsuleTraceRotation_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CapsuleTraceRotation_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CapsuleTraceRotation_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CapsuleTraceRotation_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ChaosCaching_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ChaosCaching_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ChaosCaching_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ChaosCaching_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ChaosCaching_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ChaosCaching_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ChaosCloth_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ChaosCloth_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ChaosCloth_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ChaosCloth_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ChaosCloth_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ChaosCloth_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ChaosNiagara_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ChaosNiagara_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ChaosNiagara_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ChaosNiagara_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ChaosNiagara_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ChaosNiagara_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ChaosSolverEngine_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ChaosSolverEngine_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ChaosSolverEngine_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ChaosSolverEngine_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ChaosSolverEngine_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ChaosSolverEngine_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Chaos_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Chaos_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Chaos_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Chaos_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Chaos_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Chaos_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CinematicCamera_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CinematicCamera_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CinematicCamera_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CinematicCamera_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CinematicCamera_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CinematicCamera_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ClothingSystemRuntimeNv_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ClothingSystemRuntimeNv_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ClothingSystemRuntimeNv_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ClothingSystemRuntimeNv_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CommonGame_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CommonGame_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CommonGame_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CommonGame_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CommonGame_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CommonGame_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CommonInput_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CommonInput_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CommonInput_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CommonInput_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CommonInput_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CommonInput_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CommonLoadingScreen_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CommonLoadingScreen_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CommonLoadingScreen_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CommonLoadingScreen_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CommonLoadingScreen_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CommonLoadingScreen_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CommonUI_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CommonUI_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CommonUI_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CommonUI_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CommonUI_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CommonUI_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CommonUser_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CommonUser_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CommonUser_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CommonUser_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CommonUser_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CommonUser_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Composure_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Composure_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Composure_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Composure_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Composure_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Composure_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Constraints_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Constraints_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Constraints_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Constraints_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Constraints_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Constraints_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ControlRigSpline_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ControlRigSpline_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ControlRigSpline_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ControlRigSpline_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ControlRigSpline_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ControlRigSpline_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ControlRig_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ControlRig_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ControlRig_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ControlRig_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ControlRig_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ControlRig_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CoreOnline_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CoreOnline_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CoreOnline_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CoreOnline_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CoreOnline_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CoreOnline_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CoreUObject_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CoreUObject_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CoreUObject_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CoreUObject_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CoreUObject_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CoreUObject_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CustomMeshComponent_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CustomMeshComponent_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CustomMeshComponent_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CustomMeshComponent_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/CustomMeshComponent_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/CustomMeshComponent_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/DLSSBlueprint_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/DLSSBlueprint_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/DLSSBlueprint_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/DLSSBlueprint_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/DLSSBlueprint_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/DLSSBlueprint_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/DLSS_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/DLSS_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/DLSS_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/DLSS_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/DLSS_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/DLSS_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/DataRegistry_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/DataRegistry_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/DataRegistry_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/DataRegistry_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/DataRegistry_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/DataRegistry_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/DataflowCore_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/DataflowCore_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/DataflowCore_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/DataflowCore_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/DataflowCore_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/DataflowCore_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/DataflowEngine_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/DataflowEngine_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/DataflowEngine_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/DataflowEngine_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/DataflowEngine_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/DataflowEngine_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/DataflowNodes_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/DataflowNodes_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/DataflowNodes_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/DataflowNodes_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/DataflowNodes_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/DataflowNodes_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/DatasmithContent_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/DatasmithContent_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/DatasmithContent_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/DatasmithContent_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/DatasmithContent_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/DatasmithContent_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/DeveloperSettings_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/DeveloperSettings_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/DeveloperSettings_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/DeveloperSettings_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/DeveloperSettings_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/DeveloperSettings_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/DmgTypeBP_Environmental_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/DmgTypeBP_Environmental_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/DmgTypeBP_Environmental_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/DmgTypeBP_Environmental_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EOtomoFollowState_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EOtomoFollowState_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EOtomoFollowState_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EOtomoFollowState_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EOtomoFollowState_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EOtomoFollowState_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EPalBoxHoveredSlotType_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EPalBoxHoveredSlotType_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EPalBoxHoveredSlotType_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EPalBoxHoveredSlotType_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EPalUIPalInfoType_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EPalUIPalInfoType_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EPalUIPalInfoType_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EPalUIPalInfoType_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EPalUIPalInfoType_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EPalUIPalInfoType_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EPal_NPC_CombatGunState_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EPal_NPC_CombatGunState_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EPal_NPC_CombatGunState_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EPal_NPC_CombatGunState_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ERideActionDirection_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ERideActionDirection_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ERideActionDirection_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ERideActionDirection_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ERideActionDirection_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ERideActionDirection_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ERideActionState_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ERideActionState_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ERideActionState_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ERideActionState_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ERideActionState_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ERideActionState_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EWarningPalAIMoveType_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EWarningPalAIMoveType_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EWarningPalAIMoveType_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EWarningPalAIMoveType_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EWarningPalAIMoveType_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EWarningPalAIMoveType_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EWildPalAIMoveMode_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EWildPalAIMoveMode_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EWildPalAIMoveMode_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EWildPalAIMoveMode_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EWildPalAIMoveMode_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EWildPalAIMoveMode_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EWildPalAIRestType_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EWildPalAIRestType_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EWildPalAIRestType_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EWildPalAIRestType_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EWildPalAIRestType_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EWildPalAIRestType_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/E_PalEmo_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/E_PalEmo_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/E_PalEmo_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/E_PalEmo_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/E_PalEmo_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/E_PalEmo_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/E_PalItemShopTabType_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/E_PalItemShopTabType_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/E_PalItemShopTabType_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/E_PalItemShopTabType_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/E_PalItemShopTabType_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/E_PalItemShopTabType_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EngineMessages_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EngineMessages_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EngineMessages_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EngineMessages_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EngineMessages_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EngineMessages_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EngineSettings_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EngineSettings_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EngineSettings_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EngineSettings_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EngineSettings_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EngineSettings_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Engine_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Engine_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Engine_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Engine_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Engine_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Engine_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EnhancedInput_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EnhancedInput_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EnhancedInput_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EnhancedInput_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EnhancedInput_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EnhancedInput_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EyeTracker_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EyeTracker_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EyeTracker_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EyeTracker_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/EyeTracker_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/EyeTracker_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/FPalPartnerSkillIconData_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/FPalPartnerSkillIconData_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/FPalPartnerSkillIconData_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/FPalPartnerSkillIconData_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/FPalTechnologyIconData_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/FPalTechnologyIconData_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/FPalTechnologyIconData_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/FPalTechnologyIconData_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/FPalUIPalInfoDisplayData_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/FPalUIPalInfoDisplayData_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/FPalUIPalInfoDisplayData_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/FPalUIPalInfoDisplayData_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/FSR2MovieRenderPipeline_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/FSR2MovieRenderPipeline_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/FSR2MovieRenderPipeline_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/FSR2MovieRenderPipeline_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/FSR2TemporalUpscaling_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/FSR2TemporalUpscaling_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/FSR2TemporalUpscaling_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/FSR2TemporalUpscaling_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/FSR2TemporalUpscaling_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/FSR2TemporalUpscaling_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/F_NPCCampPreset_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/F_NPCCampPreset_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/F_NPCCampPreset_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/F_NPCCampPreset_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/F_NPCCampPreset_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/F_NPCCampPreset_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/F_NPCOnePointSpawnInfo_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/F_NPCOnePointSpawnInfo_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/F_NPCOnePointSpawnInfo_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/F_NPCOnePointSpawnInfo_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/F_NPC_PathWalkArray_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/F_NPC_PathWalkArray_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/F_NPC_PathWalkArray_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/F_NPC_PathWalkArray_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/F_NPC_PathWalkArray_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/F_NPC_PathWalkArray_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/F_NPC_PathWalkPoint_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/F_NPC_PathWalkPoint_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/F_NPC_PathWalkPoint_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/F_NPC_PathWalkPoint_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/F_NPC_PathWalkPoint_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/F_NPC_PathWalkPoint_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/FacialAnimation_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/FacialAnimation_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/FacialAnimation_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/FacialAnimation_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/FacialAnimation_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/FacialAnimation_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/FieldSystemEngine_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/FieldSystemEngine_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/FieldSystemEngine_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/FieldSystemEngine_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/FieldSystemEngine_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/FieldSystemEngine_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Foliage_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Foliage_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Foliage_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Foliage_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Foliage_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Foliage_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/FullBodyIK_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/FullBodyIK_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/FullBodyIK_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/FullBodyIK_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/FullBodyIK_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/FullBodyIK_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/FunctionalTesting_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/FunctionalTesting_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/FunctionalTesting_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/FunctionalTesting_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/FunctionalTesting_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/FunctionalTesting_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GLTFExporter_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GLTFExporter_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GLTFExporter_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GLTFExporter_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GLTFExporter_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GLTFExporter_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GameFeatures_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GameFeatures_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GameFeatures_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GameFeatures_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GameFeatures_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GameFeatures_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GameplayCameras_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GameplayCameras_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GameplayCameras_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GameplayCameras_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GameplayCameras_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GameplayCameras_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GameplayTags_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GameplayTags_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GameplayTags_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GameplayTags_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GameplayTags_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GameplayTags_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GameplayTasks_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GameplayTasks_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GameplayTasks_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GameplayTasks_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GameplayTasks_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GameplayTasks_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GeometryCacheTracks_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GeometryCacheTracks_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GeometryCacheTracks_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GeometryCacheTracks_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GeometryCacheTracks_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GeometryCacheTracks_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GeometryCache_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GeometryCache_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GeometryCache_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GeometryCache_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GeometryCache_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GeometryCache_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GeometryCollectionEngine_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GeometryCollectionEngine_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GeometryCollectionEngine_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GeometryCollectionEngine_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GeometryCollectionNodes_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GeometryCollectionNodes_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GeometryCollectionNodes_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GeometryCollectionNodes_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GeometryCollectionTracks_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GeometryCollectionTracks_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GeometryCollectionTracks_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GeometryCollectionTracks_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GeometryFramework_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GeometryFramework_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GeometryFramework_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GeometryFramework_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GeometryFramework_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GeometryFramework_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GooglePAD_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GooglePAD_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GooglePAD_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GooglePAD_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/GooglePAD_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/GooglePAD_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/HeadMountedDisplay_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/HeadMountedDisplay_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/HeadMountedDisplay_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/HeadMountedDisplay_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/HeadMountedDisplay_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/HeadMountedDisplay_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Hotfix_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Hotfix_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Hotfix_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Hotfix_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Hotfix_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Hotfix_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/HoudiniEngineRuntime_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/HoudiniEngineRuntime_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/HoudiniEngineRuntime_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/HoudiniEngineRuntime_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/HoudiniEngineRuntime_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/HoudiniEngineRuntime_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/HttpBlueprint_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/HttpBlueprint_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/HttpBlueprint_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/HttpBlueprint_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/HttpBlueprint_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/HttpBlueprint_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/IKRig_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/IKRig_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/IKRig_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/IKRig_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/IKRig_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/IKRig_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ImGui_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ImGui_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ImGui_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ImGui_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ImGui_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ImGui_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ImageWriteQueue_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ImageWriteQueue_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ImageWriteQueue_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ImageWriteQueue_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ImageWriteQueue_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ImageWriteQueue_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ImgMediaEngine_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ImgMediaEngine_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ImgMediaEngine_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ImgMediaEngine_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ImgMediaEngine_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ImgMediaEngine_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ImgMediaFactory_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ImgMediaFactory_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ImgMediaFactory_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ImgMediaFactory_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ImgMediaFactory_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ImgMediaFactory_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ImgMedia_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ImgMedia_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ImgMedia_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ImgMedia_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ImgMedia_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ImgMedia_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/InputCore_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/InputCore_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/InputCore_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/InputCore_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/InputCore_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/InputCore_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/IrisStub_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/IrisStub_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/IrisStub_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/IrisStub_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/IrisStub_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/IrisStub_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/JsonBlueprintUtilities_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/JsonBlueprintUtilities_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/JsonBlueprintUtilities_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/JsonBlueprintUtilities_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/JsonUtilities_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/JsonUtilities_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/JsonUtilities_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/JsonUtilities_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/JsonUtilities_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/JsonUtilities_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/KawaiiPhysics_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/KawaiiPhysics_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/KawaiiPhysics_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/KawaiiPhysics_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/KawaiiPhysics_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/KawaiiPhysics_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Landmass_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Landmass_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Landmass_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Landmass_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Landmass_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Landmass_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Landscape_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Landscape_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Landscape_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Landscape_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Landscape_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Landscape_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/LevelSequence_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/LevelSequence_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/LevelSequence_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/LevelSequence_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/LevelSequence_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/LevelSequence_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/LimitVolumeBox_BossStage_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/LimitVolumeBox_BossStage_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/LimitVolumeBox_BossStage_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/LimitVolumeBox_BossStage_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/LimitVolumeBox_GrassTest_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/LimitVolumeBox_GrassTest_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/LimitVolumeBox_GrassTest_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/LimitVolumeBox_GrassTest_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/LimitVolumeBox_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/LimitVolumeBox_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/LimitVolumeBox_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/LimitVolumeBox_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/LimitVolumeBox_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/LimitVolumeBox_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/LiveLinkAnimationCore_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/LiveLinkAnimationCore_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/LiveLinkAnimationCore_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/LiveLinkAnimationCore_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/LiveLinkAnimationCore_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/LiveLinkAnimationCore_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/LiveLinkCamera_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/LiveLinkCamera_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/LiveLinkCamera_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/LiveLinkCamera_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/LiveLinkCamera_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/LiveLinkCamera_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/LiveLinkComponents_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/LiveLinkComponents_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/LiveLinkComponents_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/LiveLinkComponents_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/LiveLinkComponents_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/LiveLinkComponents_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/LiveLinkInterface_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/LiveLinkInterface_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/LiveLinkInterface_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/LiveLinkInterface_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/LiveLinkInterface_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/LiveLinkInterface_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/LiveLinkMovieScene_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/LiveLinkMovieScene_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/LiveLinkMovieScene_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/LiveLinkMovieScene_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/LiveLinkMovieScene_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/LiveLinkMovieScene_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/LiveLink_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/LiveLink_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/LiveLink_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/LiveLink_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/LiveLink_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/LiveLink_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Lobby_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Lobby_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Lobby_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Lobby_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Lobby_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Lobby_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Localization_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Localization_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Localization_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Localization_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Localization_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Localization_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MRMesh_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MRMesh_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MRMesh_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MRMesh_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MRMesh_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MRMesh_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MediaAssets_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MediaAssets_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MediaAssets_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MediaAssets_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MediaAssets_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MediaAssets_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MediaCompositing_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MediaCompositing_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MediaCompositing_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MediaCompositing_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MediaCompositing_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MediaCompositing_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MediaIOCore_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MediaIOCore_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MediaIOCore_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MediaIOCore_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MediaIOCore_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MediaIOCore_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MediaPlate_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MediaPlate_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MediaPlate_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MediaPlate_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MediaPlate_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MediaPlate_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MediaUtils_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MediaUtils_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MediaUtils_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MediaUtils_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MediaUtils_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MediaUtils_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MeshDescription_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MeshDescription_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MeshDescription_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MeshDescription_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MeshDescription_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MeshDescription_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MeshModelingToolsExp_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MeshModelingToolsExp_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MeshModelingToolsExp_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MeshModelingToolsExp_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MeshModelingTools_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MeshModelingTools_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MeshModelingTools_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MeshModelingTools_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MeshModelingTools_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MeshModelingTools_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MeshToSpawnAlong_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MeshToSpawnAlong_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MeshToSpawnAlong_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MeshToSpawnAlong_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MeshToSpawnAlong_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MeshToSpawnAlong_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MetasoundEngine_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MetasoundEngine_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MetasoundEngine_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MetasoundEngine_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MetasoundEngine_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MetasoundEngine_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MetasoundFrontend_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MetasoundFrontend_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MetasoundFrontend_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MetasoundFrontend_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MetasoundFrontend_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MetasoundFrontend_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MobilePatchingUtils_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MobilePatchingUtils_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MobilePatchingUtils_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MobilePatchingUtils_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ModelingComponents_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ModelingComponents_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ModelingComponents_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ModelingComponents_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ModelingComponents_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ModelingComponents_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ModelingOperators_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ModelingOperators_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ModelingOperators_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ModelingOperators_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ModelingOperators_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ModelingOperators_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ModularGameplayActors_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ModularGameplayActors_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ModularGameplayActors_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ModularGameplayActors_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ModularGameplay_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ModularGameplay_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ModularGameplay_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ModularGameplay_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ModularGameplay_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ModularGameplay_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MotionWarping_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MotionWarping_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MotionWarping_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MotionWarping_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MotionWarping_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MotionWarping_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MoviePlayer_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MoviePlayer_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MoviePlayer_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MoviePlayer_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MoviePlayer_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MoviePlayer_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MovieSceneCapture_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MovieSceneCapture_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MovieSceneCapture_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MovieSceneCapture_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MovieSceneCapture_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MovieSceneCapture_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MovieSceneTracks_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MovieSceneTracks_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MovieSceneTracks_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MovieSceneTracks_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MovieSceneTracks_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MovieSceneTracks_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MovieScene_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MovieScene_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MovieScene_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MovieScene_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/MovieScene_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/MovieScene_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/NISBlueprint_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/NISBlueprint_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/NISBlueprint_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/NISBlueprint_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/NISBlueprint_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/NISBlueprint_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/NavigationSystem_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/NavigationSystem_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/NavigationSystem_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/NavigationSystem_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/NavigationSystem_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/NavigationSystem_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/NetCore_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/NetCore_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/NetCore_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/NetCore_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/NetCore_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/NetCore_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/NiagaraAnimNotifies_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/NiagaraAnimNotifies_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/NiagaraAnimNotifies_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/NiagaraAnimNotifies_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/NiagaraCore_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/NiagaraCore_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/NiagaraCore_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/NiagaraCore_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/NiagaraCore_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/NiagaraCore_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/NiagaraShader_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/NiagaraShader_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/NiagaraShader_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/NiagaraShader_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/NiagaraShader_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/NiagaraShader_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/NiagaraUIRenderer_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/NiagaraUIRenderer_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/NiagaraUIRenderer_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/NiagaraUIRenderer_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/NiagaraUIRenderer_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/NiagaraUIRenderer_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Niagara_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Niagara_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Niagara_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Niagara_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Niagara_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Niagara_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/OnlineSubsystemEOS_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/OnlineSubsystemEOS_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/OnlineSubsystemEOS_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/OnlineSubsystemEOS_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/OnlineSubsystemEOS_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/OnlineSubsystemEOS_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/OnlineSubsystemSteam_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/OnlineSubsystemSteam_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/OnlineSubsystemSteam_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/OnlineSubsystemSteam_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/OnlineSubsystemUtils_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/OnlineSubsystemUtils_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/OnlineSubsystemUtils_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/OnlineSubsystemUtils_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/OnlineSubsystem_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/OnlineSubsystem_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/OnlineSubsystem_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/OnlineSubsystem_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/OnlineSubsystem_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/OnlineSubsystem_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/OpenColorIO_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/OpenColorIO_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/OpenColorIO_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/OpenColorIO_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/OpenColorIO_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/OpenColorIO_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Overlay_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Overlay_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Overlay_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Overlay_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Overlay_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Overlay_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PBIK_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PBIK_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PBIK_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PBIK_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PBIK_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PBIK_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PL_MainWorld5_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PL_MainWorld5_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PL_MainWorld5_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PL_MainWorld5_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PL_MainWorld5_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PL_MainWorld5_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PPSkyCreatorPlugin_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PPSkyCreatorPlugin_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PPSkyCreatorPlugin_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PPSkyCreatorPlugin_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PPSkyCreatorPlugin_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PPSkyCreatorPlugin_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PRESET_Flowers1_BP_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PRESET_Flowers1_BP_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PRESET_Flowers1_BP_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PRESET_Flowers1_BP_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PRESET_Flowers1_BP_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PRESET_Flowers1_BP_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PRESET_Ivy1_BP_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PRESET_Ivy1_BP_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PRESET_Ivy1_BP_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PRESET_Ivy1_BP_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PRESET_Ivy1_BP_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PRESET_Ivy1_BP_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PRESET_Ivy1_Var3_BP_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PRESET_Ivy1_Var3_BP_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PRESET_Ivy1_Var3_BP_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PRESET_Ivy1_Var3_BP_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PRESET_Liana1_BP_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PRESET_Liana1_BP_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PRESET_Liana1_BP_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PRESET_Liana1_BP_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PRESET_Liana1_BP_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PRESET_Liana1_BP_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PacketHandler_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PacketHandler_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PacketHandler_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PacketHandler_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PacketHandler_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PacketHandler_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Pal_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Pal_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Pal_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Pal_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Pal_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Pal_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Paper2D_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Paper2D_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Paper2D_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Paper2D_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Paper2D_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Paper2D_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Party_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Party_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Party_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Party_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Party_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Party_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PhysicsCore_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PhysicsCore_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PhysicsCore_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PhysicsCore_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PhysicsCore_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PhysicsCore_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PlacementTools_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PlacementTools_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PlacementTools_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PlacementTools_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PlacementTools_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PlacementTools_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PocketpairUser_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PocketpairUser_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PocketpairUser_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PocketpairUser_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PocketpairUser_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PocketpairUser_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ProfilerMessages_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ProfilerMessages_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ProfilerMessages_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ProfilerMessages_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ProfilerMessages_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ProfilerMessages_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PropertyPath_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PropertyPath_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PropertyPath_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PropertyPath_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/PropertyPath_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/PropertyPath_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Qos_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Qos_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Qos_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Qos_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Qos_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Qos_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Rejoin_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Rejoin_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Rejoin_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Rejoin_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Rejoin_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Rejoin_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ReplicationGraph_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ReplicationGraph_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ReplicationGraph_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ReplicationGraph_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ReplicationGraph_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ReplicationGraph_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ResonanceAudio_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ResonanceAudio_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ResonanceAudio_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ResonanceAudio_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ResonanceAudio_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ResonanceAudio_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/RigVM_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/RigVM_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/RigVM_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/RigVM_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/RigVM_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/RigVM_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/RiverSplineElement_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/RiverSplineElement_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/RiverSplineElement_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/RiverSplineElement_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/RiverSplineElement_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/RiverSplineElement_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/S_PalBiomeEffect_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/S_PalBiomeEffect_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/S_PalBiomeEffect_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/S_PalBiomeEffect_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/S_PalBiomeEffect_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/S_PalBiomeEffect_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SequencerScripting_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SequencerScripting_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SequencerScripting_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SequencerScripting_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SequencerScripting_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SequencerScripting_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Serialization_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Serialization_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Serialization_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Serialization_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Serialization_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Serialization_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SessionMessages_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SessionMessages_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SessionMessages_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SessionMessages_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SessionMessages_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SessionMessages_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SignificanceManager_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SignificanceManager_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SignificanceManager_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SignificanceManager_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SkelMeshToSpawnAlong_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SkelMeshToSpawnAlong_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SkelMeshToSpawnAlong_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SkelMeshToSpawnAlong_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SkyCreatorPlugin_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SkyCreatorPlugin_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SkyCreatorPlugin_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SkyCreatorPlugin_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SkyCreatorPlugin_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SkyCreatorPlugin_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SlateCore_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SlateCore_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SlateCore_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SlateCore_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SlateCore_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SlateCore_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SlateReflector_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SlateReflector_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SlateReflector_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SlateReflector_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SlateReflector_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SlateReflector_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Slate_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Slate_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Slate_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Slate_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Slate_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Slate_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SocketSubsystemEOS_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SocketSubsystemEOS_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SocketSubsystemEOS_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SocketSubsystemEOS_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SocketSubsystemEOS_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SocketSubsystemEOS_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SoundFields_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SoundFields_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SoundFields_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SoundFields_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SoundFields_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SoundFields_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SourceControl_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SourceControl_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SourceControl_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SourceControl_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SourceControl_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SourceControl_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SplineAttachment_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SplineAttachment_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SplineAttachment_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SplineAttachment_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SplineAttachment_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SplineAttachment_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SplineObject_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SplineObject_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SplineObject_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SplineObject_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SplineObject_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SplineObject_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SplineTarget_BP_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SplineTarget_BP_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SplineTarget_BP_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SplineTarget_BP_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SplineTarget_BP_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SplineTarget_BP_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SplinesInEditor_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SplinesInEditor_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SplinesInEditor_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SplinesInEditor_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SplinesInEditor_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SplinesInEditor_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SpreadSheetToCsv_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SpreadSheetToCsv_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SpreadSheetToCsv_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SpreadSheetToCsv_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SpreadSheetToCsv_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SpreadSheetToCsv_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/StaticMeshDescription_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/StaticMeshDescription_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/StaticMeshDescription_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/StaticMeshDescription_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SteamSockets_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SteamSockets_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SteamSockets_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SteamSockets_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SteamSockets_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SteamSockets_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/StemSpline_BP_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/StemSpline_BP_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/StemSpline_BP_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/StemSpline_BP_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/StemSpline_BP_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/StemSpline_BP_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SubStemStarter_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SubStemStarter_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SubStemStarter_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SubStemStarter_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SubStemStarter_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SubStemStarter_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SunPosition_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SunPosition_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SunPosition_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SunPosition_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SunPosition_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SunPosition_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SunSky_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SunSky_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SunSky_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SunSky_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/SunSky_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/SunSky_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Synthesis_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Synthesis_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Synthesis_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Synthesis_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Synthesis_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Synthesis_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/TakeMovieScene_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/TakeMovieScene_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/TakeMovieScene_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/TakeMovieScene_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/TakeMovieScene_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/TakeMovieScene_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/TcpMessaging_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/TcpMessaging_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/TcpMessaging_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/TcpMessaging_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/TcpMessaging_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/TcpMessaging_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/TemplateSequence_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/TemplateSequence_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/TemplateSequence_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/TemplateSequence_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/TemplateSequence_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/TemplateSequence_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/TimeManagement_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/TimeManagement_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/TimeManagement_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/TimeManagement_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/TimeManagement_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/TimeManagement_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ToolMenus_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ToolMenus_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ToolMenus_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ToolMenus_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ToolMenus_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ToolMenus_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ToolWidgets_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ToolWidgets_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ToolWidgets_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ToolWidgets_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/ToolWidgets_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/ToolWidgets_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/TraceUtilities_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/TraceUtilities_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/TraceUtilities_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/TraceUtilities_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/TraceUtilities_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/TraceUtilities_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/TypedElementFramework_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/TypedElementFramework_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/TypedElementFramework_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/TypedElementFramework_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/TypedElementRuntime_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/TypedElementRuntime_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/TypedElementRuntime_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/TypedElementRuntime_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/UMG_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/UMG_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/UMG_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/UMG_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/UMG_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/UMG_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/UObjectPlugin_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/UObjectPlugin_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/UObjectPlugin_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/UObjectPlugin_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/UObjectPlugin_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/UObjectPlugin_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/UdpMessaging_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/UdpMessaging_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/UdpMessaging_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/UdpMessaging_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/UdpMessaging_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/UdpMessaging_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/UnrealEdMessages_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/UnrealEdMessages_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/UnrealEdMessages_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/UnrealEdMessages_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/UnrealEdMessages_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/UnrealEdMessages_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/VariantManagerContent_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/VariantManagerContent_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/VariantManagerContent_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/VariantManagerContent_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/VectorVM_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/VectorVM_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/VectorVM_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/VectorVM_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/VectorVM_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/VectorVM_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Water_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Water_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Water_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Water_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/Water_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/Water_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/WaveTable_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/WaveTable_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/WaveTable_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/WaveTable_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/WaveTable_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/WaveTable_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/WebBrowserWidget_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/WebBrowserWidget_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/WebBrowserWidget_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/WebBrowserWidget_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/WebBrowserWidget_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/WebBrowserWidget_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/WebBrowser_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/WebBrowser_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/WebBrowser_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/WebBrowser_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/WebBrowser_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/WebBrowser_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/WidgetCarousel_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/WidgetCarousel_classes.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/WidgetCarousel_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/WidgetCarousel_parameters.hpp -------------------------------------------------------------------------------- /include/sdk/SDK/WidgetCarousel_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDK/WidgetCarousel_structs.hpp -------------------------------------------------------------------------------- /include/sdk/SDKDirect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/sdk/SDKDirect.h -------------------------------------------------------------------------------- /include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/types.h -------------------------------------------------------------------------------- /include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/include/utils.h -------------------------------------------------------------------------------- /src/commands/broadcast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/src/commands/broadcast.cpp -------------------------------------------------------------------------------- /src/commands/garbage_collection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/src/commands/garbage_collection.cpp -------------------------------------------------------------------------------- /src/commands/kick_player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/src/commands/kick_player.cpp -------------------------------------------------------------------------------- /src/commands/list_player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/src/commands/list_player.cpp -------------------------------------------------------------------------------- /src/common_player_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/src/common_player_data.cpp -------------------------------------------------------------------------------- /src/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/src/console.cpp -------------------------------------------------------------------------------- /src/engine_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/src/engine_functions.cpp -------------------------------------------------------------------------------- /src/ev_test/ev_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/src/ev_test/ev_test.cpp -------------------------------------------------------------------------------- /src/events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/src/events.cpp -------------------------------------------------------------------------------- /src/hooks/add_item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/src/hooks/add_item.cpp -------------------------------------------------------------------------------- /src/hooks/hooks_install.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/src/hooks/hooks_install.cpp -------------------------------------------------------------------------------- /src/hooks/process_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/src/hooks/process_event.cpp -------------------------------------------------------------------------------- /src/hooks/send_damage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/src/hooks/send_damage.cpp -------------------------------------------------------------------------------- /src/hooks/spawn_play_actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/src/hooks/spawn_play_actor.cpp -------------------------------------------------------------------------------- /src/hooks/update_name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/src/hooks/update_name.cpp -------------------------------------------------------------------------------- /src/os/linux/libentry/libentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/src/os/linux/libentry/libentry.cpp -------------------------------------------------------------------------------- /src/os/linux/unrealsdk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/src/os/linux/unrealsdk.cpp -------------------------------------------------------------------------------- /src/os/linux/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/src/os/linux/utils.cpp -------------------------------------------------------------------------------- /src/os/windows/libentry/libentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/src/os/windows/libentry/libentry.cpp -------------------------------------------------------------------------------- /src/os/windows/unrealsdk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/src/os/windows/unrealsdk.cpp -------------------------------------------------------------------------------- /src/os/windows/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/src/os/windows/utils.cpp -------------------------------------------------------------------------------- /src/pal_loader_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/src/pal_loader_core.cpp -------------------------------------------------------------------------------- /src/sdk/sdk-basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/src/sdk/sdk-basic.cpp -------------------------------------------------------------------------------- /src/sdk/sdk-engine-core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/src/sdk/sdk-engine-core.cpp -------------------------------------------------------------------------------- /src/sdk/sdk-palcamestateingame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/src/sdk/sdk-palcamestateingame.cpp -------------------------------------------------------------------------------- /src/sdk/sdk-upalutility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/src/sdk/sdk-upalutility.cpp -------------------------------------------------------------------------------- /xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VeroFess/PalWorld-Server-Unoffical-Api/HEAD/xmake.lua --------------------------------------------------------------------------------