├── .clang-format ├── .clang-tidy ├── .github └── workflows │ ├── build-pr.yml │ └── dev-release.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CMakePresets.json ├── LICENSE ├── README.md ├── cmake.toml ├── cmkr.cmake ├── dependencies ├── CMakeLists.txt ├── imguizmo │ ├── .editorconfig │ ├── .gitignore │ ├── GraphEditor.cpp │ ├── GraphEditor.h │ ├── ImCurveEdit.cpp │ ├── ImCurveEdit.h │ ├── ImGradient.cpp │ ├── ImGradient.h │ ├── ImGuizmo.cpp │ ├── ImGuizmo.h │ ├── ImSequencer.cpp │ ├── ImSequencer.h │ ├── ImZoomSlider.h │ ├── Images │ │ └── nodeeditor.jpg │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── bin │ │ └── imgui.ini │ ├── example │ │ ├── ImApp.h │ │ ├── ImGuizmoSample.vcxproj │ │ ├── imconfig.h │ │ ├── imgui.cpp │ │ ├── imgui.h │ │ ├── imgui_demo.cpp │ │ ├── imgui_draw.cpp │ │ ├── imgui_internal.h │ │ ├── imgui_tables.cpp │ │ ├── imgui_widgets.cpp │ │ ├── imstb_rectpack.h │ │ ├── imstb_textedit.h │ │ ├── imstb_truetype.h │ │ ├── main.cpp │ │ └── stb_image.h │ └── vcpkg-example │ │ ├── CMakeLists.txt │ │ ├── ImApp.h │ │ ├── README.md │ │ ├── imgui.ini │ │ ├── main.cpp │ │ └── vcpkg.json ├── imnodes │ ├── .clang-format │ ├── .clang-tidy │ ├── .github │ │ └── workflows │ │ │ └── build.yaml │ ├── .gitignore │ ├── .gitmodules │ ├── CMakeLists.txt │ ├── LICENSE.md │ ├── README.md │ ├── imnodes.cpp │ ├── imnodes.h │ ├── imnodes_internal.h │ └── vcpkg.json ├── lua │ ├── README │ └── src │ │ ├── Makefile │ │ ├── lapi.c │ │ ├── lapi.h │ │ ├── lauxlib.c │ │ ├── lauxlib.h │ │ ├── lbaselib.c │ │ ├── lcode.c │ │ ├── lcode.h │ │ ├── lcorolib.c │ │ ├── lctype.c │ │ ├── lctype.h │ │ ├── ldblib.c │ │ ├── ldebug.c │ │ ├── ldebug.h │ │ ├── ldo.c │ │ ├── ldo.h │ │ ├── ldump.c │ │ ├── lfunc.c │ │ ├── lfunc.h │ │ ├── lgc.c │ │ ├── lgc.h │ │ ├── linit.c │ │ ├── liolib.c │ │ ├── ljumptab.h │ │ ├── llex.c │ │ ├── llex.h │ │ ├── llimits.h │ │ ├── lmathlib.c │ │ ├── lmem.c │ │ ├── lmem.h │ │ ├── loadlib.c │ │ ├── lobject.c │ │ ├── lobject.h │ │ ├── lopcodes.c │ │ ├── lopcodes.h │ │ ├── lopnames.h │ │ ├── loslib.c │ │ ├── lparser.c │ │ ├── lparser.h │ │ ├── lprefix.h │ │ ├── lstate.c │ │ ├── lstate.h │ │ ├── lstring.c │ │ ├── lstring.h │ │ ├── lstrlib.c │ │ ├── ltable.c │ │ ├── ltable.h │ │ ├── ltablib.c │ │ ├── ltm.c │ │ ├── ltm.h │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── luaconf.h │ │ ├── lualib.h │ │ ├── lundump.c │ │ ├── lundump.h │ │ ├── lutf8lib.c │ │ ├── lvm.c │ │ ├── lvm.h │ │ ├── lzio.c │ │ └── lzio.h ├── nlohmann │ └── json.hpp ├── openvr │ ├── bin │ │ └── win64 │ │ │ ├── openvr_api.dll │ │ │ └── openvr_api.dll.sig │ ├── headers │ │ ├── openvr.h │ │ ├── openvr_api.cs │ │ ├── openvr_api.json │ │ ├── openvr_capi.h │ │ └── openvr_driver.h │ └── lib │ │ └── win64 │ │ └── openvr_api.lib └── sol2 │ ├── LICENSE.txt │ ├── README.md │ └── single │ ├── CMakeLists.txt │ ├── include │ └── sol │ │ ├── config.hpp │ │ ├── forward.hpp │ │ └── sol.hpp │ └── single.py ├── examples ├── example_plugin │ ├── Plugin.cpp │ ├── Plugin.hpp │ ├── imgui │ │ ├── font_robotomedium.hpp │ │ ├── imgui_impl_dx11.cpp │ │ ├── imgui_impl_dx11.h │ │ ├── imgui_impl_dx12.cpp │ │ ├── imgui_impl_dx12.h │ │ ├── imgui_impl_win32.cpp │ │ ├── imgui_impl_win32.h │ │ └── re2_imconfig.hpp │ └── rendering │ │ ├── d3d11.cpp │ │ ├── d3d11.hpp │ │ ├── d3d12.cpp │ │ ├── d3d12.hpp │ │ └── shared.hpp └── weapon_stay_big_plugin │ └── weapon_stay_big.cpp ├── include └── reframework │ ├── API.h │ └── API.hpp ├── reversing ├── dmc5_re3_port.rcnet ├── mhrise.genny ├── mhrisetdb71.genny ├── re2.rcnet ├── re2_new.rcnet ├── re2_new_new.rcnet ├── re2_tdb70.rcnet ├── re3.genny ├── re3.rcnet ├── re3_tdb70.rcnet ├── re7.genny ├── re7.rcnet ├── re8.genny ├── re8.rcnet ├── rsz │ ├── emulation-dumper.py │ ├── non-native-dumper.py │ ├── readme.md │ └── requirements.txt └── scripts │ ├── README.md │ ├── ida_namer │ ├── ida_namer.py │ └── requirements.txt │ └── pathdumper │ ├── pathdumper.exe │ ├── pathdumper.py │ └── requirements.txt ├── scripts ├── re2_sharpness_removal.lua ├── re2_vr_crosshair.lua ├── re2_vr_grenade.lua ├── re2_vr_melee.lua ├── re8_vr.lua ├── utility │ ├── GameObject.lua │ ├── ManagedObjectDict.lua │ ├── RE2.lua │ ├── RE7.lua │ ├── RE8.lua │ └── Statics.lua └── vr │ └── VRControllerManager.lua ├── shared ├── sdk │ ├── Application.cpp │ ├── Application.hpp │ ├── Enums_Internal.hpp │ ├── ManagedObject.cpp │ ├── ManagedObject.hpp │ ├── Math.hpp │ ├── Memory.cpp │ ├── Memory.hpp │ ├── MotionFsm2Layer.cpp │ ├── MotionFsm2Layer.hpp │ ├── MurmurHash.cpp │ ├── MurmurHash.hpp │ ├── REArray.cpp │ ├── REArray.hpp │ ├── REComponent.hpp │ ├── REContext.cpp │ ├── REContext.hpp │ ├── REGlobals.cpp │ ├── REGlobals.hpp │ ├── REManagedObject.cpp │ ├── REManagedObject.hpp │ ├── REMath.hpp │ ├── RENativeArray.hpp │ ├── REString.hpp │ ├── RETransform.cpp │ ├── RETransform.hpp │ ├── REType.cpp │ ├── REType.hpp │ ├── RETypeCLR.hpp │ ├── RETypeDB.cpp │ ├── RETypeDB.hpp │ ├── RETypeDefinition.cpp │ ├── RETypeDefinition.hpp │ ├── RETypes.cpp │ ├── RETypes.hpp │ ├── REVTableHook.cpp │ ├── REVTableHook.hpp │ ├── REVariableDescriptor.hpp │ ├── ReClass.hpp │ ├── ReClass_Internal.hpp │ ├── ReClass_Internal_DMC5.hpp │ ├── ReClass_Internal_RE2_TDB70.hpp │ ├── ReClass_Internal_RE3.hpp │ ├── ReClass_Internal_RE3_TDB70.hpp │ ├── ReClass_Internal_RE7.hpp │ ├── ReClass_Internal_RE8.hpp │ ├── Renderer.cpp │ ├── Renderer.hpp │ ├── ResourceManager.cpp │ ├── ResourceManager.hpp │ ├── RopewaySweetLightManager.hpp │ ├── SDK.cpp │ ├── SDK.hpp │ ├── SceneManager.cpp │ ├── SceneManager.hpp │ ├── SystemArray.cpp │ ├── SystemArray.hpp │ ├── TDBVer.hpp │ ├── helpers │ │ ├── NativeObject.cpp │ │ └── NativeObject.hpp │ ├── intrusive_ptr.hpp │ └── regenny │ │ ├── mhrise │ │ └── via │ │ │ ├── Capsule.hpp │ │ │ ├── OBB.hpp │ │ │ ├── Sphere.hpp │ │ │ ├── motion │ │ │ ├── AxisDirection.hpp │ │ │ ├── Chain.hpp │ │ │ ├── ChainCollisionArray.hpp │ │ │ ├── ChainCollisionData.hpp │ │ │ ├── ChainCollisions.hpp │ │ │ └── SecondaryAnimation.hpp │ │ │ ├── vec3.hpp │ │ │ └── vec4.hpp │ │ ├── mhrise_tdb71 │ │ ├── tdb71 │ │ │ ├── AttributeDef.hpp │ │ │ ├── Field.hpp │ │ │ ├── FieldImpl.hpp │ │ │ ├── MethodDefinition.hpp │ │ │ ├── MethodImpl.hpp │ │ │ ├── ParamList.hpp │ │ │ ├── ParameterDef.hpp │ │ │ ├── Property.hpp │ │ │ ├── PropertyImpl.hpp │ │ │ ├── TDB.hpp │ │ │ ├── TypeDefinition.hpp │ │ │ └── TypeImpl.hpp │ │ └── via │ │ │ ├── BasisPlane.hpp │ │ │ ├── CameraType.hpp │ │ │ ├── Capsule.hpp │ │ │ ├── Color.hpp │ │ │ ├── Component.hpp │ │ │ ├── DeviceOrientation.hpp │ │ │ ├── DisplayType.hpp │ │ │ ├── IntArray.hpp │ │ │ ├── ManagedObjectArray.hpp │ │ │ ├── MobileBarState.hpp │ │ │ ├── Point.hpp │ │ │ ├── RenderType.hpp │ │ │ ├── Scene.hpp │ │ │ ├── SceneView.hpp │ │ │ ├── Size.hpp │ │ │ ├── Sphere.hpp │ │ │ ├── UInt8Array.hpp │ │ │ ├── UIntArray.hpp │ │ │ ├── UIntArrayArray.hpp │ │ │ ├── Window.hpp │ │ │ ├── behaviortree │ │ │ ├── BehaviorTree.hpp │ │ │ ├── BehaviorTreeCoreHandleArray.hpp │ │ │ ├── Condition.hpp │ │ │ ├── Core.hpp │ │ │ ├── CoreHandle.hpp │ │ │ ├── NodeArray.hpp │ │ │ ├── NodeArray2.hpp │ │ │ ├── NodeStatus.hpp │ │ │ ├── Selector.hpp │ │ │ ├── SelectorFSM.hpp │ │ │ ├── TreeNode.hpp │ │ │ ├── TreeNodeData.hpp │ │ │ ├── TreeObject.hpp │ │ │ └── TreeObjectData.hpp │ │ │ ├── clr │ │ │ └── ManagedObject.hpp │ │ │ ├── motion │ │ │ ├── AxisDirection.hpp │ │ │ ├── Chain.hpp │ │ │ ├── ChainCollisionArray.hpp │ │ │ ├── ChainCollisionData.hpp │ │ │ ├── ChainCollisionTop.hpp │ │ │ ├── ChainCollisions.hpp │ │ │ ├── MotionFsm2.hpp │ │ │ ├── MotionFsm2Layer.hpp │ │ │ └── SecondaryAnimation.hpp │ │ │ ├── typeinfo │ │ │ └── TypeInfo.hpp │ │ │ ├── vec3.hpp │ │ │ └── vec4.hpp │ │ ├── re2_tdb70 │ │ ├── BullShit.hpp │ │ ├── DeserializeSequence.hpp │ │ ├── ManagedVtable.hpp │ │ ├── System │ │ │ └── String.hpp │ │ ├── TypeDefinition.hpp │ │ ├── game │ │ │ ├── IkArmFit.hpp │ │ │ └── InputSystem.hpp │ │ ├── tdb67 │ │ │ ├── AttributeDef.hpp │ │ │ ├── Field.hpp │ │ │ ├── FieldImpl.hpp │ │ │ ├── MethodDefinition.hpp │ │ │ ├── MethodImpl.hpp │ │ │ ├── ParamList.hpp │ │ │ ├── ParameterDef.hpp │ │ │ ├── Property.hpp │ │ │ ├── PropertyImpl.hpp │ │ │ ├── TDB.hpp │ │ │ ├── TypeDefinition.hpp │ │ │ └── TypeImpl.hpp │ │ └── via │ │ │ ├── BasisPlane.hpp │ │ │ ├── CameraType.hpp │ │ │ ├── Capsule.hpp │ │ │ ├── Color.hpp │ │ │ ├── Component.hpp │ │ │ ├── DeviceOrientation.hpp │ │ │ ├── DisplayType.hpp │ │ │ ├── Folder.hpp │ │ │ ├── GameObject.hpp │ │ │ ├── JobSet.hpp │ │ │ ├── Joint.hpp │ │ │ ├── JointArray.hpp │ │ │ ├── JointData.hpp │ │ │ ├── JointDesc.hpp │ │ │ ├── JointMap.hpp │ │ │ ├── ManagedObjectArray.hpp │ │ │ ├── MobileBarState.hpp │ │ │ ├── Motion.hpp │ │ │ ├── OBB.hpp │ │ │ ├── Object.hpp │ │ │ ├── Plane.hpp │ │ │ ├── Point.hpp │ │ │ ├── Range.hpp │ │ │ ├── RenderType.hpp │ │ │ ├── Scene.hpp │ │ │ ├── SceneArray.hpp │ │ │ ├── SceneManager.hpp │ │ │ ├── SceneView.hpp │ │ │ ├── Size.hpp │ │ │ ├── Sphere.hpp │ │ │ ├── Transform.hpp │ │ │ ├── Window.hpp │ │ │ ├── array.hpp │ │ │ ├── behaviortree │ │ │ ├── BehaviorTree.hpp │ │ │ ├── BehaviorTreeCoreHandleArray.hpp │ │ │ ├── Condition.hpp │ │ │ ├── Core.hpp │ │ │ ├── CoreHandle.hpp │ │ │ ├── NodeArray.hpp │ │ │ ├── NodeStatus.hpp │ │ │ ├── Selector.hpp │ │ │ ├── TreeNode.hpp │ │ │ ├── TreeNodeData.hpp │ │ │ ├── TreeObject.hpp │ │ │ └── TreeObjectData.hpp │ │ │ ├── clr │ │ │ └── ManagedObject.hpp │ │ │ ├── fixed_array_jobs.hpp │ │ │ ├── gui │ │ │ ├── Control.hpp │ │ │ ├── GUI.hpp │ │ │ ├── GUIManager.hpp │ │ │ ├── GUIMeshRenderer.hpp │ │ │ ├── PlayObject.hpp │ │ │ ├── PrimitiveContext.hpp │ │ │ ├── TransformObject.hpp │ │ │ ├── View.hpp │ │ │ └── Window.hpp │ │ │ ├── mat4.hpp │ │ │ ├── motion │ │ │ ├── AxisDirection.hpp │ │ │ ├── Chain.hpp │ │ │ ├── ChainCollisionArray.hpp │ │ │ ├── ChainCollisionData.hpp │ │ │ ├── ChainCollisionTop.hpp │ │ │ ├── ChainCollisions.hpp │ │ │ ├── MotionFsm2.hpp │ │ │ ├── MotionFsm2Layer.hpp │ │ │ └── SecondaryAnimation.hpp │ │ │ ├── typeinfo │ │ │ └── TypeInfo.hpp │ │ │ ├── vec3.hpp │ │ │ └── vec4.hpp │ │ ├── re3 │ │ ├── DeserializeSequence.hpp │ │ ├── ManagedVtable.hpp │ │ ├── System │ │ │ └── String.hpp │ │ ├── TypeDefinition.hpp │ │ ├── game │ │ │ ├── IkArmFit.hpp │ │ │ └── InputSystem.hpp │ │ ├── tdb67 │ │ │ ├── MethodDefinition.hpp │ │ │ └── TDB.hpp │ │ └── via │ │ │ ├── BasisPlane.hpp │ │ │ ├── CameraType.hpp │ │ │ ├── Capsule.hpp │ │ │ ├── Color.hpp │ │ │ ├── Component.hpp │ │ │ ├── DeviceOrientation.hpp │ │ │ ├── DisplayType.hpp │ │ │ ├── Folder.hpp │ │ │ ├── GameObject.hpp │ │ │ ├── Joint.hpp │ │ │ ├── JointArray.hpp │ │ │ ├── JointData.hpp │ │ │ ├── JointDesc.hpp │ │ │ ├── JointMap.hpp │ │ │ ├── MobileBarState.hpp │ │ │ ├── Motion.hpp │ │ │ ├── OBB.hpp │ │ │ ├── Point.hpp │ │ │ ├── Range.hpp │ │ │ ├── RenderType.hpp │ │ │ ├── Scene.hpp │ │ │ ├── SceneArray.hpp │ │ │ ├── SceneManager.hpp │ │ │ ├── SceneView.hpp │ │ │ ├── Size.hpp │ │ │ ├── Sphere.hpp │ │ │ ├── Transform.hpp │ │ │ ├── Window.hpp │ │ │ ├── array.hpp │ │ │ ├── behaviortree │ │ │ ├── BehaviorTree.hpp │ │ │ ├── BehaviorTreeCoreHandleArray.hpp │ │ │ ├── BehaviorTreeData.hpp │ │ │ ├── Condition.hpp │ │ │ ├── Core.hpp │ │ │ ├── CoreHandle.hpp │ │ │ ├── IntArray.hpp │ │ │ ├── ManagedObjectArray.hpp │ │ │ ├── NodeArray.hpp │ │ │ ├── NodeArray2.hpp │ │ │ ├── NodeStatus.hpp │ │ │ ├── Selector.hpp │ │ │ ├── SelectorFSM.hpp │ │ │ ├── TreeNode.hpp │ │ │ ├── TreeNodeData.hpp │ │ │ ├── TreeObject.hpp │ │ │ ├── TreeObjectData.hpp │ │ │ ├── UInt8Array.hpp │ │ │ └── UIntArray.hpp │ │ │ ├── clr │ │ │ └── ManagedObject.hpp │ │ │ ├── mat4.hpp │ │ │ ├── motion │ │ │ ├── AxisDirection.hpp │ │ │ ├── Chain.hpp │ │ │ ├── ChainCollisionArray.hpp │ │ │ ├── ChainCollisionData.hpp │ │ │ ├── ChainCollisions.hpp │ │ │ ├── Data.hpp │ │ │ ├── MotionFsm2.hpp │ │ │ ├── MotionFsm2Internal.hpp │ │ │ ├── MotionFsm2Layer.hpp │ │ │ ├── MotionFsm2RawData.hpp │ │ │ ├── MotionFsm2Resource.hpp │ │ │ ├── SecondaryAnimation.hpp │ │ │ ├── TransitionData.hpp │ │ │ └── TransitionMap.hpp │ │ │ ├── typeinfo │ │ │ └── TypeInfo.hpp │ │ │ ├── vec3.hpp │ │ │ └── vec4.hpp │ │ ├── re7 │ │ ├── BullShit.hpp │ │ ├── DeserializeSequence.hpp │ │ ├── ManagedVtable.hpp │ │ ├── RenderDeviceDX11.hpp │ │ ├── StdMap.hpp │ │ ├── StdMapData.hpp │ │ ├── StdMapNode.hpp │ │ ├── System │ │ │ ├── String.hpp │ │ │ └── Type.hpp │ │ ├── TypeArray.hpp │ │ ├── TypeDefinition.hpp │ │ ├── Unk.hpp │ │ ├── game │ │ │ ├── IkArmFit.hpp │ │ │ └── InputSystem.hpp │ │ ├── tdb49 │ │ │ ├── Event.hpp │ │ │ ├── FieldDefinition.hpp │ │ │ ├── MethodDefinition.hpp │ │ │ ├── MethodParam.hpp │ │ │ ├── Module.hpp │ │ │ ├── PropertyDefinition.hpp │ │ │ ├── TDB.hpp │ │ │ └── TypeDefinition.hpp │ │ ├── tdb67 │ │ │ ├── MethodDefinition.hpp │ │ │ └── TDB.hpp │ │ └── via │ │ │ ├── Application.hpp │ │ │ ├── BasisPlane.hpp │ │ │ ├── CameraType.hpp │ │ │ ├── Color.hpp │ │ │ ├── Component.hpp │ │ │ ├── DeviceOrientation.hpp │ │ │ ├── DisplayType.hpp │ │ │ ├── Entry.hpp │ │ │ ├── Folder.hpp │ │ │ ├── GameObject.hpp │ │ │ ├── JobSet.hpp │ │ │ ├── Joint.hpp │ │ │ ├── JointArray.hpp │ │ │ ├── JointData.hpp │ │ │ ├── JointDesc.hpp │ │ │ ├── JointMap.hpp │ │ │ ├── MobileBarState.hpp │ │ │ ├── Motion.hpp │ │ │ ├── Object.hpp │ │ │ ├── Point.hpp │ │ │ ├── Range.hpp │ │ │ ├── RenderType.hpp │ │ │ ├── Scene.hpp │ │ │ ├── SceneArray.hpp │ │ │ ├── SceneManager.hpp │ │ │ ├── SceneView.hpp │ │ │ ├── Size.hpp │ │ │ ├── Transform.hpp │ │ │ ├── Window.hpp │ │ │ ├── array.hpp │ │ │ ├── clr │ │ │ ├── ManagedObject.hpp │ │ │ └── VM.hpp │ │ │ ├── delegate.hpp │ │ │ ├── dictionary.hpp │ │ │ ├── fixed_array_jobs.hpp │ │ │ ├── gui │ │ │ ├── Control.hpp │ │ │ ├── GUI.hpp │ │ │ ├── GUIManager.hpp │ │ │ ├── GUIMeshRenderer.hpp │ │ │ ├── PlayObject.hpp │ │ │ ├── PrimitiveContext.hpp │ │ │ ├── TransformObject.hpp │ │ │ ├── View.hpp │ │ │ └── Window.hpp │ │ │ ├── mat4.hpp │ │ │ ├── motion │ │ │ └── AxisDirection.hpp │ │ │ ├── reflection │ │ │ ├── Method.hpp │ │ │ ├── MethodArray.hpp │ │ │ ├── Property.hpp │ │ │ ├── PropertyArray.hpp │ │ │ └── Reflection.hpp │ │ │ ├── render │ │ │ ├── LayerList.hpp │ │ │ ├── LightRenderer.hpp │ │ │ ├── OutputTargetState.hpp │ │ │ ├── OutputTargetStateDX11.hpp │ │ │ ├── OutputTargetStateDX12.hpp │ │ │ ├── RenderLayer.hpp │ │ │ ├── RenderResource.hpp │ │ │ ├── RenderTargetView.hpp │ │ │ ├── RenderTargetViewDX11.hpp │ │ │ ├── RenderTargetViewDX12.hpp │ │ │ ├── Renderer.hpp │ │ │ ├── TargetDescriptorDX11.hpp │ │ │ ├── TargetDescriptorDX12.hpp │ │ │ └── layer │ │ │ │ └── Output.hpp │ │ │ ├── typeinfo │ │ │ ├── DeserializeSequence.hpp │ │ │ ├── Deserializer.hpp │ │ │ ├── TypeInfo.hpp │ │ │ └── TypeInfoCLR.hpp │ │ │ ├── vec3.hpp │ │ │ └── vec4.hpp │ │ └── re8 │ │ ├── DeserializeSequence.hpp │ │ ├── ManagedVtable.hpp │ │ ├── System │ │ └── String.hpp │ │ ├── TypeDefinition.hpp │ │ ├── game │ │ ├── IkArmFit.hpp │ │ └── InputSystem.hpp │ │ ├── tdb67 │ │ ├── MethodDefinition.hpp │ │ └── TDB.hpp │ │ └── via │ │ ├── BasisPlane.hpp │ │ ├── CameraType.hpp │ │ ├── Capsule.hpp │ │ ├── Color.hpp │ │ ├── Component.hpp │ │ ├── DeviceOrientation.hpp │ │ ├── DisplayType.hpp │ │ ├── Folder.hpp │ │ ├── GameObject.hpp │ │ ├── JobSet.hpp │ │ ├── Joint.hpp │ │ ├── JointArray.hpp │ │ ├── JointData.hpp │ │ ├── JointDesc.hpp │ │ ├── JointMap.hpp │ │ ├── MobileBarState.hpp │ │ ├── Motion.hpp │ │ ├── OBB.hpp │ │ ├── Object.hpp │ │ ├── Plane.hpp │ │ ├── Point.hpp │ │ ├── Range.hpp │ │ ├── RenderType.hpp │ │ ├── Scene.hpp │ │ ├── SceneArray.hpp │ │ ├── SceneManager.hpp │ │ ├── SceneView.hpp │ │ ├── Size.hpp │ │ ├── Sphere.hpp │ │ ├── Transform.hpp │ │ ├── Window.hpp │ │ ├── array.hpp │ │ ├── clr │ │ └── ManagedObject.hpp │ │ ├── fixed_array_jobs.hpp │ │ ├── gui │ │ ├── Control.hpp │ │ ├── GUI.hpp │ │ ├── GUIManager.hpp │ │ ├── GUIMeshRenderer.hpp │ │ ├── PlayObject.hpp │ │ ├── PrimitiveContext.hpp │ │ ├── TransformObject.hpp │ │ ├── View.hpp │ │ └── Window.hpp │ │ ├── mat4.hpp │ │ ├── motion │ │ ├── AxisDirection.hpp │ │ ├── Chain.hpp │ │ ├── ChainCollisionArray.hpp │ │ ├── ChainCollisionData.hpp │ │ ├── ChainCollisionTop.hpp │ │ ├── ChainCollisions.hpp │ │ └── SecondaryAnimation.hpp │ │ ├── typeinfo │ │ └── TypeInfo.hpp │ │ ├── vec3.hpp │ │ └── vec4.hpp └── utility │ ├── FunctionHook.cpp │ ├── FunctionHook.hpp │ ├── Relocate.cpp │ └── Relocate.hpp └── src ├── CMakeLists.txt ├── D3D11Hook.cpp ├── D3D11Hook.hpp ├── D3D12Hook.cpp ├── D3D12Hook.hpp ├── DInputHook.cpp ├── DInputHook.hpp ├── ExceptionHandler.cpp ├── ExceptionHandler.hpp ├── Genny.hpp ├── GennyIda.hpp ├── HookManager.cpp ├── HookManager.hpp ├── LicenseStrings.hpp ├── Main.cpp ├── Mod.hpp ├── Mods.cpp ├── Mods.hpp ├── REFramework.cpp ├── REFramework.hpp ├── Tool.hpp ├── WindowsMessageHook.cpp ├── WindowsMessageHook.hpp ├── mods ├── APIProxy.cpp ├── APIProxy.hpp ├── Camera.cpp ├── Camera.hpp ├── DeveloperTools.cpp ├── DeveloperTools.hpp ├── FirstPerson.cpp ├── FirstPerson.hpp ├── FreeCam.cpp ├── FreeCam.hpp ├── Graphics.cpp ├── Graphics.hpp ├── Hooks.cpp ├── Hooks.hpp ├── IntegrityCheckBypass.cpp ├── IntegrityCheckBypass.hpp ├── ManualFlashlight.cpp ├── ManualFlashlight.hpp ├── PluginLoader.cpp ├── PluginLoader.hpp ├── REFrameworkConfig.cpp ├── REFrameworkConfig.hpp ├── Scene.cpp ├── Scene.hpp ├── ScriptRunner.cpp ├── ScriptRunner.hpp ├── VR.cpp ├── VR.hpp ├── bindings │ ├── FS.cpp │ ├── FS.hpp │ ├── ImGui.cpp │ ├── ImGui.hpp │ ├── Json.cpp │ ├── Json.hpp │ ├── Sdk.cpp │ └── Sdk.hpp ├── tools │ ├── ChainViewer.cpp │ ├── ChainViewer.hpp │ ├── GameObjectsDisplay.cpp │ ├── GameObjectsDisplay.hpp │ ├── ObjectExplorer.cpp │ └── ObjectExplorer.hpp └── vr │ ├── Bindings.cpp │ ├── D3D11Component.cpp │ ├── D3D11Component.hpp │ ├── D3D12Component.cpp │ ├── D3D12Component.hpp │ ├── OverlayComponent.cpp │ ├── OverlayComponent.hpp │ ├── games │ ├── RE8VR.cpp │ └── RE8VR.hpp │ └── runtimes │ ├── OpenVR.cpp │ ├── OpenVR.hpp │ ├── OpenXR.cpp │ ├── OpenXR.hpp │ └── VRRuntime.hpp ├── re2-imgui ├── font_robotomedium.hpp ├── imgui_impl_dx11.cpp ├── imgui_impl_dx11.h ├── imgui_impl_dx12.cpp ├── imgui_impl_dx12.h ├── imgui_impl_win32.cpp ├── imgui_impl_win32.h └── re2_imconfig.hpp └── utility ├── ImGui.cpp └── ImGui.hpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.github/workflows/build-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/.github/workflows/build-pr.yml -------------------------------------------------------------------------------- /.github/workflows/dev-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/.github/workflows/dev-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/README.md -------------------------------------------------------------------------------- /cmake.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/cmake.toml -------------------------------------------------------------------------------- /cmkr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/cmkr.cmake -------------------------------------------------------------------------------- /dependencies/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependencies/imguizmo/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/.editorconfig -------------------------------------------------------------------------------- /dependencies/imguizmo/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .*/ -------------------------------------------------------------------------------- /dependencies/imguizmo/GraphEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/GraphEditor.cpp -------------------------------------------------------------------------------- /dependencies/imguizmo/GraphEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/GraphEditor.h -------------------------------------------------------------------------------- /dependencies/imguizmo/ImCurveEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/ImCurveEdit.cpp -------------------------------------------------------------------------------- /dependencies/imguizmo/ImCurveEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/ImCurveEdit.h -------------------------------------------------------------------------------- /dependencies/imguizmo/ImGradient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/ImGradient.cpp -------------------------------------------------------------------------------- /dependencies/imguizmo/ImGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/ImGradient.h -------------------------------------------------------------------------------- /dependencies/imguizmo/ImGuizmo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/ImGuizmo.cpp -------------------------------------------------------------------------------- /dependencies/imguizmo/ImGuizmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/ImGuizmo.h -------------------------------------------------------------------------------- /dependencies/imguizmo/ImSequencer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/ImSequencer.cpp -------------------------------------------------------------------------------- /dependencies/imguizmo/ImSequencer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/ImSequencer.h -------------------------------------------------------------------------------- /dependencies/imguizmo/ImZoomSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/ImZoomSlider.h -------------------------------------------------------------------------------- /dependencies/imguizmo/Images/nodeeditor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/Images/nodeeditor.jpg -------------------------------------------------------------------------------- /dependencies/imguizmo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/LICENSE -------------------------------------------------------------------------------- /dependencies/imguizmo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/Makefile -------------------------------------------------------------------------------- /dependencies/imguizmo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/README.md -------------------------------------------------------------------------------- /dependencies/imguizmo/bin/imgui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/bin/imgui.ini -------------------------------------------------------------------------------- /dependencies/imguizmo/example/ImApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/example/ImApp.h -------------------------------------------------------------------------------- /dependencies/imguizmo/example/ImGuizmoSample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/example/ImGuizmoSample.vcxproj -------------------------------------------------------------------------------- /dependencies/imguizmo/example/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/example/imconfig.h -------------------------------------------------------------------------------- /dependencies/imguizmo/example/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/example/imgui.cpp -------------------------------------------------------------------------------- /dependencies/imguizmo/example/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/example/imgui.h -------------------------------------------------------------------------------- /dependencies/imguizmo/example/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/example/imgui_demo.cpp -------------------------------------------------------------------------------- /dependencies/imguizmo/example/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/example/imgui_draw.cpp -------------------------------------------------------------------------------- /dependencies/imguizmo/example/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/example/imgui_internal.h -------------------------------------------------------------------------------- /dependencies/imguizmo/example/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/example/imgui_tables.cpp -------------------------------------------------------------------------------- /dependencies/imguizmo/example/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/example/imgui_widgets.cpp -------------------------------------------------------------------------------- /dependencies/imguizmo/example/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/example/imstb_rectpack.h -------------------------------------------------------------------------------- /dependencies/imguizmo/example/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/example/imstb_textedit.h -------------------------------------------------------------------------------- /dependencies/imguizmo/example/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/example/imstb_truetype.h -------------------------------------------------------------------------------- /dependencies/imguizmo/example/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/example/main.cpp -------------------------------------------------------------------------------- /dependencies/imguizmo/example/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/example/stb_image.h -------------------------------------------------------------------------------- /dependencies/imguizmo/vcpkg-example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/vcpkg-example/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/imguizmo/vcpkg-example/ImApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/vcpkg-example/ImApp.h -------------------------------------------------------------------------------- /dependencies/imguizmo/vcpkg-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/vcpkg-example/README.md -------------------------------------------------------------------------------- /dependencies/imguizmo/vcpkg-example/imgui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/vcpkg-example/imgui.ini -------------------------------------------------------------------------------- /dependencies/imguizmo/vcpkg-example/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/vcpkg-example/main.cpp -------------------------------------------------------------------------------- /dependencies/imguizmo/vcpkg-example/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imguizmo/vcpkg-example/vcpkg.json -------------------------------------------------------------------------------- /dependencies/imnodes/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imnodes/.clang-format -------------------------------------------------------------------------------- /dependencies/imnodes/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imnodes/.clang-tidy -------------------------------------------------------------------------------- /dependencies/imnodes/.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imnodes/.github/workflows/build.yaml -------------------------------------------------------------------------------- /dependencies/imnodes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imnodes/.gitignore -------------------------------------------------------------------------------- /dependencies/imnodes/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imnodes/.gitmodules -------------------------------------------------------------------------------- /dependencies/imnodes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imnodes/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/imnodes/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imnodes/LICENSE.md -------------------------------------------------------------------------------- /dependencies/imnodes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imnodes/README.md -------------------------------------------------------------------------------- /dependencies/imnodes/imnodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imnodes/imnodes.cpp -------------------------------------------------------------------------------- /dependencies/imnodes/imnodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imnodes/imnodes.h -------------------------------------------------------------------------------- /dependencies/imnodes/imnodes_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imnodes/imnodes_internal.h -------------------------------------------------------------------------------- /dependencies/imnodes/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/imnodes/vcpkg.json -------------------------------------------------------------------------------- /dependencies/lua/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/README -------------------------------------------------------------------------------- /dependencies/lua/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/Makefile -------------------------------------------------------------------------------- /dependencies/lua/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lapi.c -------------------------------------------------------------------------------- /dependencies/lua/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lapi.h -------------------------------------------------------------------------------- /dependencies/lua/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lauxlib.c -------------------------------------------------------------------------------- /dependencies/lua/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lauxlib.h -------------------------------------------------------------------------------- /dependencies/lua/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lbaselib.c -------------------------------------------------------------------------------- /dependencies/lua/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lcode.c -------------------------------------------------------------------------------- /dependencies/lua/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lcode.h -------------------------------------------------------------------------------- /dependencies/lua/src/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lcorolib.c -------------------------------------------------------------------------------- /dependencies/lua/src/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lctype.c -------------------------------------------------------------------------------- /dependencies/lua/src/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lctype.h -------------------------------------------------------------------------------- /dependencies/lua/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/ldblib.c -------------------------------------------------------------------------------- /dependencies/lua/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/ldebug.c -------------------------------------------------------------------------------- /dependencies/lua/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/ldebug.h -------------------------------------------------------------------------------- /dependencies/lua/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/ldo.c -------------------------------------------------------------------------------- /dependencies/lua/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/ldo.h -------------------------------------------------------------------------------- /dependencies/lua/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/ldump.c -------------------------------------------------------------------------------- /dependencies/lua/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lfunc.c -------------------------------------------------------------------------------- /dependencies/lua/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lfunc.h -------------------------------------------------------------------------------- /dependencies/lua/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lgc.c -------------------------------------------------------------------------------- /dependencies/lua/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lgc.h -------------------------------------------------------------------------------- /dependencies/lua/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/linit.c -------------------------------------------------------------------------------- /dependencies/lua/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/liolib.c -------------------------------------------------------------------------------- /dependencies/lua/src/ljumptab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/ljumptab.h -------------------------------------------------------------------------------- /dependencies/lua/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/llex.c -------------------------------------------------------------------------------- /dependencies/lua/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/llex.h -------------------------------------------------------------------------------- /dependencies/lua/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/llimits.h -------------------------------------------------------------------------------- /dependencies/lua/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lmathlib.c -------------------------------------------------------------------------------- /dependencies/lua/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lmem.c -------------------------------------------------------------------------------- /dependencies/lua/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lmem.h -------------------------------------------------------------------------------- /dependencies/lua/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/loadlib.c -------------------------------------------------------------------------------- /dependencies/lua/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lobject.c -------------------------------------------------------------------------------- /dependencies/lua/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lobject.h -------------------------------------------------------------------------------- /dependencies/lua/src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lopcodes.c -------------------------------------------------------------------------------- /dependencies/lua/src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lopcodes.h -------------------------------------------------------------------------------- /dependencies/lua/src/lopnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lopnames.h -------------------------------------------------------------------------------- /dependencies/lua/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/loslib.c -------------------------------------------------------------------------------- /dependencies/lua/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lparser.c -------------------------------------------------------------------------------- /dependencies/lua/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lparser.h -------------------------------------------------------------------------------- /dependencies/lua/src/lprefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lprefix.h -------------------------------------------------------------------------------- /dependencies/lua/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lstate.c -------------------------------------------------------------------------------- /dependencies/lua/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lstate.h -------------------------------------------------------------------------------- /dependencies/lua/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lstring.c -------------------------------------------------------------------------------- /dependencies/lua/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lstring.h -------------------------------------------------------------------------------- /dependencies/lua/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lstrlib.c -------------------------------------------------------------------------------- /dependencies/lua/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/ltable.c -------------------------------------------------------------------------------- /dependencies/lua/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/ltable.h -------------------------------------------------------------------------------- /dependencies/lua/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/ltablib.c -------------------------------------------------------------------------------- /dependencies/lua/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/ltm.c -------------------------------------------------------------------------------- /dependencies/lua/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/ltm.h -------------------------------------------------------------------------------- /dependencies/lua/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lua.h -------------------------------------------------------------------------------- /dependencies/lua/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lua.hpp -------------------------------------------------------------------------------- /dependencies/lua/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/luaconf.h -------------------------------------------------------------------------------- /dependencies/lua/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lualib.h -------------------------------------------------------------------------------- /dependencies/lua/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lundump.c -------------------------------------------------------------------------------- /dependencies/lua/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lundump.h -------------------------------------------------------------------------------- /dependencies/lua/src/lutf8lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lutf8lib.c -------------------------------------------------------------------------------- /dependencies/lua/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lvm.c -------------------------------------------------------------------------------- /dependencies/lua/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lvm.h -------------------------------------------------------------------------------- /dependencies/lua/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lzio.c -------------------------------------------------------------------------------- /dependencies/lua/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/lua/src/lzio.h -------------------------------------------------------------------------------- /dependencies/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/nlohmann/json.hpp -------------------------------------------------------------------------------- /dependencies/openvr/bin/win64/openvr_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/openvr/bin/win64/openvr_api.dll -------------------------------------------------------------------------------- /dependencies/openvr/bin/win64/openvr_api.dll.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/openvr/bin/win64/openvr_api.dll.sig -------------------------------------------------------------------------------- /dependencies/openvr/headers/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/openvr/headers/openvr.h -------------------------------------------------------------------------------- /dependencies/openvr/headers/openvr_api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/openvr/headers/openvr_api.cs -------------------------------------------------------------------------------- /dependencies/openvr/headers/openvr_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/openvr/headers/openvr_api.json -------------------------------------------------------------------------------- /dependencies/openvr/headers/openvr_capi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/openvr/headers/openvr_capi.h -------------------------------------------------------------------------------- /dependencies/openvr/headers/openvr_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/openvr/headers/openvr_driver.h -------------------------------------------------------------------------------- /dependencies/openvr/lib/win64/openvr_api.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/openvr/lib/win64/openvr_api.lib -------------------------------------------------------------------------------- /dependencies/sol2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/sol2/LICENSE.txt -------------------------------------------------------------------------------- /dependencies/sol2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/sol2/README.md -------------------------------------------------------------------------------- /dependencies/sol2/single/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/sol2/single/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/sol2/single/include/sol/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/sol2/single/include/sol/config.hpp -------------------------------------------------------------------------------- /dependencies/sol2/single/include/sol/forward.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/sol2/single/include/sol/forward.hpp -------------------------------------------------------------------------------- /dependencies/sol2/single/include/sol/sol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/sol2/single/include/sol/sol.hpp -------------------------------------------------------------------------------- /dependencies/sol2/single/single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/dependencies/sol2/single/single.py -------------------------------------------------------------------------------- /examples/example_plugin/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/examples/example_plugin/Plugin.cpp -------------------------------------------------------------------------------- /examples/example_plugin/Plugin.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "reframework/API.hpp" 4 | 5 | extern lua_State* g_lua; 6 | -------------------------------------------------------------------------------- /examples/example_plugin/imgui/font_robotomedium.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/examples/example_plugin/imgui/font_robotomedium.hpp -------------------------------------------------------------------------------- /examples/example_plugin/imgui/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/examples/example_plugin/imgui/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /examples/example_plugin/imgui/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/examples/example_plugin/imgui/imgui_impl_dx11.h -------------------------------------------------------------------------------- /examples/example_plugin/imgui/imgui_impl_dx12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/examples/example_plugin/imgui/imgui_impl_dx12.cpp -------------------------------------------------------------------------------- /examples/example_plugin/imgui/imgui_impl_dx12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/examples/example_plugin/imgui/imgui_impl_dx12.h -------------------------------------------------------------------------------- /examples/example_plugin/imgui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/examples/example_plugin/imgui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /examples/example_plugin/imgui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/examples/example_plugin/imgui/imgui_impl_win32.h -------------------------------------------------------------------------------- /examples/example_plugin/imgui/re2_imconfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/examples/example_plugin/imgui/re2_imconfig.hpp -------------------------------------------------------------------------------- /examples/example_plugin/rendering/d3d11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/examples/example_plugin/rendering/d3d11.cpp -------------------------------------------------------------------------------- /examples/example_plugin/rendering/d3d11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/examples/example_plugin/rendering/d3d11.hpp -------------------------------------------------------------------------------- /examples/example_plugin/rendering/d3d12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/examples/example_plugin/rendering/d3d12.cpp -------------------------------------------------------------------------------- /examples/example_plugin/rendering/d3d12.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/examples/example_plugin/rendering/d3d12.hpp -------------------------------------------------------------------------------- /examples/example_plugin/rendering/shared.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/examples/example_plugin/rendering/shared.hpp -------------------------------------------------------------------------------- /examples/weapon_stay_big_plugin/weapon_stay_big.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/examples/weapon_stay_big_plugin/weapon_stay_big.cpp -------------------------------------------------------------------------------- /include/reframework/API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/include/reframework/API.h -------------------------------------------------------------------------------- /include/reframework/API.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/include/reframework/API.hpp -------------------------------------------------------------------------------- /reversing/dmc5_re3_port.rcnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/reversing/dmc5_re3_port.rcnet -------------------------------------------------------------------------------- /reversing/mhrise.genny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/reversing/mhrise.genny -------------------------------------------------------------------------------- /reversing/mhrisetdb71.genny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/reversing/mhrisetdb71.genny -------------------------------------------------------------------------------- /reversing/re2.rcnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/reversing/re2.rcnet -------------------------------------------------------------------------------- /reversing/re2_new.rcnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/reversing/re2_new.rcnet -------------------------------------------------------------------------------- /reversing/re2_new_new.rcnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/reversing/re2_new_new.rcnet -------------------------------------------------------------------------------- /reversing/re2_tdb70.rcnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/reversing/re2_tdb70.rcnet -------------------------------------------------------------------------------- /reversing/re3.genny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/reversing/re3.genny -------------------------------------------------------------------------------- /reversing/re3.rcnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/reversing/re3.rcnet -------------------------------------------------------------------------------- /reversing/re3_tdb70.rcnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/reversing/re3_tdb70.rcnet -------------------------------------------------------------------------------- /reversing/re7.genny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/reversing/re7.genny -------------------------------------------------------------------------------- /reversing/re7.rcnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/reversing/re7.rcnet -------------------------------------------------------------------------------- /reversing/re8.genny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/reversing/re8.genny -------------------------------------------------------------------------------- /reversing/re8.rcnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/reversing/re8.rcnet -------------------------------------------------------------------------------- /reversing/rsz/emulation-dumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/reversing/rsz/emulation-dumper.py -------------------------------------------------------------------------------- /reversing/rsz/non-native-dumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/reversing/rsz/non-native-dumper.py -------------------------------------------------------------------------------- /reversing/rsz/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/reversing/rsz/readme.md -------------------------------------------------------------------------------- /reversing/rsz/requirements.txt: -------------------------------------------------------------------------------- 1 | fire 2 | numpy 3 | unicorn 4 | capstone 5 | pefile -------------------------------------------------------------------------------- /reversing/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/reversing/scripts/README.md -------------------------------------------------------------------------------- /reversing/scripts/ida_namer/ida_namer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/reversing/scripts/ida_namer/ida_namer.py -------------------------------------------------------------------------------- /reversing/scripts/ida_namer/requirements.txt: -------------------------------------------------------------------------------- 1 | fire -------------------------------------------------------------------------------- /reversing/scripts/pathdumper/pathdumper.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/reversing/scripts/pathdumper/pathdumper.exe -------------------------------------------------------------------------------- /reversing/scripts/pathdumper/pathdumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/reversing/scripts/pathdumper/pathdumper.py -------------------------------------------------------------------------------- /reversing/scripts/pathdumper/requirements.txt: -------------------------------------------------------------------------------- 1 | regex 2 | frida -------------------------------------------------------------------------------- /scripts/re2_sharpness_removal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/scripts/re2_sharpness_removal.lua -------------------------------------------------------------------------------- /scripts/re2_vr_crosshair.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/scripts/re2_vr_crosshair.lua -------------------------------------------------------------------------------- /scripts/re2_vr_grenade.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/scripts/re2_vr_grenade.lua -------------------------------------------------------------------------------- /scripts/re2_vr_melee.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/scripts/re2_vr_melee.lua -------------------------------------------------------------------------------- /scripts/re8_vr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/scripts/re8_vr.lua -------------------------------------------------------------------------------- /scripts/utility/GameObject.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/scripts/utility/GameObject.lua -------------------------------------------------------------------------------- /scripts/utility/ManagedObjectDict.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/scripts/utility/ManagedObjectDict.lua -------------------------------------------------------------------------------- /scripts/utility/RE2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/scripts/utility/RE2.lua -------------------------------------------------------------------------------- /scripts/utility/RE7.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/scripts/utility/RE7.lua -------------------------------------------------------------------------------- /scripts/utility/RE8.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/scripts/utility/RE8.lua -------------------------------------------------------------------------------- /scripts/utility/Statics.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/scripts/utility/Statics.lua -------------------------------------------------------------------------------- /scripts/vr/VRControllerManager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/scripts/vr/VRControllerManager.lua -------------------------------------------------------------------------------- /shared/sdk/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/Application.cpp -------------------------------------------------------------------------------- /shared/sdk/Application.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/Application.hpp -------------------------------------------------------------------------------- /shared/sdk/Enums_Internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/Enums_Internal.hpp -------------------------------------------------------------------------------- /shared/sdk/ManagedObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/ManagedObject.cpp -------------------------------------------------------------------------------- /shared/sdk/ManagedObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/ManagedObject.hpp -------------------------------------------------------------------------------- /shared/sdk/Math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/Math.hpp -------------------------------------------------------------------------------- /shared/sdk/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/Memory.cpp -------------------------------------------------------------------------------- /shared/sdk/Memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/Memory.hpp -------------------------------------------------------------------------------- /shared/sdk/MotionFsm2Layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/MotionFsm2Layer.cpp -------------------------------------------------------------------------------- /shared/sdk/MotionFsm2Layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/MotionFsm2Layer.hpp -------------------------------------------------------------------------------- /shared/sdk/MurmurHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/MurmurHash.cpp -------------------------------------------------------------------------------- /shared/sdk/MurmurHash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/MurmurHash.hpp -------------------------------------------------------------------------------- /shared/sdk/REArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/REArray.cpp -------------------------------------------------------------------------------- /shared/sdk/REArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/REArray.hpp -------------------------------------------------------------------------------- /shared/sdk/REComponent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/REComponent.hpp -------------------------------------------------------------------------------- /shared/sdk/REContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/REContext.cpp -------------------------------------------------------------------------------- /shared/sdk/REContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/REContext.hpp -------------------------------------------------------------------------------- /shared/sdk/REGlobals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/REGlobals.cpp -------------------------------------------------------------------------------- /shared/sdk/REGlobals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/REGlobals.hpp -------------------------------------------------------------------------------- /shared/sdk/REManagedObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/REManagedObject.cpp -------------------------------------------------------------------------------- /shared/sdk/REManagedObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/REManagedObject.hpp -------------------------------------------------------------------------------- /shared/sdk/REMath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/REMath.hpp -------------------------------------------------------------------------------- /shared/sdk/RENativeArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/RENativeArray.hpp -------------------------------------------------------------------------------- /shared/sdk/REString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/REString.hpp -------------------------------------------------------------------------------- /shared/sdk/RETransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/RETransform.cpp -------------------------------------------------------------------------------- /shared/sdk/RETransform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/RETransform.hpp -------------------------------------------------------------------------------- /shared/sdk/REType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/REType.cpp -------------------------------------------------------------------------------- /shared/sdk/REType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/REType.hpp -------------------------------------------------------------------------------- /shared/sdk/RETypeCLR.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/RETypeCLR.hpp -------------------------------------------------------------------------------- /shared/sdk/RETypeDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/RETypeDB.cpp -------------------------------------------------------------------------------- /shared/sdk/RETypeDB.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/RETypeDB.hpp -------------------------------------------------------------------------------- /shared/sdk/RETypeDefinition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/RETypeDefinition.cpp -------------------------------------------------------------------------------- /shared/sdk/RETypeDefinition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/RETypeDefinition.hpp -------------------------------------------------------------------------------- /shared/sdk/RETypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/RETypes.cpp -------------------------------------------------------------------------------- /shared/sdk/RETypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/RETypes.hpp -------------------------------------------------------------------------------- /shared/sdk/REVTableHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/REVTableHook.cpp -------------------------------------------------------------------------------- /shared/sdk/REVTableHook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/REVTableHook.hpp -------------------------------------------------------------------------------- /shared/sdk/REVariableDescriptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/REVariableDescriptor.hpp -------------------------------------------------------------------------------- /shared/sdk/ReClass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/ReClass.hpp -------------------------------------------------------------------------------- /shared/sdk/ReClass_Internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/ReClass_Internal.hpp -------------------------------------------------------------------------------- /shared/sdk/ReClass_Internal_DMC5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/ReClass_Internal_DMC5.hpp -------------------------------------------------------------------------------- /shared/sdk/ReClass_Internal_RE2_TDB70.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/ReClass_Internal_RE2_TDB70.hpp -------------------------------------------------------------------------------- /shared/sdk/ReClass_Internal_RE3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/ReClass_Internal_RE3.hpp -------------------------------------------------------------------------------- /shared/sdk/ReClass_Internal_RE3_TDB70.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/ReClass_Internal_RE3_TDB70.hpp -------------------------------------------------------------------------------- /shared/sdk/ReClass_Internal_RE7.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/ReClass_Internal_RE7.hpp -------------------------------------------------------------------------------- /shared/sdk/ReClass_Internal_RE8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/ReClass_Internal_RE8.hpp -------------------------------------------------------------------------------- /shared/sdk/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/Renderer.cpp -------------------------------------------------------------------------------- /shared/sdk/Renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/Renderer.hpp -------------------------------------------------------------------------------- /shared/sdk/ResourceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/ResourceManager.cpp -------------------------------------------------------------------------------- /shared/sdk/ResourceManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/ResourceManager.hpp -------------------------------------------------------------------------------- /shared/sdk/RopewaySweetLightManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/RopewaySweetLightManager.hpp -------------------------------------------------------------------------------- /shared/sdk/SDK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/SDK.cpp -------------------------------------------------------------------------------- /shared/sdk/SDK.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/SDK.hpp -------------------------------------------------------------------------------- /shared/sdk/SceneManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/SceneManager.cpp -------------------------------------------------------------------------------- /shared/sdk/SceneManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/SceneManager.hpp -------------------------------------------------------------------------------- /shared/sdk/SystemArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/SystemArray.cpp -------------------------------------------------------------------------------- /shared/sdk/SystemArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/SystemArray.hpp -------------------------------------------------------------------------------- /shared/sdk/TDBVer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/TDBVer.hpp -------------------------------------------------------------------------------- /shared/sdk/helpers/NativeObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/helpers/NativeObject.cpp -------------------------------------------------------------------------------- /shared/sdk/helpers/NativeObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/helpers/NativeObject.hpp -------------------------------------------------------------------------------- /shared/sdk/intrusive_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/intrusive_ptr.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise/via/Capsule.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise/via/Capsule.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise/via/OBB.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise/via/OBB.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise/via/Sphere.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise/via/Sphere.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise/via/motion/AxisDirection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise/via/motion/AxisDirection.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise/via/motion/Chain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise/via/motion/Chain.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise/via/motion/ChainCollisionArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise/via/motion/ChainCollisionArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise/via/motion/ChainCollisionData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise/via/motion/ChainCollisionData.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise/via/motion/ChainCollisions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise/via/motion/ChainCollisions.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise/via/motion/SecondaryAnimation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise/via/motion/SecondaryAnimation.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise/via/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise/via/vec3.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise/via/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise/via/vec4.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/tdb71/AttributeDef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/tdb71/AttributeDef.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/tdb71/Field.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/tdb71/Field.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/tdb71/FieldImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/tdb71/FieldImpl.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/tdb71/MethodDefinition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/tdb71/MethodDefinition.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/tdb71/MethodImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/tdb71/MethodImpl.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/tdb71/ParamList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/tdb71/ParamList.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/tdb71/ParameterDef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/tdb71/ParameterDef.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/tdb71/Property.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/tdb71/Property.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/tdb71/PropertyImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/tdb71/PropertyImpl.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/tdb71/TDB.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/tdb71/TDB.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/tdb71/TypeDefinition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/tdb71/TypeDefinition.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/tdb71/TypeImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/tdb71/TypeImpl.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/BasisPlane.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/BasisPlane.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/CameraType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/CameraType.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/Capsule.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/Capsule.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/Color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/Color.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/Component.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/Component.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/DeviceOrientation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/DeviceOrientation.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/DisplayType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/DisplayType.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/IntArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/IntArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/ManagedObjectArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/ManagedObjectArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/MobileBarState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/MobileBarState.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/Point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/Point.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/RenderType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/RenderType.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/Scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/Scene.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/SceneView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/SceneView.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/Size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/Size.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/Sphere.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/Sphere.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/UInt8Array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/UInt8Array.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/UIntArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/UIntArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/UIntArrayArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/UIntArrayArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/Window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/Window.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/behaviortree/BehaviorTree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/behaviortree/BehaviorTree.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/behaviortree/BehaviorTreeCoreHandleArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/behaviortree/BehaviorTreeCoreHandleArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/behaviortree/Condition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/behaviortree/Condition.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/behaviortree/Core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/behaviortree/Core.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/behaviortree/CoreHandle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/behaviortree/CoreHandle.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/behaviortree/NodeArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/behaviortree/NodeArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/behaviortree/NodeArray2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/behaviortree/NodeArray2.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/behaviortree/NodeStatus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/behaviortree/NodeStatus.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/behaviortree/Selector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/behaviortree/Selector.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/behaviortree/SelectorFSM.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/behaviortree/SelectorFSM.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/behaviortree/TreeNode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/behaviortree/TreeNode.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/behaviortree/TreeNodeData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/behaviortree/TreeNodeData.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/behaviortree/TreeObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/behaviortree/TreeObject.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/behaviortree/TreeObjectData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/behaviortree/TreeObjectData.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/clr/ManagedObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/clr/ManagedObject.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/motion/AxisDirection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/motion/AxisDirection.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/motion/Chain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/motion/Chain.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/motion/ChainCollisionArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/motion/ChainCollisionArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/motion/ChainCollisionData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/motion/ChainCollisionData.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/motion/ChainCollisionTop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/motion/ChainCollisionTop.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/motion/ChainCollisions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/motion/ChainCollisions.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/motion/MotionFsm2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/motion/MotionFsm2.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/motion/MotionFsm2Layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/motion/MotionFsm2Layer.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/motion/SecondaryAnimation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/motion/SecondaryAnimation.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/typeinfo/TypeInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/typeinfo/TypeInfo.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/vec3.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/mhrise_tdb71/via/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/mhrise_tdb71/via/vec4.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/BullShit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/BullShit.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/DeserializeSequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/DeserializeSequence.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/ManagedVtable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/ManagedVtable.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/System/String.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/System/String.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/TypeDefinition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/TypeDefinition.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/game/IkArmFit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/game/IkArmFit.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/game/InputSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/game/InputSystem.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/tdb67/AttributeDef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/tdb67/AttributeDef.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/tdb67/Field.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/tdb67/Field.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/tdb67/FieldImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/tdb67/FieldImpl.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/tdb67/MethodDefinition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/tdb67/MethodDefinition.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/tdb67/MethodImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/tdb67/MethodImpl.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/tdb67/ParamList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/tdb67/ParamList.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/tdb67/ParameterDef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/tdb67/ParameterDef.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/tdb67/Property.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/tdb67/Property.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/tdb67/PropertyImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/tdb67/PropertyImpl.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/tdb67/TDB.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/tdb67/TDB.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/tdb67/TypeDefinition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/tdb67/TypeDefinition.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/tdb67/TypeImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/tdb67/TypeImpl.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/BasisPlane.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/BasisPlane.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/CameraType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/CameraType.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/Capsule.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/Capsule.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/Color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/Color.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/Component.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/Component.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/DeviceOrientation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/DeviceOrientation.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/DisplayType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/DisplayType.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/Folder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/Folder.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/GameObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/GameObject.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/JobSet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/JobSet.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/Joint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/Joint.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/JointArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/JointArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/JointData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/JointData.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/JointDesc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/JointDesc.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/JointMap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/JointMap.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/ManagedObjectArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/ManagedObjectArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/MobileBarState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/MobileBarState.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/Motion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/Motion.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/OBB.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/OBB.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/Object.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/Plane.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/Plane.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/Point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/Point.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/Range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/Range.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/RenderType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/RenderType.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/Scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/Scene.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/SceneArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/SceneArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/SceneManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/SceneManager.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/SceneView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/SceneView.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/Size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/Size.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/Sphere.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/Sphere.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/Transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/Transform.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/Window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/Window.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/array.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/behaviortree/BehaviorTree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/behaviortree/BehaviorTree.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/behaviortree/BehaviorTreeCoreHandleArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/behaviortree/BehaviorTreeCoreHandleArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/behaviortree/Condition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/behaviortree/Condition.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/behaviortree/Core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/behaviortree/Core.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/behaviortree/CoreHandle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/behaviortree/CoreHandle.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/behaviortree/NodeArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/behaviortree/NodeArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/behaviortree/NodeStatus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/behaviortree/NodeStatus.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/behaviortree/Selector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/behaviortree/Selector.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/behaviortree/TreeNode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/behaviortree/TreeNode.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/behaviortree/TreeNodeData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/behaviortree/TreeNodeData.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/behaviortree/TreeObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/behaviortree/TreeObject.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/behaviortree/TreeObjectData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/behaviortree/TreeObjectData.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/clr/ManagedObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/clr/ManagedObject.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/fixed_array_jobs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/fixed_array_jobs.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/gui/Control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/gui/Control.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/gui/GUI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/gui/GUI.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/gui/GUIManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/gui/GUIManager.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/gui/GUIMeshRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/gui/GUIMeshRenderer.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/gui/PlayObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/gui/PlayObject.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/gui/PrimitiveContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/gui/PrimitiveContext.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/gui/TransformObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/gui/TransformObject.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/gui/View.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/gui/View.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/gui/Window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/gui/Window.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/mat4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/mat4.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/motion/AxisDirection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/motion/AxisDirection.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/motion/Chain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/motion/Chain.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/motion/ChainCollisionArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/motion/ChainCollisionArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/motion/ChainCollisionData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/motion/ChainCollisionData.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/motion/ChainCollisionTop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/motion/ChainCollisionTop.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/motion/ChainCollisions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/motion/ChainCollisions.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/motion/MotionFsm2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/motion/MotionFsm2.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/motion/MotionFsm2Layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/motion/MotionFsm2Layer.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/motion/SecondaryAnimation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/motion/SecondaryAnimation.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/typeinfo/TypeInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/typeinfo/TypeInfo.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/vec3.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re2_tdb70/via/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re2_tdb70/via/vec4.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/DeserializeSequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/DeserializeSequence.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/ManagedVtable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/ManagedVtable.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/System/String.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/System/String.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/TypeDefinition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/TypeDefinition.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/game/IkArmFit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/game/IkArmFit.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/game/InputSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/game/InputSystem.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/tdb67/MethodDefinition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/tdb67/MethodDefinition.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/tdb67/TDB.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/tdb67/TDB.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/BasisPlane.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/BasisPlane.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/CameraType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/CameraType.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/Capsule.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/Capsule.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/Color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/Color.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/Component.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/Component.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/DeviceOrientation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/DeviceOrientation.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/DisplayType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/DisplayType.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/Folder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/Folder.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/GameObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/GameObject.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/Joint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/Joint.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/JointArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/JointArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/JointData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/JointData.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/JointDesc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/JointDesc.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/JointMap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/JointMap.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/MobileBarState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/MobileBarState.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/Motion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/Motion.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/OBB.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/OBB.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/Point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/Point.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/Range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/Range.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/RenderType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/RenderType.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/Scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/Scene.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/SceneArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/SceneArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/SceneManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/SceneManager.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/SceneView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/SceneView.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/Size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/Size.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/Sphere.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/Sphere.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/Transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/Transform.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/Window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/Window.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/array.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/behaviortree/BehaviorTree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/behaviortree/BehaviorTree.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/behaviortree/BehaviorTreeCoreHandleArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/behaviortree/BehaviorTreeCoreHandleArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/behaviortree/BehaviorTreeData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/behaviortree/BehaviorTreeData.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/behaviortree/Condition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/behaviortree/Condition.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/behaviortree/Core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/behaviortree/Core.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/behaviortree/CoreHandle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/behaviortree/CoreHandle.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/behaviortree/IntArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/behaviortree/IntArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/behaviortree/ManagedObjectArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/behaviortree/ManagedObjectArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/behaviortree/NodeArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/behaviortree/NodeArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/behaviortree/NodeArray2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/behaviortree/NodeArray2.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/behaviortree/NodeStatus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/behaviortree/NodeStatus.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/behaviortree/Selector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/behaviortree/Selector.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/behaviortree/SelectorFSM.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/behaviortree/SelectorFSM.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/behaviortree/TreeNode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/behaviortree/TreeNode.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/behaviortree/TreeNodeData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/behaviortree/TreeNodeData.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/behaviortree/TreeObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/behaviortree/TreeObject.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/behaviortree/TreeObjectData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/behaviortree/TreeObjectData.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/behaviortree/UInt8Array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/behaviortree/UInt8Array.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/behaviortree/UIntArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/behaviortree/UIntArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/clr/ManagedObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/clr/ManagedObject.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/mat4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/mat4.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/motion/AxisDirection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/motion/AxisDirection.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/motion/Chain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/motion/Chain.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/motion/ChainCollisionArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/motion/ChainCollisionArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/motion/ChainCollisionData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/motion/ChainCollisionData.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/motion/ChainCollisions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/motion/ChainCollisions.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/motion/Data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/motion/Data.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/motion/MotionFsm2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/motion/MotionFsm2.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/motion/MotionFsm2Internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/motion/MotionFsm2Internal.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/motion/MotionFsm2Layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/motion/MotionFsm2Layer.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/motion/MotionFsm2RawData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/motion/MotionFsm2RawData.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/motion/MotionFsm2Resource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/motion/MotionFsm2Resource.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/motion/SecondaryAnimation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/motion/SecondaryAnimation.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/motion/TransitionData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/motion/TransitionData.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/motion/TransitionMap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/motion/TransitionMap.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/typeinfo/TypeInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/typeinfo/TypeInfo.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/vec3.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re3/via/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re3/via/vec4.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/BullShit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/BullShit.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/DeserializeSequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/DeserializeSequence.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/ManagedVtable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/ManagedVtable.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/RenderDeviceDX11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/RenderDeviceDX11.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/StdMap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/StdMap.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/StdMapData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/StdMapData.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/StdMapNode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/StdMapNode.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/System/String.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/System/String.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/System/Type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/System/Type.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/TypeArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/TypeArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/TypeDefinition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/TypeDefinition.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/Unk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/Unk.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/game/IkArmFit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/game/IkArmFit.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/game/InputSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/game/InputSystem.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/tdb49/Event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/tdb49/Event.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/tdb49/FieldDefinition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/tdb49/FieldDefinition.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/tdb49/MethodDefinition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/tdb49/MethodDefinition.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/tdb49/MethodParam.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/tdb49/MethodParam.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/tdb49/Module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/tdb49/Module.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/tdb49/PropertyDefinition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/tdb49/PropertyDefinition.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/tdb49/TDB.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/tdb49/TDB.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/tdb49/TypeDefinition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/tdb49/TypeDefinition.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/tdb67/MethodDefinition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/tdb67/MethodDefinition.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/tdb67/TDB.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/tdb67/TDB.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/Application.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/Application.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/BasisPlane.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/BasisPlane.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/CameraType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/CameraType.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/Color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/Color.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/Component.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/Component.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/DeviceOrientation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/DeviceOrientation.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/DisplayType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/DisplayType.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/Entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/Entry.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/Folder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/Folder.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/GameObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/GameObject.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/JobSet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/JobSet.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/Joint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/Joint.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/JointArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/JointArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/JointData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/JointData.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/JointDesc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/JointDesc.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/JointMap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/JointMap.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/MobileBarState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/MobileBarState.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/Motion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/Motion.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/Object.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/Point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/Point.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/Range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/Range.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/RenderType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/RenderType.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/Scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/Scene.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/SceneArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/SceneArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/SceneManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/SceneManager.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/SceneView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/SceneView.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/Size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/Size.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/Transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/Transform.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/Window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/Window.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/array.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/clr/ManagedObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/clr/ManagedObject.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/clr/VM.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/clr/VM.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/delegate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/delegate.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/dictionary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/dictionary.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/fixed_array_jobs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/fixed_array_jobs.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/gui/Control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/gui/Control.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/gui/GUI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/gui/GUI.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/gui/GUIManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/gui/GUIManager.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/gui/GUIMeshRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/gui/GUIMeshRenderer.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/gui/PlayObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/gui/PlayObject.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/gui/PrimitiveContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/gui/PrimitiveContext.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/gui/TransformObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/gui/TransformObject.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/gui/View.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/gui/View.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/gui/Window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/gui/Window.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/mat4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/mat4.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/motion/AxisDirection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/motion/AxisDirection.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/reflection/Method.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/reflection/Method.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/reflection/MethodArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/reflection/MethodArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/reflection/Property.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/reflection/Property.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/reflection/PropertyArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/reflection/PropertyArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/reflection/Reflection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/reflection/Reflection.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/render/LayerList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/render/LayerList.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/render/LightRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/render/LightRenderer.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/render/OutputTargetState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/render/OutputTargetState.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/render/OutputTargetStateDX11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/render/OutputTargetStateDX11.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/render/OutputTargetStateDX12.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/render/OutputTargetStateDX12.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/render/RenderLayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/render/RenderLayer.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/render/RenderResource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/render/RenderResource.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/render/RenderTargetView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/render/RenderTargetView.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/render/RenderTargetViewDX11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/render/RenderTargetViewDX11.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/render/RenderTargetViewDX12.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/render/RenderTargetViewDX12.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/render/Renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/render/Renderer.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/render/TargetDescriptorDX11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/render/TargetDescriptorDX11.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/render/TargetDescriptorDX12.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/render/TargetDescriptorDX12.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/render/layer/Output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/render/layer/Output.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/typeinfo/DeserializeSequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/typeinfo/DeserializeSequence.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/typeinfo/Deserializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/typeinfo/Deserializer.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/typeinfo/TypeInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/typeinfo/TypeInfo.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/typeinfo/TypeInfoCLR.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/typeinfo/TypeInfoCLR.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/vec3.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re7/via/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re7/via/vec4.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/DeserializeSequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/DeserializeSequence.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/ManagedVtable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/ManagedVtable.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/System/String.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/System/String.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/TypeDefinition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/TypeDefinition.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/game/IkArmFit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/game/IkArmFit.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/game/InputSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/game/InputSystem.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/tdb67/MethodDefinition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/tdb67/MethodDefinition.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/tdb67/TDB.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/tdb67/TDB.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/BasisPlane.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/BasisPlane.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/CameraType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/CameraType.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/Capsule.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/Capsule.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/Color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/Color.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/Component.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/Component.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/DeviceOrientation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/DeviceOrientation.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/DisplayType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/DisplayType.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/Folder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/Folder.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/GameObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/GameObject.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/JobSet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/JobSet.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/Joint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/Joint.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/JointArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/JointArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/JointData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/JointData.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/JointDesc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/JointDesc.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/JointMap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/JointMap.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/MobileBarState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/MobileBarState.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/Motion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/Motion.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/OBB.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/OBB.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/Object.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/Plane.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/Plane.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/Point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/Point.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/Range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/Range.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/RenderType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/RenderType.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/Scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/Scene.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/SceneArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/SceneArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/SceneManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/SceneManager.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/SceneView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/SceneView.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/Size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/Size.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/Sphere.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/Sphere.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/Transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/Transform.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/Window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/Window.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/array.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/clr/ManagedObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/clr/ManagedObject.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/fixed_array_jobs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/fixed_array_jobs.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/gui/Control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/gui/Control.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/gui/GUI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/gui/GUI.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/gui/GUIManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/gui/GUIManager.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/gui/GUIMeshRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/gui/GUIMeshRenderer.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/gui/PlayObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/gui/PlayObject.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/gui/PrimitiveContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/gui/PrimitiveContext.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/gui/TransformObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/gui/TransformObject.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/gui/View.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/gui/View.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/gui/Window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/gui/Window.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/mat4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/mat4.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/motion/AxisDirection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/motion/AxisDirection.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/motion/Chain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/motion/Chain.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/motion/ChainCollisionArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/motion/ChainCollisionArray.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/motion/ChainCollisionData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/motion/ChainCollisionData.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/motion/ChainCollisionTop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/motion/ChainCollisionTop.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/motion/ChainCollisions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/motion/ChainCollisions.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/motion/SecondaryAnimation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/motion/SecondaryAnimation.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/typeinfo/TypeInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/typeinfo/TypeInfo.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/vec3.hpp -------------------------------------------------------------------------------- /shared/sdk/regenny/re8/via/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/sdk/regenny/re8/via/vec4.hpp -------------------------------------------------------------------------------- /shared/utility/FunctionHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/utility/FunctionHook.cpp -------------------------------------------------------------------------------- /shared/utility/FunctionHook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/utility/FunctionHook.hpp -------------------------------------------------------------------------------- /shared/utility/Relocate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/utility/Relocate.cpp -------------------------------------------------------------------------------- /shared/utility/Relocate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/shared/utility/Relocate.hpp -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/D3D11Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/D3D11Hook.cpp -------------------------------------------------------------------------------- /src/D3D11Hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/D3D11Hook.hpp -------------------------------------------------------------------------------- /src/D3D12Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/D3D12Hook.cpp -------------------------------------------------------------------------------- /src/D3D12Hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/D3D12Hook.hpp -------------------------------------------------------------------------------- /src/DInputHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/DInputHook.cpp -------------------------------------------------------------------------------- /src/DInputHook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/DInputHook.hpp -------------------------------------------------------------------------------- /src/ExceptionHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/ExceptionHandler.cpp -------------------------------------------------------------------------------- /src/ExceptionHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/ExceptionHandler.hpp -------------------------------------------------------------------------------- /src/Genny.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/Genny.hpp -------------------------------------------------------------------------------- /src/GennyIda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/GennyIda.hpp -------------------------------------------------------------------------------- /src/HookManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/HookManager.cpp -------------------------------------------------------------------------------- /src/HookManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/HookManager.hpp -------------------------------------------------------------------------------- /src/LicenseStrings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/LicenseStrings.hpp -------------------------------------------------------------------------------- /src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/Main.cpp -------------------------------------------------------------------------------- /src/Mod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/Mod.hpp -------------------------------------------------------------------------------- /src/Mods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/Mods.cpp -------------------------------------------------------------------------------- /src/Mods.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/Mods.hpp -------------------------------------------------------------------------------- /src/REFramework.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/REFramework.cpp -------------------------------------------------------------------------------- /src/REFramework.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/REFramework.hpp -------------------------------------------------------------------------------- /src/Tool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/Tool.hpp -------------------------------------------------------------------------------- /src/WindowsMessageHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/WindowsMessageHook.cpp -------------------------------------------------------------------------------- /src/WindowsMessageHook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/WindowsMessageHook.hpp -------------------------------------------------------------------------------- /src/mods/APIProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/APIProxy.cpp -------------------------------------------------------------------------------- /src/mods/APIProxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/APIProxy.hpp -------------------------------------------------------------------------------- /src/mods/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/Camera.cpp -------------------------------------------------------------------------------- /src/mods/Camera.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/Camera.hpp -------------------------------------------------------------------------------- /src/mods/DeveloperTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/DeveloperTools.cpp -------------------------------------------------------------------------------- /src/mods/DeveloperTools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/DeveloperTools.hpp -------------------------------------------------------------------------------- /src/mods/FirstPerson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/FirstPerson.cpp -------------------------------------------------------------------------------- /src/mods/FirstPerson.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/FirstPerson.hpp -------------------------------------------------------------------------------- /src/mods/FreeCam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/FreeCam.cpp -------------------------------------------------------------------------------- /src/mods/FreeCam.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/FreeCam.hpp -------------------------------------------------------------------------------- /src/mods/Graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/Graphics.cpp -------------------------------------------------------------------------------- /src/mods/Graphics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/Graphics.hpp -------------------------------------------------------------------------------- /src/mods/Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/Hooks.cpp -------------------------------------------------------------------------------- /src/mods/Hooks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/Hooks.hpp -------------------------------------------------------------------------------- /src/mods/IntegrityCheckBypass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/IntegrityCheckBypass.cpp -------------------------------------------------------------------------------- /src/mods/IntegrityCheckBypass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/IntegrityCheckBypass.hpp -------------------------------------------------------------------------------- /src/mods/ManualFlashlight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/ManualFlashlight.cpp -------------------------------------------------------------------------------- /src/mods/ManualFlashlight.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/ManualFlashlight.hpp -------------------------------------------------------------------------------- /src/mods/PluginLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/PluginLoader.cpp -------------------------------------------------------------------------------- /src/mods/PluginLoader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/PluginLoader.hpp -------------------------------------------------------------------------------- /src/mods/REFrameworkConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/REFrameworkConfig.cpp -------------------------------------------------------------------------------- /src/mods/REFrameworkConfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/REFrameworkConfig.hpp -------------------------------------------------------------------------------- /src/mods/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/Scene.cpp -------------------------------------------------------------------------------- /src/mods/Scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/Scene.hpp -------------------------------------------------------------------------------- /src/mods/ScriptRunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/ScriptRunner.cpp -------------------------------------------------------------------------------- /src/mods/ScriptRunner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/ScriptRunner.hpp -------------------------------------------------------------------------------- /src/mods/VR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/VR.cpp -------------------------------------------------------------------------------- /src/mods/VR.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/VR.hpp -------------------------------------------------------------------------------- /src/mods/bindings/FS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/bindings/FS.cpp -------------------------------------------------------------------------------- /src/mods/bindings/FS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/bindings/FS.hpp -------------------------------------------------------------------------------- /src/mods/bindings/ImGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/bindings/ImGui.cpp -------------------------------------------------------------------------------- /src/mods/bindings/ImGui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/bindings/ImGui.hpp -------------------------------------------------------------------------------- /src/mods/bindings/Json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/bindings/Json.cpp -------------------------------------------------------------------------------- /src/mods/bindings/Json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/bindings/Json.hpp -------------------------------------------------------------------------------- /src/mods/bindings/Sdk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/bindings/Sdk.cpp -------------------------------------------------------------------------------- /src/mods/bindings/Sdk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/bindings/Sdk.hpp -------------------------------------------------------------------------------- /src/mods/tools/ChainViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/tools/ChainViewer.cpp -------------------------------------------------------------------------------- /src/mods/tools/ChainViewer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/tools/ChainViewer.hpp -------------------------------------------------------------------------------- /src/mods/tools/GameObjectsDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/tools/GameObjectsDisplay.cpp -------------------------------------------------------------------------------- /src/mods/tools/GameObjectsDisplay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/tools/GameObjectsDisplay.hpp -------------------------------------------------------------------------------- /src/mods/tools/ObjectExplorer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/tools/ObjectExplorer.cpp -------------------------------------------------------------------------------- /src/mods/tools/ObjectExplorer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/tools/ObjectExplorer.hpp -------------------------------------------------------------------------------- /src/mods/vr/Bindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/vr/Bindings.cpp -------------------------------------------------------------------------------- /src/mods/vr/D3D11Component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/vr/D3D11Component.cpp -------------------------------------------------------------------------------- /src/mods/vr/D3D11Component.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/vr/D3D11Component.hpp -------------------------------------------------------------------------------- /src/mods/vr/D3D12Component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/vr/D3D12Component.cpp -------------------------------------------------------------------------------- /src/mods/vr/D3D12Component.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/vr/D3D12Component.hpp -------------------------------------------------------------------------------- /src/mods/vr/OverlayComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/vr/OverlayComponent.cpp -------------------------------------------------------------------------------- /src/mods/vr/OverlayComponent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/vr/OverlayComponent.hpp -------------------------------------------------------------------------------- /src/mods/vr/games/RE8VR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/vr/games/RE8VR.cpp -------------------------------------------------------------------------------- /src/mods/vr/games/RE8VR.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/vr/games/RE8VR.hpp -------------------------------------------------------------------------------- /src/mods/vr/runtimes/OpenVR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/vr/runtimes/OpenVR.cpp -------------------------------------------------------------------------------- /src/mods/vr/runtimes/OpenVR.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/vr/runtimes/OpenVR.hpp -------------------------------------------------------------------------------- /src/mods/vr/runtimes/OpenXR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/vr/runtimes/OpenXR.cpp -------------------------------------------------------------------------------- /src/mods/vr/runtimes/OpenXR.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/vr/runtimes/OpenXR.hpp -------------------------------------------------------------------------------- /src/mods/vr/runtimes/VRRuntime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/mods/vr/runtimes/VRRuntime.hpp -------------------------------------------------------------------------------- /src/re2-imgui/font_robotomedium.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/re2-imgui/font_robotomedium.hpp -------------------------------------------------------------------------------- /src/re2-imgui/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/re2-imgui/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /src/re2-imgui/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/re2-imgui/imgui_impl_dx11.h -------------------------------------------------------------------------------- /src/re2-imgui/imgui_impl_dx12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/re2-imgui/imgui_impl_dx12.cpp -------------------------------------------------------------------------------- /src/re2-imgui/imgui_impl_dx12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/re2-imgui/imgui_impl_dx12.h -------------------------------------------------------------------------------- /src/re2-imgui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/re2-imgui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /src/re2-imgui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/re2-imgui/imgui_impl_win32.h -------------------------------------------------------------------------------- /src/re2-imgui/re2_imconfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/re2-imgui/re2_imconfig.hpp -------------------------------------------------------------------------------- /src/utility/ImGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/utility/ImGui.cpp -------------------------------------------------------------------------------- /src/utility/ImGui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lapig/REFramework/HEAD/src/utility/ImGui.hpp --------------------------------------------------------------------------------