├── .clang-format ├── .clang-tidy ├── .clangd ├── .editorconfig ├── .gitattributes ├── .github ├── make-directives.ps1 ├── update_vcpkg_baselines.py └── workflows │ ├── contributors.yml │ ├── lint_pr_title.yml │ ├── main_ci.yml │ ├── main_ci_xmake.yml │ ├── maintenance.yml │ ├── send_repository_dispatch.yml │ ├── update_pdb.yml │ └── update_vcpkg_baselines.yml ├── .gitignore ├── CMakeLists.txt ├── CMakePresets.json ├── COPYING ├── EXCEPTIONS ├── LICENSES └── COMMONLIB ├── README.md ├── cmake ├── CommonLibSF.cmake ├── build_stl_modules.props └── config.cmake.in ├── include ├── RE │ ├── A │ │ ├── AIProcess.h │ │ ├── AITimeStamp.h │ │ ├── AVMData.h │ │ ├── Actor.h │ │ ├── ActorEquipManager.h │ │ ├── ActorKnowledge.h │ │ ├── ActorPackage.h │ │ ├── ActorState.h │ │ ├── ActorUtils.h │ │ ├── ActorValueInfo.h │ │ ├── ActorValueOwner.h │ │ ├── ActorValueStorage.h │ │ ├── ActorValues.h │ │ ├── AlchemyItem.h │ │ ├── Array.h │ │ └── ArrowProjectile.h │ ├── B │ │ ├── BGSAcousticSpace.h │ │ ├── BGSAction.h │ │ ├── BGSAddonNode.h │ │ ├── BGSAffinityEvent.h │ │ ├── BGSAimAssistModel.h │ │ ├── BGSAimAssistPoseData.h │ │ ├── BGSAimDownSightModel.h │ │ ├── BGSAimModel.h │ │ ├── BGSAimOpticalSightModel.h │ │ ├── BGSAmbienceSet.h │ │ ├── BGSAnimationGraphComponent.h │ │ ├── BGSArtObject.h │ │ ├── BGSAtmosphere.h │ │ ├── BGSAttachParentArray.h │ │ ├── BGSAttackDataForm.h │ │ ├── BGSAttractionRule.h │ │ ├── BGSAudioOcclusionPrimitive.h │ │ ├── BGSBaseForm.h │ │ ├── BGSBendableSpline.h │ │ ├── BGSBiome.h │ │ ├── BGSBiomeMarkerObject.h │ │ ├── BGSBipedObjectForm.h │ │ ├── BGSBlockBashData.h │ │ ├── BGSBodyPartData.h │ │ ├── BGSBodyPartDefs.h │ │ ├── BGSBodyPartInfo.h │ │ ├── BGSBoneModifier.h │ │ ├── BGSCameraPath.h │ │ ├── BGSCameraShot.h │ │ ├── BGSChallengeForm.h │ │ ├── BGSCloudForm.h │ │ ├── BGSCollisionLayer.h │ │ ├── BGSColorForm.h │ │ ├── BGSConditionForm.h │ │ ├── BGSConstructibleObject.h │ │ ├── BGSCraftableForm.h │ │ ├── BGSCraftingResourceOwner.h │ │ ├── BGSCraftingUseSound.h │ │ ├── BGSCurve3DForm.h │ │ ├── BGSCurveForm.h │ │ ├── BGSDamageType.h │ │ ├── BGSDebris.h │ │ ├── BGSDefaultObject.h │ │ ├── BGSDefaultObjectManager.h │ │ ├── BGSDestructibleObjectForm.h │ │ ├── BGSDirectionalAmbientLightingColors.h │ │ ├── BGSEditorID.h │ │ ├── BGSEffectSequenceForm.h │ │ ├── BGSEntryPoint.h │ │ ├── BGSEquipIndex.h │ │ ├── BGSEquipSlot.h │ │ ├── BGSEquipType.h │ │ ├── BGSExplosion.h │ │ ├── BGSFeaturedItemMessage.h │ │ ├── BGSFogVolumeForm.h │ │ ├── BGSFootstep.h │ │ ├── BGSFootstepSet.h │ │ ├── BGSForceData.h │ │ ├── BGSForcedLocRefType.h │ │ ├── BGSFormFolderKeywordList.h │ │ ├── BGSGenericBaseForm.h │ │ ├── BGSGenericBaseFormTemplate.h │ │ ├── BGSGroundCover.h │ │ ├── BGSHazard.h │ │ ├── BGSHeadPart.h │ │ ├── BGSIdleCollection.h │ │ ├── BGSIdleMarker.h │ │ ├── BGSImpactData.h │ │ ├── BGSImpactDataSet.h │ │ ├── BGSInstanceNamingRules.h │ │ ├── BGSInstanceNamingRulesForm.h │ │ ├── BGSInventoryInterface.h │ │ ├── BGSInventoryItem.h │ │ ├── BGSInventoryList.h │ │ ├── BGSKeyword.h │ │ ├── BGSKeywordForm.h │ │ ├── BGSLayeredMaterialSwap.h │ │ ├── BGSLegendaryItem.h │ │ ├── BGSLensFlare.h │ │ ├── BGSLevGenericBaseForm.h │ │ ├── BGSLevPackIn.h │ │ ├── BGSLevSpaceCell.h │ │ ├── BGSLightingTemplate.h │ │ ├── BGSListForm.h │ │ ├── BGSLocalizedString.h │ │ ├── BGSLocalizedStringDL.h │ │ ├── BGSLocation.h │ │ ├── BGSLocationRefType.h │ │ ├── BGSMaterialPathForm.h │ │ ├── BGSMaterialType.h │ │ ├── BGSMeleeAimAssistModel.h │ │ ├── BGSMenuDisplayObject.h │ │ ├── BGSMessage.h │ │ ├── BGSMod.h │ │ ├── BGSModelMaterialSwap.h │ │ ├── BGSMorphableObject.h │ │ ├── BGSMovableStatic.h │ │ ├── BGSMovementType.h │ │ ├── BGSNativeTerminalForm.h │ │ ├── BGSNavmeshableObject.h │ │ ├── BGSObjectInstance.h │ │ ├── BGSObjectPlacementDefaults.h │ │ ├── BGSObjectSwap.h │ │ ├── BGSOpenCloseForm.h │ │ ├── BGSOutfit.h │ │ ├── BGSOverridePackCollection.h │ │ ├── BGSPackIn.h │ │ ├── BGSParticleSystemDefineCollection.h │ │ ├── BGSPerk.h │ │ ├── BGSPerkRankArray.h │ │ ├── BGSPersistentIDsForm.h │ │ ├── BGSPhotoModeFeature.h │ │ ├── BGSPickupPutdownSounds.h │ │ ├── BGSPlanetData.h │ │ ├── BGSPreloadable.h │ │ ├── BGSPreviewTransform.h │ │ ├── BGSProjectedDecal.h │ │ ├── BGSProjectile.h │ │ ├── BGSPropertySheet.h │ │ ├── BGSReferenceGroup.h │ │ ├── BGSReflectedForm.h │ │ ├── BGSResearchProjectForm.h │ │ ├── BGSResource.h │ │ ├── BGSResourceGenerationData.h │ │ ├── BGSReverbParameters.h │ │ ├── BGSSaveLoad.h │ │ ├── BGSSaveLoadGame.h │ │ ├── BGSScene.h │ │ ├── BGSSecondaryDamageList.h │ │ ├── BGSShaderParticleGeometryData.h │ │ ├── BGSSkinForm.h │ │ ├── BGSSnapBehavior.h │ │ ├── BGSSnapTemplate.h │ │ ├── BGSSnapTemplateComponent.h │ │ ├── BGSSnapTemplateNode.h │ │ ├── BGSSoundEcho.h │ │ ├── BGSSoundKeywordMapping.h │ │ ├── BGSSoundTagSet.h │ │ ├── BGSSpeechChallengeObject.h │ │ ├── BGSStar.h │ │ ├── BGSStaticCollection.h │ │ ├── BGSStoryManagerTreeForm.h │ │ ├── BGSStoryTeller.h │ │ ├── BGSSunPresetForm.h │ │ ├── BGSSurfaceBlock.h │ │ ├── BGSSurfacePattern.h │ │ ├── BGSSurfacePatternStyle.h │ │ ├── BGSSurfaceTree.h │ │ ├── BGSTalkingActivator.h │ │ ├── BGSTerminal.h │ │ ├── BGSTerminalMenu.h │ │ ├── BGSTextureModel.h │ │ ├── BGSTextureSet.h │ │ ├── BGSTimeOfDayData.h │ │ ├── BGSTransform.h │ │ ├── BGSTraversal.h │ │ ├── BGSTypedFormValuePair.h │ │ ├── BGSTypedKeywordValueArray.h │ │ ├── BGSVoiceType.h │ │ ├── BGSVolumetricLighting.h │ │ ├── BGSWeaponBarrelModel.h │ │ ├── BGSWeatherSettingsForm.h │ │ ├── BGSWwiseEventForm.h │ │ ├── BGSWwiseKeywordMapping.h │ │ ├── BSAnimationGraph.h │ │ ├── BSBlendable.h │ │ ├── BSColorCurve.h │ │ ├── BSContainer.h │ │ ├── BSCoreTypes.h │ │ ├── BSExtraData.h │ │ ├── BSFixedString.h │ │ ├── BSFloat3DCurve.h │ │ ├── BSFloatCurve.h │ │ ├── BSInputEnableLayer.h │ │ ├── BSInputEnableManager.h │ │ ├── BSInputEventReceiver.h │ │ ├── BSInputEventUser.h │ │ ├── BSIntrusiveRefCounted.h │ │ ├── BSLock.h │ │ ├── BSLog.h │ │ ├── BSPauseRequester.h │ │ ├── BSPointerHandle.h │ │ ├── BSReflection.h │ │ ├── BSResourceEnums.h │ │ ├── BSScriptUtil.h │ │ ├── BSStorage.h │ │ ├── BSStringPool.h │ │ ├── BSStringT.h │ │ ├── BSSystemFile.h │ │ ├── BSTArray.h │ │ ├── BSTEvent.h │ │ ├── BSTFreeList.h │ │ ├── BSTList.h │ │ ├── BSTObjectArena.h │ │ ├── BSTOptional.h │ │ ├── BSTScatterTable.h │ │ ├── BSTSingleton.h │ │ ├── BSTSmartPointer.h │ │ ├── BSTTuple.h │ │ ├── BSTTuple3.h │ │ ├── BSTimer.h │ │ ├── BarrierProjectile.h │ │ ├── BaseFormComponent.h │ │ └── BeamProjectile.h │ ├── C │ │ ├── Calendar.h │ │ ├── ChargenMenu.h │ │ ├── CodeTasklet.h │ │ ├── CollisionLayers.h │ │ ├── Color.h │ │ ├── CombatGroup.h │ │ ├── CompiledScriptLoader.h │ │ ├── ConeProjectile.h │ │ ├── Console.h │ │ └── ConsoleLog.h │ ├── D │ │ ├── DebuggerMessages.h │ │ ├── DecalData.h │ │ └── DetectionState.h │ ├── E │ │ ├── EffectArchetypes.h │ │ ├── EffectItem.h │ │ ├── EffectSetting.h │ │ ├── EmitterProjectile.h │ │ ├── EnchantmentItem.h │ │ ├── ErrorLogger.h │ │ ├── Events.h │ │ ├── ExtraDataList.h │ │ ├── ExtraDataTypes.h │ │ └── ExtraLock.h │ ├── F │ │ ├── FORM_ENUM_STRING.h │ │ ├── FactionRank.h │ │ ├── FlameProjectile.h │ │ └── FormTypes.h │ ├── G │ │ ├── GameMenuBase.h │ │ ├── GameSettingCollection.h │ │ ├── GameVM.h │ │ └── GrenadeProjectile.h │ ├── H │ │ ├── HandlePolicy.h │ │ ├── HandleReaderWriter.h │ │ └── Hazard.h │ ├── I │ │ ├── IAddressControllerStore.h │ │ ├── IAnimationGraphManagerHolder.h │ │ ├── IBGSBaseFormData.h │ │ ├── ICachedErrorMessage.h │ │ ├── IClientVM.h │ │ ├── IComplexType.h │ │ ├── IDataModel.h │ │ ├── IFuncCallQuery.h │ │ ├── IFunction.h │ │ ├── IHandleReaderWriter.h │ │ ├── IKeywordFormBase.h │ │ ├── ILoader.h │ │ ├── IMemoryPagePolicy.h │ │ ├── IMenu.h │ │ ├── IMovementInterface.h │ │ ├── IMovementPlayerControlsFilter.h │ │ ├── IMovementState.h │ │ ├── IMovementStateStore.h │ │ ├── INIPrefSettingCollection.h │ │ ├── INISettingCollection.h │ │ ├── IObjectHandlePolicy.h │ │ ├── IObjectProcessor.h │ │ ├── IPostAnimationChannelUpdateFunctor.h │ │ ├── IProfilePolicy.h │ │ ├── IRemoteDebugger.h │ │ ├── ISavePatcherInterface.h │ │ ├── IStackCallbackSaveInterface.h │ │ ├── IStore.h │ │ ├── IStoreAnimationActions.h │ │ ├── IVMDebugInterface.h │ │ ├── IVMFunctionMessageDispatch.h │ │ ├── IVMObjectBindInterface.h │ │ ├── IVMRemoteDebuggerInterface.h │ │ ├── IVMSaveLoadInterface.h │ │ ├── IVirtualMachine.h │ │ ├── ImpactResults.h │ │ ├── InteriorData.h │ │ ├── idLogging.h │ │ └── idTCP.h │ ├── IDs.h │ ├── IDs_NiRTTI.h │ ├── IDs_RTTI.h │ ├── IDs_VTABLE.h │ ├── L │ │ ├── LinkerProcessor.h │ │ ├── Location.h │ │ ├── LockPickedEvent.h │ │ └── Logger.h │ ├── M │ │ ├── MagicItem.h │ │ ├── MagicSystem.h │ │ ├── MagicTarget.h │ │ ├── Main.h │ │ ├── MemoryManager.h │ │ ├── MenuPaperDoll.h │ │ ├── MenuTopicManager.h │ │ ├── Misc.h │ │ ├── MissileProjectile.h │ │ └── msvc.h │ ├── N │ │ ├── NativeFunctionBase.h │ │ ├── NiAVObject.h │ │ ├── NiBound.h │ │ ├── NiCamera.h │ │ ├── NiColor.h │ │ ├── NiFrustum.h │ │ ├── NiMatrix3.h │ │ ├── NiObject.h │ │ ├── NiObjectNET.h │ │ ├── NiPoint.h │ │ ├── NiQuaternion.h │ │ ├── NiRect.h │ │ ├── NiRefObject.h │ │ ├── NiSmartPointer.h │ │ ├── NiTransform.h │ │ └── NiUpdateData.h │ ├── O │ │ ├── Object.h │ │ ├── ObjectBindPolicy.h │ │ └── ObjectTypeInfo.h │ ├── P │ │ ├── PerkRankData.h │ │ ├── PlasmaProjectile.h │ │ ├── PlayerCamera.h │ │ ├── PlayerCharacter.h │ │ ├── ProcessLists.h │ │ ├── Profiler.h │ │ ├── Projectile.h │ │ ├── PropertyGroupInfo.h │ │ └── PropertyTypeInfo.h │ ├── R │ │ ├── RawFuncCallQuery.h │ │ ├── ReadableStringTable.h │ │ ├── ReadableTypeTable.h │ │ ├── RegSettingCollection.h │ │ └── RemoteDebugger.h │ ├── RTTI.h │ ├── S │ │ ├── SWFToCodeFunctionHandler.h │ │ ├── SavePatcher.h │ │ ├── ScaleformGFxASMovieRootBase.h │ │ ├── ScaleformGFxFileTypeConstants.h │ │ ├── ScaleformGFxFunctionHandler.h │ │ ├── ScaleformGFxMovie.h │ │ ├── ScaleformGFxState.h │ │ ├── ScaleformGFxStateBag.h │ │ ├── ScaleformGFxValue.h │ │ ├── ScaleformMemoryHeap.h │ │ ├── ScaleformPtr.h │ │ ├── ScaleformRefCount.h │ │ ├── SceneGraph.h │ │ ├── Script.h │ │ ├── Setting.h │ │ ├── SettingCollection.h │ │ ├── SettingCollectionList.h │ │ ├── SettingCollectionMap.h │ │ ├── Sexes.h │ │ ├── SimpleAllocMemoryPagePolicy.h │ │ ├── Sky.h │ │ ├── SpellItem.h │ │ ├── Stack.h │ │ ├── StackFrame.h │ │ ├── Store.h │ │ ├── Stream.h │ │ ├── StreamBase.h │ │ ├── Struct.h │ │ ├── StructTypeInfo.h │ │ └── SuspendedStack.h │ ├── Starfield.h │ ├── T │ │ ├── TBO_InstanceData.h │ │ ├── TES.h │ │ ├── TESAIForm.h │ │ ├── TESActorBase.h │ │ ├── TESActorBaseData.h │ │ ├── TESAmmo.h │ │ ├── TESBipedModelForm.h │ │ ├── TESBoundAnimObject.h │ │ ├── TESBoundObject.h │ │ ├── TESCamera.h │ │ ├── TESClass.h │ │ ├── TESClimate.h │ │ ├── TESCombatStyle.h │ │ ├── TESCondition.h │ │ ├── TESContainer.h │ │ ├── TESDataHandler.h │ │ ├── TESDescription.h │ │ ├── TESEffectShader.h │ │ ├── TESEnchantableForm.h │ │ ├── TESEyes.h │ │ ├── TESFaction.h │ │ ├── TESFile.h │ │ ├── TESFlora.h │ │ ├── TESForm.h │ │ ├── TESFormRefCount.h │ │ ├── TESFullName.h │ │ ├── TESFurniture.h │ │ ├── TESGlobal.h │ │ ├── TESGrass.h │ │ ├── TESHandleForm.h │ │ ├── TESIdleForm.h │ │ ├── TESImageSpace.h │ │ ├── TESImageSpaceModifiableForm.h │ │ ├── TESKey.h │ │ ├── TESLandTexture.h │ │ ├── TESLevCharacter.h │ │ ├── TESLevItem.h │ │ ├── TESLevSpell.h │ │ ├── TESLeveledList.h │ │ ├── TESLoadScreen.h │ │ ├── TESMagicTargetForm.h │ │ ├── TESModel.h │ │ ├── TESModelTri.h │ │ ├── TESNPC.h │ │ ├── TESNPCData.h │ │ ├── TESObject.h │ │ ├── TESObjectACTI.h │ │ ├── TESObjectANIO.h │ │ ├── TESObjectARMA.h │ │ ├── TESObjectARMO.h │ │ ├── TESObjectBOOK.h │ │ ├── TESObjectCELL.h │ │ ├── TESObjectCONT.h │ │ ├── TESObjectDOOR.h │ │ ├── TESObjectLIGH.h │ │ ├── TESObjectMISC.h │ │ ├── TESObjectREFR.h │ │ ├── TESObjectSTAT.h │ │ ├── TESObjectWEAP.h │ │ ├── TESPackage.h │ │ ├── TESProduceForm.h │ │ ├── TESQuest.h │ │ ├── TESRace.h │ │ ├── TESRaceForm.h │ │ ├── TESRegion.h │ │ ├── TESResponse.h │ │ ├── TESSound.h │ │ ├── TESSpellList.h │ │ ├── TESTexture.h │ │ ├── TESTopicInfo.h │ │ ├── TESValueForm.h │ │ ├── TESWaterForm.h │ │ ├── TESWeather.h │ │ ├── TESWeightForm.h │ │ ├── TESWorldSpace.h │ │ ├── TLS.h │ │ └── TypeInfo.h │ ├── U │ │ ├── UI.h │ │ ├── UICellRenderer.h │ │ └── UIMessageQueue.h │ ├── V │ │ ├── Variable.h │ │ └── VirtualMachine.h │ └── W │ │ ├── WritableStringTable.h │ │ ├── WritableTypeTable.h │ │ ├── WwiseGUID.h │ │ └── WwiseSoundHook.h ├── REL │ ├── ID.h │ ├── Module.h │ ├── Offset.h │ ├── Pattern.h │ ├── REL.h │ ├── Relocation.h │ └── Version.h ├── REX │ ├── PS4.h │ ├── PS4 │ │ └── SCEPAD.h │ ├── REX.h │ ├── REX │ │ ├── Enum.h │ │ ├── EnumSet.h │ │ ├── INI.h │ │ ├── JSON.h │ │ ├── Setting.h │ │ ├── Singleton.h │ │ └── TOML.h │ ├── W32.h │ └── W32 │ │ ├── ADVAPI32.h │ │ ├── BASE.h │ │ ├── BCRYPT.h │ │ ├── COM.h │ │ ├── COMPTR.h │ │ ├── D3D.h │ │ ├── DBGHELP.h │ │ ├── DINPUT.h │ │ ├── DXGI.h │ │ ├── DXGI_2.h │ │ ├── DXGI_3.h │ │ ├── DXGI_4.h │ │ ├── DXGI_5.h │ │ ├── DXGI_6.h │ │ ├── KERNEL32.h │ │ ├── NT.h │ │ ├── OLE32.h │ │ ├── SHELL32.h │ │ ├── USER32.h │ │ ├── VERSION.h │ │ ├── WS2_32.h │ │ └── XINPUT.h └── SFSE │ ├── API.h │ ├── IAT.h │ ├── Impl │ ├── PCH.h │ └── Stubs.h │ ├── InputMap.h │ ├── Interfaces.h │ ├── Logger.h │ ├── SFSE.h │ ├── Trampoline.h │ ├── Utilities.h │ └── Version.h ├── scripts ├── IDAPDB.py ├── build-debug-clang-cl-test.bat ├── build-debug-clang-cl.bat ├── build-debug-msvc-test.bat ├── build-debug-msvc.bat ├── build-release-clang-cl-test.bat ├── build-release-clang-cl.bat ├── build-release-msvc-test.bat ├── build-release-msvc.bat ├── make-sln-clang-cl.bat └── make-sln-msvc.bat ├── src ├── RE │ ├── A │ │ └── Array.cpp │ ├── B │ │ ├── BGSKeywordForm.cpp │ │ ├── BSLock.cpp │ │ ├── BSLog.cpp │ │ └── BSSystemFile.cpp │ ├── I │ │ └── idTCP.cpp │ ├── N │ │ ├── NiMatrix3.cpp │ │ └── NiPoint.cpp │ ├── R │ │ └── RemoteDebugger.cpp │ ├── S │ │ ├── Stream.cpp │ │ └── StreamBase.cpp │ ├── Starfield.cpp │ ├── T │ │ ├── TESObjectREFR.cpp │ │ └── TypeInfo.cpp │ └── V │ │ └── Variable.cpp ├── REL │ └── ID.cpp ├── REX │ ├── REX.cpp │ └── W32.cpp └── SFSE │ ├── API.cpp │ ├── IAT.cpp │ ├── InputMap.cpp │ ├── Interfaces.cpp │ ├── Logger.cpp │ └── Trampoline.cpp ├── test └── test.cpp ├── vcpkg.json ├── xmake-extra.lua └── xmake.lua /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/.clangd -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/make-directives.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/.github/make-directives.ps1 -------------------------------------------------------------------------------- /.github/update_vcpkg_baselines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/.github/update_vcpkg_baselines.py -------------------------------------------------------------------------------- /.github/workflows/contributors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/.github/workflows/contributors.yml -------------------------------------------------------------------------------- /.github/workflows/lint_pr_title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/.github/workflows/lint_pr_title.yml -------------------------------------------------------------------------------- /.github/workflows/main_ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/.github/workflows/main_ci.yml -------------------------------------------------------------------------------- /.github/workflows/main_ci_xmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/.github/workflows/main_ci_xmake.yml -------------------------------------------------------------------------------- /.github/workflows/maintenance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/.github/workflows/maintenance.yml -------------------------------------------------------------------------------- /.github/workflows/send_repository_dispatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/.github/workflows/send_repository_dispatch.yml -------------------------------------------------------------------------------- /.github/workflows/update_pdb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/.github/workflows/update_pdb.yml -------------------------------------------------------------------------------- /.github/workflows/update_vcpkg_baselines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/.github/workflows/update_vcpkg_baselines.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/COPYING -------------------------------------------------------------------------------- /EXCEPTIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/EXCEPTIONS -------------------------------------------------------------------------------- /LICENSES/COMMONLIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/LICENSES/COMMONLIB -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/README.md -------------------------------------------------------------------------------- /cmake/CommonLibSF.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/cmake/CommonLibSF.cmake -------------------------------------------------------------------------------- /cmake/build_stl_modules.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/cmake/build_stl_modules.props -------------------------------------------------------------------------------- /cmake/config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/cmake/config.cmake.in -------------------------------------------------------------------------------- /include/RE/A/AIProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/A/AIProcess.h -------------------------------------------------------------------------------- /include/RE/A/AITimeStamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/A/AITimeStamp.h -------------------------------------------------------------------------------- /include/RE/A/AVMData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/A/AVMData.h -------------------------------------------------------------------------------- /include/RE/A/Actor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/A/Actor.h -------------------------------------------------------------------------------- /include/RE/A/ActorEquipManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/A/ActorEquipManager.h -------------------------------------------------------------------------------- /include/RE/A/ActorKnowledge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/A/ActorKnowledge.h -------------------------------------------------------------------------------- /include/RE/A/ActorPackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/A/ActorPackage.h -------------------------------------------------------------------------------- /include/RE/A/ActorState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/A/ActorState.h -------------------------------------------------------------------------------- /include/RE/A/ActorUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/A/ActorUtils.h -------------------------------------------------------------------------------- /include/RE/A/ActorValueInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/A/ActorValueInfo.h -------------------------------------------------------------------------------- /include/RE/A/ActorValueOwner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/A/ActorValueOwner.h -------------------------------------------------------------------------------- /include/RE/A/ActorValueStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/A/ActorValueStorage.h -------------------------------------------------------------------------------- /include/RE/A/ActorValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/A/ActorValues.h -------------------------------------------------------------------------------- /include/RE/A/AlchemyItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/A/AlchemyItem.h -------------------------------------------------------------------------------- /include/RE/A/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/A/Array.h -------------------------------------------------------------------------------- /include/RE/A/ArrowProjectile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/A/ArrowProjectile.h -------------------------------------------------------------------------------- /include/RE/B/BGSAcousticSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSAcousticSpace.h -------------------------------------------------------------------------------- /include/RE/B/BGSAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSAction.h -------------------------------------------------------------------------------- /include/RE/B/BGSAddonNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSAddonNode.h -------------------------------------------------------------------------------- /include/RE/B/BGSAffinityEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSAffinityEvent.h -------------------------------------------------------------------------------- /include/RE/B/BGSAimAssistModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSAimAssistModel.h -------------------------------------------------------------------------------- /include/RE/B/BGSAimAssistPoseData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSAimAssistPoseData.h -------------------------------------------------------------------------------- /include/RE/B/BGSAimDownSightModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSAimDownSightModel.h -------------------------------------------------------------------------------- /include/RE/B/BGSAimModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSAimModel.h -------------------------------------------------------------------------------- /include/RE/B/BGSAimOpticalSightModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSAimOpticalSightModel.h -------------------------------------------------------------------------------- /include/RE/B/BGSAmbienceSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSAmbienceSet.h -------------------------------------------------------------------------------- /include/RE/B/BGSAnimationGraphComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSAnimationGraphComponent.h -------------------------------------------------------------------------------- /include/RE/B/BGSArtObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSArtObject.h -------------------------------------------------------------------------------- /include/RE/B/BGSAtmosphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSAtmosphere.h -------------------------------------------------------------------------------- /include/RE/B/BGSAttachParentArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSAttachParentArray.h -------------------------------------------------------------------------------- /include/RE/B/BGSAttackDataForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSAttackDataForm.h -------------------------------------------------------------------------------- /include/RE/B/BGSAttractionRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSAttractionRule.h -------------------------------------------------------------------------------- /include/RE/B/BGSAudioOcclusionPrimitive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSAudioOcclusionPrimitive.h -------------------------------------------------------------------------------- /include/RE/B/BGSBaseForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSBaseForm.h -------------------------------------------------------------------------------- /include/RE/B/BGSBendableSpline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSBendableSpline.h -------------------------------------------------------------------------------- /include/RE/B/BGSBiome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSBiome.h -------------------------------------------------------------------------------- /include/RE/B/BGSBiomeMarkerObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSBiomeMarkerObject.h -------------------------------------------------------------------------------- /include/RE/B/BGSBipedObjectForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSBipedObjectForm.h -------------------------------------------------------------------------------- /include/RE/B/BGSBlockBashData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSBlockBashData.h -------------------------------------------------------------------------------- /include/RE/B/BGSBodyPartData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSBodyPartData.h -------------------------------------------------------------------------------- /include/RE/B/BGSBodyPartDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSBodyPartDefs.h -------------------------------------------------------------------------------- /include/RE/B/BGSBodyPartInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSBodyPartInfo.h -------------------------------------------------------------------------------- /include/RE/B/BGSBoneModifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSBoneModifier.h -------------------------------------------------------------------------------- /include/RE/B/BGSCameraPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSCameraPath.h -------------------------------------------------------------------------------- /include/RE/B/BGSCameraShot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSCameraShot.h -------------------------------------------------------------------------------- /include/RE/B/BGSChallengeForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSChallengeForm.h -------------------------------------------------------------------------------- /include/RE/B/BGSCloudForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSCloudForm.h -------------------------------------------------------------------------------- /include/RE/B/BGSCollisionLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSCollisionLayer.h -------------------------------------------------------------------------------- /include/RE/B/BGSColorForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSColorForm.h -------------------------------------------------------------------------------- /include/RE/B/BGSConditionForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSConditionForm.h -------------------------------------------------------------------------------- /include/RE/B/BGSConstructibleObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSConstructibleObject.h -------------------------------------------------------------------------------- /include/RE/B/BGSCraftableForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSCraftableForm.h -------------------------------------------------------------------------------- /include/RE/B/BGSCraftingResourceOwner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSCraftingResourceOwner.h -------------------------------------------------------------------------------- /include/RE/B/BGSCraftingUseSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSCraftingUseSound.h -------------------------------------------------------------------------------- /include/RE/B/BGSCurve3DForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSCurve3DForm.h -------------------------------------------------------------------------------- /include/RE/B/BGSCurveForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSCurveForm.h -------------------------------------------------------------------------------- /include/RE/B/BGSDamageType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSDamageType.h -------------------------------------------------------------------------------- /include/RE/B/BGSDebris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSDebris.h -------------------------------------------------------------------------------- /include/RE/B/BGSDefaultObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSDefaultObject.h -------------------------------------------------------------------------------- /include/RE/B/BGSDefaultObjectManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSDefaultObjectManager.h -------------------------------------------------------------------------------- /include/RE/B/BGSDestructibleObjectForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSDestructibleObjectForm.h -------------------------------------------------------------------------------- /include/RE/B/BGSDirectionalAmbientLightingColors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSDirectionalAmbientLightingColors.h -------------------------------------------------------------------------------- /include/RE/B/BGSEditorID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSEditorID.h -------------------------------------------------------------------------------- /include/RE/B/BGSEffectSequenceForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSEffectSequenceForm.h -------------------------------------------------------------------------------- /include/RE/B/BGSEntryPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSEntryPoint.h -------------------------------------------------------------------------------- /include/RE/B/BGSEquipIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSEquipIndex.h -------------------------------------------------------------------------------- /include/RE/B/BGSEquipSlot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSEquipSlot.h -------------------------------------------------------------------------------- /include/RE/B/BGSEquipType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSEquipType.h -------------------------------------------------------------------------------- /include/RE/B/BGSExplosion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSExplosion.h -------------------------------------------------------------------------------- /include/RE/B/BGSFeaturedItemMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSFeaturedItemMessage.h -------------------------------------------------------------------------------- /include/RE/B/BGSFogVolumeForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSFogVolumeForm.h -------------------------------------------------------------------------------- /include/RE/B/BGSFootstep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSFootstep.h -------------------------------------------------------------------------------- /include/RE/B/BGSFootstepSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSFootstepSet.h -------------------------------------------------------------------------------- /include/RE/B/BGSForceData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSForceData.h -------------------------------------------------------------------------------- /include/RE/B/BGSForcedLocRefType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSForcedLocRefType.h -------------------------------------------------------------------------------- /include/RE/B/BGSFormFolderKeywordList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSFormFolderKeywordList.h -------------------------------------------------------------------------------- /include/RE/B/BGSGenericBaseForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSGenericBaseForm.h -------------------------------------------------------------------------------- /include/RE/B/BGSGenericBaseFormTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSGenericBaseFormTemplate.h -------------------------------------------------------------------------------- /include/RE/B/BGSGroundCover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSGroundCover.h -------------------------------------------------------------------------------- /include/RE/B/BGSHazard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSHazard.h -------------------------------------------------------------------------------- /include/RE/B/BGSHeadPart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSHeadPart.h -------------------------------------------------------------------------------- /include/RE/B/BGSIdleCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSIdleCollection.h -------------------------------------------------------------------------------- /include/RE/B/BGSIdleMarker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSIdleMarker.h -------------------------------------------------------------------------------- /include/RE/B/BGSImpactData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSImpactData.h -------------------------------------------------------------------------------- /include/RE/B/BGSImpactDataSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSImpactDataSet.h -------------------------------------------------------------------------------- /include/RE/B/BGSInstanceNamingRules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSInstanceNamingRules.h -------------------------------------------------------------------------------- /include/RE/B/BGSInstanceNamingRulesForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSInstanceNamingRulesForm.h -------------------------------------------------------------------------------- /include/RE/B/BGSInventoryInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSInventoryInterface.h -------------------------------------------------------------------------------- /include/RE/B/BGSInventoryItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSInventoryItem.h -------------------------------------------------------------------------------- /include/RE/B/BGSInventoryList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSInventoryList.h -------------------------------------------------------------------------------- /include/RE/B/BGSKeyword.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSKeyword.h -------------------------------------------------------------------------------- /include/RE/B/BGSKeywordForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSKeywordForm.h -------------------------------------------------------------------------------- /include/RE/B/BGSLayeredMaterialSwap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSLayeredMaterialSwap.h -------------------------------------------------------------------------------- /include/RE/B/BGSLegendaryItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSLegendaryItem.h -------------------------------------------------------------------------------- /include/RE/B/BGSLensFlare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSLensFlare.h -------------------------------------------------------------------------------- /include/RE/B/BGSLevGenericBaseForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSLevGenericBaseForm.h -------------------------------------------------------------------------------- /include/RE/B/BGSLevPackIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSLevPackIn.h -------------------------------------------------------------------------------- /include/RE/B/BGSLevSpaceCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSLevSpaceCell.h -------------------------------------------------------------------------------- /include/RE/B/BGSLightingTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSLightingTemplate.h -------------------------------------------------------------------------------- /include/RE/B/BGSListForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSListForm.h -------------------------------------------------------------------------------- /include/RE/B/BGSLocalizedString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSLocalizedString.h -------------------------------------------------------------------------------- /include/RE/B/BGSLocalizedStringDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSLocalizedStringDL.h -------------------------------------------------------------------------------- /include/RE/B/BGSLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSLocation.h -------------------------------------------------------------------------------- /include/RE/B/BGSLocationRefType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSLocationRefType.h -------------------------------------------------------------------------------- /include/RE/B/BGSMaterialPathForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSMaterialPathForm.h -------------------------------------------------------------------------------- /include/RE/B/BGSMaterialType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSMaterialType.h -------------------------------------------------------------------------------- /include/RE/B/BGSMeleeAimAssistModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSMeleeAimAssistModel.h -------------------------------------------------------------------------------- /include/RE/B/BGSMenuDisplayObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSMenuDisplayObject.h -------------------------------------------------------------------------------- /include/RE/B/BGSMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSMessage.h -------------------------------------------------------------------------------- /include/RE/B/BGSMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSMod.h -------------------------------------------------------------------------------- /include/RE/B/BGSModelMaterialSwap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSModelMaterialSwap.h -------------------------------------------------------------------------------- /include/RE/B/BGSMorphableObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSMorphableObject.h -------------------------------------------------------------------------------- /include/RE/B/BGSMovableStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSMovableStatic.h -------------------------------------------------------------------------------- /include/RE/B/BGSMovementType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSMovementType.h -------------------------------------------------------------------------------- /include/RE/B/BGSNativeTerminalForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSNativeTerminalForm.h -------------------------------------------------------------------------------- /include/RE/B/BGSNavmeshableObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSNavmeshableObject.h -------------------------------------------------------------------------------- /include/RE/B/BGSObjectInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSObjectInstance.h -------------------------------------------------------------------------------- /include/RE/B/BGSObjectPlacementDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSObjectPlacementDefaults.h -------------------------------------------------------------------------------- /include/RE/B/BGSObjectSwap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSObjectSwap.h -------------------------------------------------------------------------------- /include/RE/B/BGSOpenCloseForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSOpenCloseForm.h -------------------------------------------------------------------------------- /include/RE/B/BGSOutfit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSOutfit.h -------------------------------------------------------------------------------- /include/RE/B/BGSOverridePackCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSOverridePackCollection.h -------------------------------------------------------------------------------- /include/RE/B/BGSPackIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSPackIn.h -------------------------------------------------------------------------------- /include/RE/B/BGSParticleSystemDefineCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSParticleSystemDefineCollection.h -------------------------------------------------------------------------------- /include/RE/B/BGSPerk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSPerk.h -------------------------------------------------------------------------------- /include/RE/B/BGSPerkRankArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSPerkRankArray.h -------------------------------------------------------------------------------- /include/RE/B/BGSPersistentIDsForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSPersistentIDsForm.h -------------------------------------------------------------------------------- /include/RE/B/BGSPhotoModeFeature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSPhotoModeFeature.h -------------------------------------------------------------------------------- /include/RE/B/BGSPickupPutdownSounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSPickupPutdownSounds.h -------------------------------------------------------------------------------- /include/RE/B/BGSPlanetData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSPlanetData.h -------------------------------------------------------------------------------- /include/RE/B/BGSPreloadable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSPreloadable.h -------------------------------------------------------------------------------- /include/RE/B/BGSPreviewTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSPreviewTransform.h -------------------------------------------------------------------------------- /include/RE/B/BGSProjectedDecal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSProjectedDecal.h -------------------------------------------------------------------------------- /include/RE/B/BGSProjectile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSProjectile.h -------------------------------------------------------------------------------- /include/RE/B/BGSPropertySheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSPropertySheet.h -------------------------------------------------------------------------------- /include/RE/B/BGSReferenceGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSReferenceGroup.h -------------------------------------------------------------------------------- /include/RE/B/BGSReflectedForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSReflectedForm.h -------------------------------------------------------------------------------- /include/RE/B/BGSResearchProjectForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSResearchProjectForm.h -------------------------------------------------------------------------------- /include/RE/B/BGSResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSResource.h -------------------------------------------------------------------------------- /include/RE/B/BGSResourceGenerationData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSResourceGenerationData.h -------------------------------------------------------------------------------- /include/RE/B/BGSReverbParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSReverbParameters.h -------------------------------------------------------------------------------- /include/RE/B/BGSSaveLoad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSSaveLoad.h -------------------------------------------------------------------------------- /include/RE/B/BGSSaveLoadGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSSaveLoadGame.h -------------------------------------------------------------------------------- /include/RE/B/BGSScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSScene.h -------------------------------------------------------------------------------- /include/RE/B/BGSSecondaryDamageList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSSecondaryDamageList.h -------------------------------------------------------------------------------- /include/RE/B/BGSShaderParticleGeometryData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSShaderParticleGeometryData.h -------------------------------------------------------------------------------- /include/RE/B/BGSSkinForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSSkinForm.h -------------------------------------------------------------------------------- /include/RE/B/BGSSnapBehavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSSnapBehavior.h -------------------------------------------------------------------------------- /include/RE/B/BGSSnapTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSSnapTemplate.h -------------------------------------------------------------------------------- /include/RE/B/BGSSnapTemplateComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSSnapTemplateComponent.h -------------------------------------------------------------------------------- /include/RE/B/BGSSnapTemplateNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSSnapTemplateNode.h -------------------------------------------------------------------------------- /include/RE/B/BGSSoundEcho.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSSoundEcho.h -------------------------------------------------------------------------------- /include/RE/B/BGSSoundKeywordMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSSoundKeywordMapping.h -------------------------------------------------------------------------------- /include/RE/B/BGSSoundTagSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSSoundTagSet.h -------------------------------------------------------------------------------- /include/RE/B/BGSSpeechChallengeObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSSpeechChallengeObject.h -------------------------------------------------------------------------------- /include/RE/B/BGSStar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSStar.h -------------------------------------------------------------------------------- /include/RE/B/BGSStaticCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSStaticCollection.h -------------------------------------------------------------------------------- /include/RE/B/BGSStoryManagerTreeForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSStoryManagerTreeForm.h -------------------------------------------------------------------------------- /include/RE/B/BGSStoryTeller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSStoryTeller.h -------------------------------------------------------------------------------- /include/RE/B/BGSSunPresetForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSSunPresetForm.h -------------------------------------------------------------------------------- /include/RE/B/BGSSurfaceBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSSurfaceBlock.h -------------------------------------------------------------------------------- /include/RE/B/BGSSurfacePattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSSurfacePattern.h -------------------------------------------------------------------------------- /include/RE/B/BGSSurfacePatternStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSSurfacePatternStyle.h -------------------------------------------------------------------------------- /include/RE/B/BGSSurfaceTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSSurfaceTree.h -------------------------------------------------------------------------------- /include/RE/B/BGSTalkingActivator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSTalkingActivator.h -------------------------------------------------------------------------------- /include/RE/B/BGSTerminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSTerminal.h -------------------------------------------------------------------------------- /include/RE/B/BGSTerminalMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSTerminalMenu.h -------------------------------------------------------------------------------- /include/RE/B/BGSTextureModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSTextureModel.h -------------------------------------------------------------------------------- /include/RE/B/BGSTextureSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSTextureSet.h -------------------------------------------------------------------------------- /include/RE/B/BGSTimeOfDayData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSTimeOfDayData.h -------------------------------------------------------------------------------- /include/RE/B/BGSTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSTransform.h -------------------------------------------------------------------------------- /include/RE/B/BGSTraversal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSTraversal.h -------------------------------------------------------------------------------- /include/RE/B/BGSTypedFormValuePair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSTypedFormValuePair.h -------------------------------------------------------------------------------- /include/RE/B/BGSTypedKeywordValueArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSTypedKeywordValueArray.h -------------------------------------------------------------------------------- /include/RE/B/BGSVoiceType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSVoiceType.h -------------------------------------------------------------------------------- /include/RE/B/BGSVolumetricLighting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSVolumetricLighting.h -------------------------------------------------------------------------------- /include/RE/B/BGSWeaponBarrelModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSWeaponBarrelModel.h -------------------------------------------------------------------------------- /include/RE/B/BGSWeatherSettingsForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSWeatherSettingsForm.h -------------------------------------------------------------------------------- /include/RE/B/BGSWwiseEventForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSWwiseEventForm.h -------------------------------------------------------------------------------- /include/RE/B/BGSWwiseKeywordMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BGSWwiseKeywordMapping.h -------------------------------------------------------------------------------- /include/RE/B/BSAnimationGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSAnimationGraph.h -------------------------------------------------------------------------------- /include/RE/B/BSBlendable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSBlendable.h -------------------------------------------------------------------------------- /include/RE/B/BSColorCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSColorCurve.h -------------------------------------------------------------------------------- /include/RE/B/BSContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSContainer.h -------------------------------------------------------------------------------- /include/RE/B/BSCoreTypes.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace RE 4 | { 5 | using TESFormID = std::uint32_t; 6 | } 7 | -------------------------------------------------------------------------------- /include/RE/B/BSExtraData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSExtraData.h -------------------------------------------------------------------------------- /include/RE/B/BSFixedString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSFixedString.h -------------------------------------------------------------------------------- /include/RE/B/BSFloat3DCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSFloat3DCurve.h -------------------------------------------------------------------------------- /include/RE/B/BSFloatCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSFloatCurve.h -------------------------------------------------------------------------------- /include/RE/B/BSInputEnableLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSInputEnableLayer.h -------------------------------------------------------------------------------- /include/RE/B/BSInputEnableManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSInputEnableManager.h -------------------------------------------------------------------------------- /include/RE/B/BSInputEventReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSInputEventReceiver.h -------------------------------------------------------------------------------- /include/RE/B/BSInputEventUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSInputEventUser.h -------------------------------------------------------------------------------- /include/RE/B/BSIntrusiveRefCounted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSIntrusiveRefCounted.h -------------------------------------------------------------------------------- /include/RE/B/BSLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSLock.h -------------------------------------------------------------------------------- /include/RE/B/BSLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSLog.h -------------------------------------------------------------------------------- /include/RE/B/BSPauseRequester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSPauseRequester.h -------------------------------------------------------------------------------- /include/RE/B/BSPointerHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSPointerHandle.h -------------------------------------------------------------------------------- /include/RE/B/BSReflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSReflection.h -------------------------------------------------------------------------------- /include/RE/B/BSResourceEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSResourceEnums.h -------------------------------------------------------------------------------- /include/RE/B/BSScriptUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSScriptUtil.h -------------------------------------------------------------------------------- /include/RE/B/BSStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSStorage.h -------------------------------------------------------------------------------- /include/RE/B/BSStringPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSStringPool.h -------------------------------------------------------------------------------- /include/RE/B/BSStringT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSStringT.h -------------------------------------------------------------------------------- /include/RE/B/BSSystemFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSSystemFile.h -------------------------------------------------------------------------------- /include/RE/B/BSTArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSTArray.h -------------------------------------------------------------------------------- /include/RE/B/BSTEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSTEvent.h -------------------------------------------------------------------------------- /include/RE/B/BSTFreeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSTFreeList.h -------------------------------------------------------------------------------- /include/RE/B/BSTList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSTList.h -------------------------------------------------------------------------------- /include/RE/B/BSTObjectArena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSTObjectArena.h -------------------------------------------------------------------------------- /include/RE/B/BSTOptional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSTOptional.h -------------------------------------------------------------------------------- /include/RE/B/BSTScatterTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSTScatterTable.h -------------------------------------------------------------------------------- /include/RE/B/BSTSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSTSingleton.h -------------------------------------------------------------------------------- /include/RE/B/BSTSmartPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSTSmartPointer.h -------------------------------------------------------------------------------- /include/RE/B/BSTTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSTTuple.h -------------------------------------------------------------------------------- /include/RE/B/BSTTuple3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSTTuple3.h -------------------------------------------------------------------------------- /include/RE/B/BSTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BSTimer.h -------------------------------------------------------------------------------- /include/RE/B/BarrierProjectile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BarrierProjectile.h -------------------------------------------------------------------------------- /include/RE/B/BaseFormComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BaseFormComponent.h -------------------------------------------------------------------------------- /include/RE/B/BeamProjectile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/B/BeamProjectile.h -------------------------------------------------------------------------------- /include/RE/C/Calendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/C/Calendar.h -------------------------------------------------------------------------------- /include/RE/C/ChargenMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/C/ChargenMenu.h -------------------------------------------------------------------------------- /include/RE/C/CodeTasklet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/C/CodeTasklet.h -------------------------------------------------------------------------------- /include/RE/C/CollisionLayers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/C/CollisionLayers.h -------------------------------------------------------------------------------- /include/RE/C/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/C/Color.h -------------------------------------------------------------------------------- /include/RE/C/CombatGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/C/CombatGroup.h -------------------------------------------------------------------------------- /include/RE/C/CompiledScriptLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/C/CompiledScriptLoader.h -------------------------------------------------------------------------------- /include/RE/C/ConeProjectile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/C/ConeProjectile.h -------------------------------------------------------------------------------- /include/RE/C/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/C/Console.h -------------------------------------------------------------------------------- /include/RE/C/ConsoleLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/C/ConsoleLog.h -------------------------------------------------------------------------------- /include/RE/D/DebuggerMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/D/DebuggerMessages.h -------------------------------------------------------------------------------- /include/RE/D/DecalData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/D/DecalData.h -------------------------------------------------------------------------------- /include/RE/D/DetectionState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/D/DetectionState.h -------------------------------------------------------------------------------- /include/RE/E/EffectArchetypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/E/EffectArchetypes.h -------------------------------------------------------------------------------- /include/RE/E/EffectItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/E/EffectItem.h -------------------------------------------------------------------------------- /include/RE/E/EffectSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/E/EffectSetting.h -------------------------------------------------------------------------------- /include/RE/E/EmitterProjectile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/E/EmitterProjectile.h -------------------------------------------------------------------------------- /include/RE/E/EnchantmentItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/E/EnchantmentItem.h -------------------------------------------------------------------------------- /include/RE/E/ErrorLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/E/ErrorLogger.h -------------------------------------------------------------------------------- /include/RE/E/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/E/Events.h -------------------------------------------------------------------------------- /include/RE/E/ExtraDataList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/E/ExtraDataList.h -------------------------------------------------------------------------------- /include/RE/E/ExtraDataTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/E/ExtraDataTypes.h -------------------------------------------------------------------------------- /include/RE/E/ExtraLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/E/ExtraLock.h -------------------------------------------------------------------------------- /include/RE/F/FORM_ENUM_STRING.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/F/FORM_ENUM_STRING.h -------------------------------------------------------------------------------- /include/RE/F/FactionRank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/F/FactionRank.h -------------------------------------------------------------------------------- /include/RE/F/FlameProjectile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/F/FlameProjectile.h -------------------------------------------------------------------------------- /include/RE/F/FormTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/F/FormTypes.h -------------------------------------------------------------------------------- /include/RE/G/GameMenuBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/G/GameMenuBase.h -------------------------------------------------------------------------------- /include/RE/G/GameSettingCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/G/GameSettingCollection.h -------------------------------------------------------------------------------- /include/RE/G/GameVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/G/GameVM.h -------------------------------------------------------------------------------- /include/RE/G/GrenadeProjectile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/G/GrenadeProjectile.h -------------------------------------------------------------------------------- /include/RE/H/HandlePolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/H/HandlePolicy.h -------------------------------------------------------------------------------- /include/RE/H/HandleReaderWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/H/HandleReaderWriter.h -------------------------------------------------------------------------------- /include/RE/H/Hazard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/H/Hazard.h -------------------------------------------------------------------------------- /include/RE/I/IAddressControllerStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IAddressControllerStore.h -------------------------------------------------------------------------------- /include/RE/I/IAnimationGraphManagerHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IAnimationGraphManagerHolder.h -------------------------------------------------------------------------------- /include/RE/I/IBGSBaseFormData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IBGSBaseFormData.h -------------------------------------------------------------------------------- /include/RE/I/ICachedErrorMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/ICachedErrorMessage.h -------------------------------------------------------------------------------- /include/RE/I/IClientVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IClientVM.h -------------------------------------------------------------------------------- /include/RE/I/IComplexType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IComplexType.h -------------------------------------------------------------------------------- /include/RE/I/IDataModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IDataModel.h -------------------------------------------------------------------------------- /include/RE/I/IFuncCallQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IFuncCallQuery.h -------------------------------------------------------------------------------- /include/RE/I/IFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IFunction.h -------------------------------------------------------------------------------- /include/RE/I/IHandleReaderWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IHandleReaderWriter.h -------------------------------------------------------------------------------- /include/RE/I/IKeywordFormBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IKeywordFormBase.h -------------------------------------------------------------------------------- /include/RE/I/ILoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/ILoader.h -------------------------------------------------------------------------------- /include/RE/I/IMemoryPagePolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IMemoryPagePolicy.h -------------------------------------------------------------------------------- /include/RE/I/IMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IMenu.h -------------------------------------------------------------------------------- /include/RE/I/IMovementInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IMovementInterface.h -------------------------------------------------------------------------------- /include/RE/I/IMovementPlayerControlsFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IMovementPlayerControlsFilter.h -------------------------------------------------------------------------------- /include/RE/I/IMovementState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IMovementState.h -------------------------------------------------------------------------------- /include/RE/I/IMovementStateStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IMovementStateStore.h -------------------------------------------------------------------------------- /include/RE/I/INIPrefSettingCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/INIPrefSettingCollection.h -------------------------------------------------------------------------------- /include/RE/I/INISettingCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/INISettingCollection.h -------------------------------------------------------------------------------- /include/RE/I/IObjectHandlePolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IObjectHandlePolicy.h -------------------------------------------------------------------------------- /include/RE/I/IObjectProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IObjectProcessor.h -------------------------------------------------------------------------------- /include/RE/I/IPostAnimationChannelUpdateFunctor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IPostAnimationChannelUpdateFunctor.h -------------------------------------------------------------------------------- /include/RE/I/IProfilePolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IProfilePolicy.h -------------------------------------------------------------------------------- /include/RE/I/IRemoteDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IRemoteDebugger.h -------------------------------------------------------------------------------- /include/RE/I/ISavePatcherInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/ISavePatcherInterface.h -------------------------------------------------------------------------------- /include/RE/I/IStackCallbackSaveInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IStackCallbackSaveInterface.h -------------------------------------------------------------------------------- /include/RE/I/IStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IStore.h -------------------------------------------------------------------------------- /include/RE/I/IStoreAnimationActions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IStoreAnimationActions.h -------------------------------------------------------------------------------- /include/RE/I/IVMDebugInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IVMDebugInterface.h -------------------------------------------------------------------------------- /include/RE/I/IVMFunctionMessageDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IVMFunctionMessageDispatch.h -------------------------------------------------------------------------------- /include/RE/I/IVMObjectBindInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IVMObjectBindInterface.h -------------------------------------------------------------------------------- /include/RE/I/IVMRemoteDebuggerInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IVMRemoteDebuggerInterface.h -------------------------------------------------------------------------------- /include/RE/I/IVMSaveLoadInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IVMSaveLoadInterface.h -------------------------------------------------------------------------------- /include/RE/I/IVirtualMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/IVirtualMachine.h -------------------------------------------------------------------------------- /include/RE/I/ImpactResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/ImpactResults.h -------------------------------------------------------------------------------- /include/RE/I/InteriorData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/InteriorData.h -------------------------------------------------------------------------------- /include/RE/I/idLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/idLogging.h -------------------------------------------------------------------------------- /include/RE/I/idTCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/I/idTCP.h -------------------------------------------------------------------------------- /include/RE/IDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/IDs.h -------------------------------------------------------------------------------- /include/RE/IDs_NiRTTI.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "REL/Relocation.h" 4 | 5 | namespace RE 6 | {} 7 | -------------------------------------------------------------------------------- /include/RE/IDs_RTTI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/IDs_RTTI.h -------------------------------------------------------------------------------- /include/RE/IDs_VTABLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/IDs_VTABLE.h -------------------------------------------------------------------------------- /include/RE/L/LinkerProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/L/LinkerProcessor.h -------------------------------------------------------------------------------- /include/RE/L/Location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/L/Location.h -------------------------------------------------------------------------------- /include/RE/L/LockPickedEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/L/LockPickedEvent.h -------------------------------------------------------------------------------- /include/RE/L/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/L/Logger.h -------------------------------------------------------------------------------- /include/RE/M/MagicItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/M/MagicItem.h -------------------------------------------------------------------------------- /include/RE/M/MagicSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/M/MagicSystem.h -------------------------------------------------------------------------------- /include/RE/M/MagicTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/M/MagicTarget.h -------------------------------------------------------------------------------- /include/RE/M/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/M/Main.h -------------------------------------------------------------------------------- /include/RE/M/MemoryManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/M/MemoryManager.h -------------------------------------------------------------------------------- /include/RE/M/MenuPaperDoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/M/MenuPaperDoll.h -------------------------------------------------------------------------------- /include/RE/M/MenuTopicManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/M/MenuTopicManager.h -------------------------------------------------------------------------------- /include/RE/M/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/M/Misc.h -------------------------------------------------------------------------------- /include/RE/M/MissileProjectile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/M/MissileProjectile.h -------------------------------------------------------------------------------- /include/RE/M/msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/M/msvc.h -------------------------------------------------------------------------------- /include/RE/N/NativeFunctionBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/N/NativeFunctionBase.h -------------------------------------------------------------------------------- /include/RE/N/NiAVObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/N/NiAVObject.h -------------------------------------------------------------------------------- /include/RE/N/NiBound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/N/NiBound.h -------------------------------------------------------------------------------- /include/RE/N/NiCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/N/NiCamera.h -------------------------------------------------------------------------------- /include/RE/N/NiColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/N/NiColor.h -------------------------------------------------------------------------------- /include/RE/N/NiFrustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/N/NiFrustum.h -------------------------------------------------------------------------------- /include/RE/N/NiMatrix3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/N/NiMatrix3.h -------------------------------------------------------------------------------- /include/RE/N/NiObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/N/NiObject.h -------------------------------------------------------------------------------- /include/RE/N/NiObjectNET.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/N/NiObjectNET.h -------------------------------------------------------------------------------- /include/RE/N/NiPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/N/NiPoint.h -------------------------------------------------------------------------------- /include/RE/N/NiQuaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/N/NiQuaternion.h -------------------------------------------------------------------------------- /include/RE/N/NiRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/N/NiRect.h -------------------------------------------------------------------------------- /include/RE/N/NiRefObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/N/NiRefObject.h -------------------------------------------------------------------------------- /include/RE/N/NiSmartPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/N/NiSmartPointer.h -------------------------------------------------------------------------------- /include/RE/N/NiTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/N/NiTransform.h -------------------------------------------------------------------------------- /include/RE/N/NiUpdateData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/N/NiUpdateData.h -------------------------------------------------------------------------------- /include/RE/O/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/O/Object.h -------------------------------------------------------------------------------- /include/RE/O/ObjectBindPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/O/ObjectBindPolicy.h -------------------------------------------------------------------------------- /include/RE/O/ObjectTypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/O/ObjectTypeInfo.h -------------------------------------------------------------------------------- /include/RE/P/PerkRankData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/P/PerkRankData.h -------------------------------------------------------------------------------- /include/RE/P/PlasmaProjectile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/P/PlasmaProjectile.h -------------------------------------------------------------------------------- /include/RE/P/PlayerCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/P/PlayerCamera.h -------------------------------------------------------------------------------- /include/RE/P/PlayerCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/P/PlayerCharacter.h -------------------------------------------------------------------------------- /include/RE/P/ProcessLists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/P/ProcessLists.h -------------------------------------------------------------------------------- /include/RE/P/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/P/Profiler.h -------------------------------------------------------------------------------- /include/RE/P/Projectile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/P/Projectile.h -------------------------------------------------------------------------------- /include/RE/P/PropertyGroupInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/P/PropertyGroupInfo.h -------------------------------------------------------------------------------- /include/RE/P/PropertyTypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/P/PropertyTypeInfo.h -------------------------------------------------------------------------------- /include/RE/R/RawFuncCallQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/R/RawFuncCallQuery.h -------------------------------------------------------------------------------- /include/RE/R/ReadableStringTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/R/ReadableStringTable.h -------------------------------------------------------------------------------- /include/RE/R/ReadableTypeTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/R/ReadableTypeTable.h -------------------------------------------------------------------------------- /include/RE/R/RegSettingCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/R/RegSettingCollection.h -------------------------------------------------------------------------------- /include/RE/R/RemoteDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/R/RemoteDebugger.h -------------------------------------------------------------------------------- /include/RE/RTTI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/RTTI.h -------------------------------------------------------------------------------- /include/RE/S/SWFToCodeFunctionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/SWFToCodeFunctionHandler.h -------------------------------------------------------------------------------- /include/RE/S/SavePatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/SavePatcher.h -------------------------------------------------------------------------------- /include/RE/S/ScaleformGFxASMovieRootBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/ScaleformGFxASMovieRootBase.h -------------------------------------------------------------------------------- /include/RE/S/ScaleformGFxFileTypeConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/ScaleformGFxFileTypeConstants.h -------------------------------------------------------------------------------- /include/RE/S/ScaleformGFxFunctionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/ScaleformGFxFunctionHandler.h -------------------------------------------------------------------------------- /include/RE/S/ScaleformGFxMovie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/ScaleformGFxMovie.h -------------------------------------------------------------------------------- /include/RE/S/ScaleformGFxState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/ScaleformGFxState.h -------------------------------------------------------------------------------- /include/RE/S/ScaleformGFxStateBag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/ScaleformGFxStateBag.h -------------------------------------------------------------------------------- /include/RE/S/ScaleformGFxValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/ScaleformGFxValue.h -------------------------------------------------------------------------------- /include/RE/S/ScaleformMemoryHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/ScaleformMemoryHeap.h -------------------------------------------------------------------------------- /include/RE/S/ScaleformPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/ScaleformPtr.h -------------------------------------------------------------------------------- /include/RE/S/ScaleformRefCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/ScaleformRefCount.h -------------------------------------------------------------------------------- /include/RE/S/SceneGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/SceneGraph.h -------------------------------------------------------------------------------- /include/RE/S/Script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/Script.h -------------------------------------------------------------------------------- /include/RE/S/Setting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/Setting.h -------------------------------------------------------------------------------- /include/RE/S/SettingCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/SettingCollection.h -------------------------------------------------------------------------------- /include/RE/S/SettingCollectionList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/SettingCollectionList.h -------------------------------------------------------------------------------- /include/RE/S/SettingCollectionMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/SettingCollectionMap.h -------------------------------------------------------------------------------- /include/RE/S/Sexes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/Sexes.h -------------------------------------------------------------------------------- /include/RE/S/SimpleAllocMemoryPagePolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/SimpleAllocMemoryPagePolicy.h -------------------------------------------------------------------------------- /include/RE/S/Sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/Sky.h -------------------------------------------------------------------------------- /include/RE/S/SpellItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/SpellItem.h -------------------------------------------------------------------------------- /include/RE/S/Stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/Stack.h -------------------------------------------------------------------------------- /include/RE/S/StackFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/StackFrame.h -------------------------------------------------------------------------------- /include/RE/S/Store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/Store.h -------------------------------------------------------------------------------- /include/RE/S/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/Stream.h -------------------------------------------------------------------------------- /include/RE/S/StreamBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/StreamBase.h -------------------------------------------------------------------------------- /include/RE/S/Struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/Struct.h -------------------------------------------------------------------------------- /include/RE/S/StructTypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/StructTypeInfo.h -------------------------------------------------------------------------------- /include/RE/S/SuspendedStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/S/SuspendedStack.h -------------------------------------------------------------------------------- /include/RE/Starfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/Starfield.h -------------------------------------------------------------------------------- /include/RE/T/TBO_InstanceData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TBO_InstanceData.h -------------------------------------------------------------------------------- /include/RE/T/TES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TES.h -------------------------------------------------------------------------------- /include/RE/T/TESAIForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESAIForm.h -------------------------------------------------------------------------------- /include/RE/T/TESActorBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESActorBase.h -------------------------------------------------------------------------------- /include/RE/T/TESActorBaseData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESActorBaseData.h -------------------------------------------------------------------------------- /include/RE/T/TESAmmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESAmmo.h -------------------------------------------------------------------------------- /include/RE/T/TESBipedModelForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESBipedModelForm.h -------------------------------------------------------------------------------- /include/RE/T/TESBoundAnimObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESBoundAnimObject.h -------------------------------------------------------------------------------- /include/RE/T/TESBoundObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESBoundObject.h -------------------------------------------------------------------------------- /include/RE/T/TESCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESCamera.h -------------------------------------------------------------------------------- /include/RE/T/TESClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESClass.h -------------------------------------------------------------------------------- /include/RE/T/TESClimate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESClimate.h -------------------------------------------------------------------------------- /include/RE/T/TESCombatStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESCombatStyle.h -------------------------------------------------------------------------------- /include/RE/T/TESCondition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESCondition.h -------------------------------------------------------------------------------- /include/RE/T/TESContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESContainer.h -------------------------------------------------------------------------------- /include/RE/T/TESDataHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESDataHandler.h -------------------------------------------------------------------------------- /include/RE/T/TESDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESDescription.h -------------------------------------------------------------------------------- /include/RE/T/TESEffectShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESEffectShader.h -------------------------------------------------------------------------------- /include/RE/T/TESEnchantableForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESEnchantableForm.h -------------------------------------------------------------------------------- /include/RE/T/TESEyes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESEyes.h -------------------------------------------------------------------------------- /include/RE/T/TESFaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESFaction.h -------------------------------------------------------------------------------- /include/RE/T/TESFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESFile.h -------------------------------------------------------------------------------- /include/RE/T/TESFlora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESFlora.h -------------------------------------------------------------------------------- /include/RE/T/TESForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESForm.h -------------------------------------------------------------------------------- /include/RE/T/TESFormRefCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESFormRefCount.h -------------------------------------------------------------------------------- /include/RE/T/TESFullName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESFullName.h -------------------------------------------------------------------------------- /include/RE/T/TESFurniture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESFurniture.h -------------------------------------------------------------------------------- /include/RE/T/TESGlobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESGlobal.h -------------------------------------------------------------------------------- /include/RE/T/TESGrass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESGrass.h -------------------------------------------------------------------------------- /include/RE/T/TESHandleForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESHandleForm.h -------------------------------------------------------------------------------- /include/RE/T/TESIdleForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESIdleForm.h -------------------------------------------------------------------------------- /include/RE/T/TESImageSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESImageSpace.h -------------------------------------------------------------------------------- /include/RE/T/TESImageSpaceModifiableForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESImageSpaceModifiableForm.h -------------------------------------------------------------------------------- /include/RE/T/TESKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESKey.h -------------------------------------------------------------------------------- /include/RE/T/TESLandTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESLandTexture.h -------------------------------------------------------------------------------- /include/RE/T/TESLevCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESLevCharacter.h -------------------------------------------------------------------------------- /include/RE/T/TESLevItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESLevItem.h -------------------------------------------------------------------------------- /include/RE/T/TESLevSpell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESLevSpell.h -------------------------------------------------------------------------------- /include/RE/T/TESLeveledList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESLeveledList.h -------------------------------------------------------------------------------- /include/RE/T/TESLoadScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESLoadScreen.h -------------------------------------------------------------------------------- /include/RE/T/TESMagicTargetForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESMagicTargetForm.h -------------------------------------------------------------------------------- /include/RE/T/TESModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESModel.h -------------------------------------------------------------------------------- /include/RE/T/TESModelTri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESModelTri.h -------------------------------------------------------------------------------- /include/RE/T/TESNPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESNPC.h -------------------------------------------------------------------------------- /include/RE/T/TESNPCData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESNPCData.h -------------------------------------------------------------------------------- /include/RE/T/TESObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESObject.h -------------------------------------------------------------------------------- /include/RE/T/TESObjectACTI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESObjectACTI.h -------------------------------------------------------------------------------- /include/RE/T/TESObjectANIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESObjectANIO.h -------------------------------------------------------------------------------- /include/RE/T/TESObjectARMA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESObjectARMA.h -------------------------------------------------------------------------------- /include/RE/T/TESObjectARMO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESObjectARMO.h -------------------------------------------------------------------------------- /include/RE/T/TESObjectBOOK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESObjectBOOK.h -------------------------------------------------------------------------------- /include/RE/T/TESObjectCELL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESObjectCELL.h -------------------------------------------------------------------------------- /include/RE/T/TESObjectCONT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESObjectCONT.h -------------------------------------------------------------------------------- /include/RE/T/TESObjectDOOR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESObjectDOOR.h -------------------------------------------------------------------------------- /include/RE/T/TESObjectLIGH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESObjectLIGH.h -------------------------------------------------------------------------------- /include/RE/T/TESObjectMISC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESObjectMISC.h -------------------------------------------------------------------------------- /include/RE/T/TESObjectREFR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESObjectREFR.h -------------------------------------------------------------------------------- /include/RE/T/TESObjectSTAT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESObjectSTAT.h -------------------------------------------------------------------------------- /include/RE/T/TESObjectWEAP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESObjectWEAP.h -------------------------------------------------------------------------------- /include/RE/T/TESPackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESPackage.h -------------------------------------------------------------------------------- /include/RE/T/TESProduceForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESProduceForm.h -------------------------------------------------------------------------------- /include/RE/T/TESQuest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESQuest.h -------------------------------------------------------------------------------- /include/RE/T/TESRace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESRace.h -------------------------------------------------------------------------------- /include/RE/T/TESRaceForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESRaceForm.h -------------------------------------------------------------------------------- /include/RE/T/TESRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESRegion.h -------------------------------------------------------------------------------- /include/RE/T/TESResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESResponse.h -------------------------------------------------------------------------------- /include/RE/T/TESSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESSound.h -------------------------------------------------------------------------------- /include/RE/T/TESSpellList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESSpellList.h -------------------------------------------------------------------------------- /include/RE/T/TESTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESTexture.h -------------------------------------------------------------------------------- /include/RE/T/TESTopicInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESTopicInfo.h -------------------------------------------------------------------------------- /include/RE/T/TESValueForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESValueForm.h -------------------------------------------------------------------------------- /include/RE/T/TESWaterForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESWaterForm.h -------------------------------------------------------------------------------- /include/RE/T/TESWeather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESWeather.h -------------------------------------------------------------------------------- /include/RE/T/TESWeightForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESWeightForm.h -------------------------------------------------------------------------------- /include/RE/T/TESWorldSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TESWorldSpace.h -------------------------------------------------------------------------------- /include/RE/T/TLS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TLS.h -------------------------------------------------------------------------------- /include/RE/T/TypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/T/TypeInfo.h -------------------------------------------------------------------------------- /include/RE/U/UI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/U/UI.h -------------------------------------------------------------------------------- /include/RE/U/UICellRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/U/UICellRenderer.h -------------------------------------------------------------------------------- /include/RE/U/UIMessageQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/U/UIMessageQueue.h -------------------------------------------------------------------------------- /include/RE/V/Variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/V/Variable.h -------------------------------------------------------------------------------- /include/RE/V/VirtualMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/V/VirtualMachine.h -------------------------------------------------------------------------------- /include/RE/W/WritableStringTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/W/WritableStringTable.h -------------------------------------------------------------------------------- /include/RE/W/WritableTypeTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/W/WritableTypeTable.h -------------------------------------------------------------------------------- /include/RE/W/WwiseGUID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/W/WwiseGUID.h -------------------------------------------------------------------------------- /include/RE/W/WwiseSoundHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/RE/W/WwiseSoundHook.h -------------------------------------------------------------------------------- /include/REL/ID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REL/ID.h -------------------------------------------------------------------------------- /include/REL/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REL/Module.h -------------------------------------------------------------------------------- /include/REL/Offset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REL/Offset.h -------------------------------------------------------------------------------- /include/REL/Pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REL/Pattern.h -------------------------------------------------------------------------------- /include/REL/REL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REL/REL.h -------------------------------------------------------------------------------- /include/REL/Relocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REL/Relocation.h -------------------------------------------------------------------------------- /include/REL/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REL/Version.h -------------------------------------------------------------------------------- /include/REX/PS4.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "REX/PS4/SCEPAD.h" 4 | -------------------------------------------------------------------------------- /include/REX/PS4/SCEPAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/PS4/SCEPAD.h -------------------------------------------------------------------------------- /include/REX/REX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/REX.h -------------------------------------------------------------------------------- /include/REX/REX/Enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/REX/Enum.h -------------------------------------------------------------------------------- /include/REX/REX/EnumSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/REX/EnumSet.h -------------------------------------------------------------------------------- /include/REX/REX/INI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/REX/INI.h -------------------------------------------------------------------------------- /include/REX/REX/JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/REX/JSON.h -------------------------------------------------------------------------------- /include/REX/REX/Setting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/REX/Setting.h -------------------------------------------------------------------------------- /include/REX/REX/Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/REX/Singleton.h -------------------------------------------------------------------------------- /include/REX/REX/TOML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/REX/TOML.h -------------------------------------------------------------------------------- /include/REX/W32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/W32.h -------------------------------------------------------------------------------- /include/REX/W32/ADVAPI32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/W32/ADVAPI32.h -------------------------------------------------------------------------------- /include/REX/W32/BASE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/W32/BASE.h -------------------------------------------------------------------------------- /include/REX/W32/BCRYPT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/W32/BCRYPT.h -------------------------------------------------------------------------------- /include/REX/W32/COM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/W32/COM.h -------------------------------------------------------------------------------- /include/REX/W32/COMPTR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/W32/COMPTR.h -------------------------------------------------------------------------------- /include/REX/W32/D3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/W32/D3D.h -------------------------------------------------------------------------------- /include/REX/W32/DBGHELP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/W32/DBGHELP.h -------------------------------------------------------------------------------- /include/REX/W32/DINPUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/W32/DINPUT.h -------------------------------------------------------------------------------- /include/REX/W32/DXGI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/W32/DXGI.h -------------------------------------------------------------------------------- /include/REX/W32/DXGI_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/W32/DXGI_2.h -------------------------------------------------------------------------------- /include/REX/W32/DXGI_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/W32/DXGI_3.h -------------------------------------------------------------------------------- /include/REX/W32/DXGI_4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/W32/DXGI_4.h -------------------------------------------------------------------------------- /include/REX/W32/DXGI_5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/W32/DXGI_5.h -------------------------------------------------------------------------------- /include/REX/W32/DXGI_6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/W32/DXGI_6.h -------------------------------------------------------------------------------- /include/REX/W32/KERNEL32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/W32/KERNEL32.h -------------------------------------------------------------------------------- /include/REX/W32/NT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/W32/NT.h -------------------------------------------------------------------------------- /include/REX/W32/OLE32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/W32/OLE32.h -------------------------------------------------------------------------------- /include/REX/W32/SHELL32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/W32/SHELL32.h -------------------------------------------------------------------------------- /include/REX/W32/USER32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/W32/USER32.h -------------------------------------------------------------------------------- /include/REX/W32/VERSION.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/W32/VERSION.h -------------------------------------------------------------------------------- /include/REX/W32/WS2_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/W32/WS2_32.h -------------------------------------------------------------------------------- /include/REX/W32/XINPUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/REX/W32/XINPUT.h -------------------------------------------------------------------------------- /include/SFSE/API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/SFSE/API.h -------------------------------------------------------------------------------- /include/SFSE/IAT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/SFSE/IAT.h -------------------------------------------------------------------------------- /include/SFSE/Impl/PCH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/SFSE/Impl/PCH.h -------------------------------------------------------------------------------- /include/SFSE/Impl/Stubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/SFSE/Impl/Stubs.h -------------------------------------------------------------------------------- /include/SFSE/InputMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/SFSE/InputMap.h -------------------------------------------------------------------------------- /include/SFSE/Interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/SFSE/Interfaces.h -------------------------------------------------------------------------------- /include/SFSE/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/SFSE/Logger.h -------------------------------------------------------------------------------- /include/SFSE/SFSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/SFSE/SFSE.h -------------------------------------------------------------------------------- /include/SFSE/Trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/SFSE/Trampoline.h -------------------------------------------------------------------------------- /include/SFSE/Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/SFSE/Utilities.h -------------------------------------------------------------------------------- /include/SFSE/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/include/SFSE/Version.h -------------------------------------------------------------------------------- /scripts/IDAPDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/scripts/IDAPDB.py -------------------------------------------------------------------------------- /scripts/build-debug-clang-cl-test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/scripts/build-debug-clang-cl-test.bat -------------------------------------------------------------------------------- /scripts/build-debug-clang-cl.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/scripts/build-debug-clang-cl.bat -------------------------------------------------------------------------------- /scripts/build-debug-msvc-test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/scripts/build-debug-msvc-test.bat -------------------------------------------------------------------------------- /scripts/build-debug-msvc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/scripts/build-debug-msvc.bat -------------------------------------------------------------------------------- /scripts/build-release-clang-cl-test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/scripts/build-release-clang-cl-test.bat -------------------------------------------------------------------------------- /scripts/build-release-clang-cl.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/scripts/build-release-clang-cl.bat -------------------------------------------------------------------------------- /scripts/build-release-msvc-test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/scripts/build-release-msvc-test.bat -------------------------------------------------------------------------------- /scripts/build-release-msvc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/scripts/build-release-msvc.bat -------------------------------------------------------------------------------- /scripts/make-sln-clang-cl.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/scripts/make-sln-clang-cl.bat -------------------------------------------------------------------------------- /scripts/make-sln-msvc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/scripts/make-sln-msvc.bat -------------------------------------------------------------------------------- /src/RE/A/Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/src/RE/A/Array.cpp -------------------------------------------------------------------------------- /src/RE/B/BGSKeywordForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/src/RE/B/BGSKeywordForm.cpp -------------------------------------------------------------------------------- /src/RE/B/BSLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/src/RE/B/BSLock.cpp -------------------------------------------------------------------------------- /src/RE/B/BSLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/src/RE/B/BSLog.cpp -------------------------------------------------------------------------------- /src/RE/B/BSSystemFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/src/RE/B/BSSystemFile.cpp -------------------------------------------------------------------------------- /src/RE/I/idTCP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/src/RE/I/idTCP.cpp -------------------------------------------------------------------------------- /src/RE/N/NiMatrix3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/src/RE/N/NiMatrix3.cpp -------------------------------------------------------------------------------- /src/RE/N/NiPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/src/RE/N/NiPoint.cpp -------------------------------------------------------------------------------- /src/RE/R/RemoteDebugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/src/RE/R/RemoteDebugger.cpp -------------------------------------------------------------------------------- /src/RE/S/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/src/RE/S/Stream.cpp -------------------------------------------------------------------------------- /src/RE/S/StreamBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/src/RE/S/StreamBase.cpp -------------------------------------------------------------------------------- /src/RE/Starfield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/src/RE/Starfield.cpp -------------------------------------------------------------------------------- /src/RE/T/TESObjectREFR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/src/RE/T/TESObjectREFR.cpp -------------------------------------------------------------------------------- /src/RE/T/TypeInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/src/RE/T/TypeInfo.cpp -------------------------------------------------------------------------------- /src/RE/V/Variable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/src/RE/V/Variable.cpp -------------------------------------------------------------------------------- /src/REL/ID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/src/REL/ID.cpp -------------------------------------------------------------------------------- /src/REX/REX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/src/REX/REX.cpp -------------------------------------------------------------------------------- /src/REX/W32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/src/REX/W32.cpp -------------------------------------------------------------------------------- /src/SFSE/API.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/src/SFSE/API.cpp -------------------------------------------------------------------------------- /src/SFSE/IAT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/src/SFSE/IAT.cpp -------------------------------------------------------------------------------- /src/SFSE/InputMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/src/SFSE/InputMap.cpp -------------------------------------------------------------------------------- /src/SFSE/Interfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/src/SFSE/Interfaces.cpp -------------------------------------------------------------------------------- /src/SFSE/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/src/SFSE/Logger.cpp -------------------------------------------------------------------------------- /src/SFSE/Trampoline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/src/SFSE/Trampoline.cpp -------------------------------------------------------------------------------- /test/test.cpp: -------------------------------------------------------------------------------- 1 | #include "RE/Starfield.h" 2 | -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/vcpkg.json -------------------------------------------------------------------------------- /xmake-extra.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/xmake-extra.lua -------------------------------------------------------------------------------- /xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Starfield-Reverse-Engineering/CommonLibSF/HEAD/xmake.lua --------------------------------------------------------------------------------