├── .gitignore ├── Config ├── DefaultEditor.ini ├── DefaultEditorPerProjectUserSettings.ini ├── DefaultEngine.ini ├── DefaultGame.ini ├── DefaultInput.ini ├── SteamVRBindings │ ├── gamepad.json │ ├── holographic_controller.json │ ├── hpmotioncontroller.json │ ├── indexhmd.json │ ├── knuckles.json │ ├── oculus_touch.json │ ├── rift.json │ ├── steamvr_manifest.json │ ├── vive.json │ ├── vive_controller.json │ ├── vive_cosmos_controller.json │ ├── vive_pro.json │ ├── vive_tracker.json │ ├── vive_tracker_camera.json │ ├── vive_tracker_chest.json │ ├── vive_tracker_handed.json │ ├── vive_tracker_keyboard.json │ ├── vive_tracker_left_elbow.json │ ├── vive_tracker_left_foot.json │ ├── vive_tracker_left_knee.json │ ├── vive_tracker_left_shoulder.json │ ├── vive_tracker_right_elbow.json │ ├── vive_tracker_right_foot.json │ ├── vive_tracker_right_knee.json │ ├── vive_tracker_right_shoulder.json │ └── vive_tracker_waist.json └── steamvr_ue_editor_app.json ├── Content ├── Emissive.uasset ├── Geometry │ └── Meshes │ │ ├── 1M_Cube.uasset │ │ ├── 1M_Cube_Chamfer.uasset │ │ ├── CubeMaterial.uasset │ │ └── TemplateFloor.uasset ├── Mannequin │ ├── Animations │ │ ├── ThirdPersonIdle.uasset │ │ ├── ThirdPersonJump_End.uasset │ │ ├── ThirdPersonJump_Loop.uasset │ │ ├── ThirdPersonJump_Start.uasset │ │ ├── ThirdPersonRun.uasset │ │ ├── ThirdPersonWalk.uasset │ │ ├── ThirdPerson_AnimBP.uasset │ │ ├── ThirdPerson_IdleRun_2D.uasset │ │ └── ThirdPerson_Jump.uasset │ └── Character │ │ ├── Materials │ │ ├── MI_Female_Body.uasset │ │ ├── M_Male_Body.uasset │ │ ├── M_UE4Man_ChestLogo.uasset │ │ └── MaterialLayers │ │ │ ├── ML_GlossyBlack_Latex_UE4.uasset │ │ │ ├── ML_Plastic_Shiny_Beige.uasset │ │ │ ├── ML_Plastic_Shiny_Beige_LOGO.uasset │ │ │ ├── ML_SoftMetal_UE4.uasset │ │ │ ├── T_ML_Aluminum01.uasset │ │ │ ├── T_ML_Aluminum01_N.uasset │ │ │ ├── T_ML_Rubber_Blue_01_D.uasset │ │ │ └── T_ML_Rubber_Blue_01_N.uasset │ │ ├── Mesh │ │ ├── SK_Mannequin.uasset │ │ ├── SK_Mannequin_Female.uasset │ │ ├── SK_Mannequin_Female_PhysicsAsset.uasset │ │ ├── SK_Mannequin_PhysicsAsset.uasset │ │ └── UE4_Mannequin_Skeleton.uasset │ │ └── Textures │ │ ├── T_Female_Mask.uasset │ │ ├── T_Female_N.uasset │ │ ├── T_Male_Mask.uasset │ │ ├── T_Male_N.uasset │ │ ├── T_UE4Logo_Mask.uasset │ │ └── T_UE4Logo_N.uasset ├── Mario.uasset ├── MarioGameMode.uasset ├── MarioMaterial.uasset ├── ThirdPerson │ └── Meshes │ │ ├── Bump_StaticMesh.uasset │ │ ├── LeftArm_StaticMesh.uasset │ │ ├── Linear_Stair_StaticMesh.uasset │ │ ├── RampMaterial.uasset │ │ ├── Ramp_StaticMesh.uasset │ │ └── RightArm_StaticMesh.uasset └── ThirdPersonCPP │ ├── Blueprints │ └── ThirdPersonCharacter.uasset │ └── Maps │ └── ThirdPersonExampleMap.umap ├── Plugins ├── Developer │ └── RiderLink │ │ ├── Resources │ │ └── Icon128.png │ │ ├── RiderLink.uplugin │ │ └── Source │ │ ├── RD │ │ ├── RD.Build.cs │ │ ├── RD.cpp │ │ ├── RD.h │ │ ├── src │ │ │ ├── rd_core_cpp │ │ │ │ ├── rd_core_export.h │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── lifetime │ │ │ │ │ ├── Lifetime.cpp │ │ │ │ │ ├── Lifetime.h │ │ │ │ │ ├── LifetimeDefinition.cpp │ │ │ │ │ ├── LifetimeDefinition.h │ │ │ │ │ ├── LifetimeImpl.cpp │ │ │ │ │ ├── LifetimeImpl.h │ │ │ │ │ ├── SequentialLifetimes.cpp │ │ │ │ │ └── SequentialLifetimes.h │ │ │ │ │ ├── reactive │ │ │ │ │ ├── Property.h │ │ │ │ │ ├── ViewableList.h │ │ │ │ │ ├── ViewableMap.h │ │ │ │ │ ├── ViewableSet.h │ │ │ │ │ └── base │ │ │ │ │ │ ├── IProperty.h │ │ │ │ │ │ ├── IPropertyBase.h │ │ │ │ │ │ ├── IViewableList.h │ │ │ │ │ │ ├── IViewableMap.h │ │ │ │ │ │ ├── IViewableSet.h │ │ │ │ │ │ ├── SignalCookie.cpp │ │ │ │ │ │ ├── SignalCookie.h │ │ │ │ │ │ ├── SignalX.h │ │ │ │ │ │ ├── interfaces.h │ │ │ │ │ │ └── viewable_collections.h │ │ │ │ │ ├── std │ │ │ │ │ ├── allocator.h │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── list.h │ │ │ │ │ ├── to_string.h │ │ │ │ │ ├── unordered_map.h │ │ │ │ │ └── unordered_set.h │ │ │ │ │ ├── types │ │ │ │ │ ├── DateTime.cpp │ │ │ │ │ ├── DateTime.h │ │ │ │ │ ├── Void.h │ │ │ │ │ └── wrapper.h │ │ │ │ │ └── util │ │ │ │ │ ├── core_traits.h │ │ │ │ │ ├── core_util.h │ │ │ │ │ ├── enum.h │ │ │ │ │ ├── erase_if.h │ │ │ │ │ ├── gen_util.h │ │ │ │ │ ├── overloaded.h │ │ │ │ │ └── shared_function.h │ │ │ ├── rd_framework_cpp │ │ │ │ ├── rd_framework_export.h │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── base │ │ │ │ │ ├── IProtocol.cpp │ │ │ │ │ ├── IProtocol.h │ │ │ │ │ ├── IRdBindable.h │ │ │ │ │ ├── IRdDynamic.h │ │ │ │ │ ├── IRdReactive.h │ │ │ │ │ ├── IRdWireable.cpp │ │ │ │ │ ├── IRdWireable.h │ │ │ │ │ ├── ISerializersOwner.cpp │ │ │ │ │ ├── ISerializersOwner.h │ │ │ │ │ ├── IUnknownInstance.cpp │ │ │ │ │ ├── IUnknownInstance.h │ │ │ │ │ ├── IWire.h │ │ │ │ │ ├── RdBindableBase.cpp │ │ │ │ │ ├── RdBindableBase.h │ │ │ │ │ ├── RdPropertyBase.h │ │ │ │ │ ├── RdReactiveBase.cpp │ │ │ │ │ ├── RdReactiveBase.h │ │ │ │ │ ├── WireBase.cpp │ │ │ │ │ └── WireBase.h │ │ │ │ │ ├── ext │ │ │ │ │ ├── ExtWire.cpp │ │ │ │ │ ├── ExtWire.h │ │ │ │ │ ├── RdExtBase.cpp │ │ │ │ │ └── RdExtBase.h │ │ │ │ │ ├── impl │ │ │ │ │ ├── RName.cpp │ │ │ │ │ ├── RName.h │ │ │ │ │ ├── RdList.h │ │ │ │ │ ├── RdMap.h │ │ │ │ │ ├── RdProperty.h │ │ │ │ │ ├── RdSet.h │ │ │ │ │ └── RdSignal.h │ │ │ │ │ ├── intern │ │ │ │ │ ├── InternRoot.cpp │ │ │ │ │ ├── InternRoot.h │ │ │ │ │ ├── InternScheduler.cpp │ │ │ │ │ └── InternScheduler.h │ │ │ │ │ ├── protocol │ │ │ │ │ ├── Buffer.cpp │ │ │ │ │ ├── Buffer.h │ │ │ │ │ ├── Identities.cpp │ │ │ │ │ ├── Identities.h │ │ │ │ │ ├── MessageBroker.cpp │ │ │ │ │ ├── MessageBroker.h │ │ │ │ │ ├── Protocol.cpp │ │ │ │ │ ├── Protocol.h │ │ │ │ │ ├── RdId.cpp │ │ │ │ │ └── RdId.h │ │ │ │ │ ├── scheduler │ │ │ │ │ ├── SimpleScheduler.cpp │ │ │ │ │ ├── SimpleScheduler.h │ │ │ │ │ ├── SingleThreadScheduler.cpp │ │ │ │ │ ├── SingleThreadScheduler.h │ │ │ │ │ ├── SynchronousScheduler.cpp │ │ │ │ │ ├── SynchronousScheduler.h │ │ │ │ │ └── base │ │ │ │ │ │ ├── IScheduler.cpp │ │ │ │ │ │ ├── IScheduler.h │ │ │ │ │ │ ├── SingleThreadSchedulerBase.cpp │ │ │ │ │ │ └── SingleThreadSchedulerBase.h │ │ │ │ │ ├── serialization │ │ │ │ │ ├── AbstractPolymorphic.h │ │ │ │ │ ├── ArraySerializer.h │ │ │ │ │ ├── DefaultAbstractDeclaration.cpp │ │ │ │ │ ├── DefaultAbstractDeclaration.h │ │ │ │ │ ├── ISerializable.cpp │ │ │ │ │ ├── ISerializable.h │ │ │ │ │ ├── InternedAnySerializer.h │ │ │ │ │ ├── InternedSerializer.h │ │ │ │ │ ├── NullableSerializer.h │ │ │ │ │ ├── Polymorphic.cpp │ │ │ │ │ ├── Polymorphic.h │ │ │ │ │ ├── RdAny.cpp │ │ │ │ │ ├── RdAny.h │ │ │ │ │ ├── SerializationCtx.cpp │ │ │ │ │ ├── SerializationCtx.h │ │ │ │ │ ├── Serializers.cpp │ │ │ │ │ └── Serializers.h │ │ │ │ │ ├── task │ │ │ │ │ ├── RdCall.h │ │ │ │ │ ├── RdEndpoint.h │ │ │ │ │ ├── RdSymmetricCall.h │ │ │ │ │ ├── RdTask.h │ │ │ │ │ ├── RdTaskImpl.h │ │ │ │ │ ├── RdTaskResult.h │ │ │ │ │ ├── WiredRdTask.h │ │ │ │ │ └── WiredRdTaskImpl.h │ │ │ │ │ ├── util │ │ │ │ │ ├── framework_traits.h │ │ │ │ │ ├── guards.h │ │ │ │ │ ├── hashing.cpp │ │ │ │ │ ├── hashing.h │ │ │ │ │ ├── thread_util.cpp │ │ │ │ │ └── thread_util.h │ │ │ │ │ └── wire │ │ │ │ │ ├── ByteBufferAsyncProcessor.cpp │ │ │ │ │ ├── ByteBufferAsyncProcessor.h │ │ │ │ │ ├── PkgInputStream.cpp │ │ │ │ │ ├── PkgInputStream.h │ │ │ │ │ ├── PumpScheduler.cpp │ │ │ │ │ ├── PumpScheduler.h │ │ │ │ │ ├── SocketWire.cpp │ │ │ │ │ ├── SocketWire.h │ │ │ │ │ ├── WireUtil.cpp │ │ │ │ │ └── WireUtil.h │ │ │ └── rd_gen_cpp │ │ │ │ └── src │ │ │ │ ├── RdTextBuffer.cpp │ │ │ │ └── RdTextBuffer.h │ │ └── thirdparty │ │ │ ├── CTPL │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── include │ │ │ │ └── ctpl_stl.h │ │ │ ├── clsocket │ │ │ ├── README │ │ │ └── src │ │ │ │ ├── ActiveSocket.cpp │ │ │ │ ├── ActiveSocket.h │ │ │ │ ├── Host.h │ │ │ │ ├── PassiveSocket.cpp │ │ │ │ ├── PassiveSocket.h │ │ │ │ ├── SimpleSocket.cpp │ │ │ │ ├── SimpleSocket.h │ │ │ │ └── StatTimer.h │ │ │ ├── countdownlatch │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── countdownlatch.cpp │ │ │ └── countdownlatch.hpp │ │ │ ├── optional │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ └── tl │ │ │ │ └── optional.hpp │ │ │ ├── ordered-map │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── include │ │ │ │ └── tsl │ │ │ │ ├── ordered_hash.h │ │ │ │ ├── ordered_map.h │ │ │ │ └── ordered_set.h │ │ │ ├── spdlog │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cmake │ │ │ │ ├── ide.cmake │ │ │ │ ├── pch.h.in │ │ │ │ ├── spdlog.pc.in │ │ │ │ ├── spdlogCPack.cmake │ │ │ │ ├── spdlogConfig.cmake.in │ │ │ │ ├── utils.cmake │ │ │ │ └── version.rc.in │ │ │ ├── include │ │ │ │ └── spdlog │ │ │ │ │ ├── async.h │ │ │ │ │ ├── async_logger-inl.h │ │ │ │ │ ├── async_logger.h │ │ │ │ │ ├── cfg │ │ │ │ │ ├── argv.h │ │ │ │ │ ├── env.h │ │ │ │ │ ├── helpers-inl.h │ │ │ │ │ ├── helpers.h │ │ │ │ │ └── log_levels.h │ │ │ │ │ ├── common-inl.h │ │ │ │ │ ├── common.h │ │ │ │ │ ├── details │ │ │ │ │ ├── backtracer-inl.h │ │ │ │ │ ├── backtracer.h │ │ │ │ │ ├── circular_q.h │ │ │ │ │ ├── console_globals.h │ │ │ │ │ ├── file_helper-inl.h │ │ │ │ │ ├── file_helper.h │ │ │ │ │ ├── fmt_helper.h │ │ │ │ │ ├── log_msg-inl.h │ │ │ │ │ ├── log_msg.h │ │ │ │ │ ├── log_msg_buffer-inl.h │ │ │ │ │ ├── log_msg_buffer.h │ │ │ │ │ ├── mpmc_blocking_q.h │ │ │ │ │ ├── null_mutex.h │ │ │ │ │ ├── os-inl.h │ │ │ │ │ ├── os.h │ │ │ │ │ ├── periodic_worker-inl.h │ │ │ │ │ ├── periodic_worker.h │ │ │ │ │ ├── registry-inl.h │ │ │ │ │ ├── registry.h │ │ │ │ │ ├── synchronous_factory.h │ │ │ │ │ ├── tcp_client-windows.h │ │ │ │ │ ├── tcp_client.h │ │ │ │ │ ├── thread_pool-inl.h │ │ │ │ │ ├── thread_pool.h │ │ │ │ │ └── windows_include.h │ │ │ │ │ ├── fmt │ │ │ │ │ ├── bin_to_hex.h │ │ │ │ │ ├── bundled │ │ │ │ │ │ ├── LICENSE.rst │ │ │ │ │ │ ├── chrono.h │ │ │ │ │ │ ├── color.h │ │ │ │ │ │ ├── compile.h │ │ │ │ │ │ ├── core.h │ │ │ │ │ │ ├── format-inl.h │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ ├── locale.h │ │ │ │ │ │ ├── ostream.h │ │ │ │ │ │ ├── posix.h │ │ │ │ │ │ ├── printf.h │ │ │ │ │ │ └── ranges.h │ │ │ │ │ ├── fmt.h │ │ │ │ │ └── ostr.h │ │ │ │ │ ├── formatter.h │ │ │ │ │ ├── fwd.h │ │ │ │ │ ├── logger-inl.h │ │ │ │ │ ├── logger.h │ │ │ │ │ ├── pattern_formatter-inl.h │ │ │ │ │ ├── pattern_formatter.h │ │ │ │ │ ├── sinks │ │ │ │ │ ├── android_sink.h │ │ │ │ │ ├── ansicolor_sink-inl.h │ │ │ │ │ ├── ansicolor_sink.h │ │ │ │ │ ├── base_sink-inl.h │ │ │ │ │ ├── base_sink.h │ │ │ │ │ ├── basic_file_sink-inl.h │ │ │ │ │ ├── basic_file_sink.h │ │ │ │ │ ├── daily_file_sink.h │ │ │ │ │ ├── dist_sink.h │ │ │ │ │ ├── dup_filter_sink.h │ │ │ │ │ ├── msvc_sink.h │ │ │ │ │ ├── null_sink.h │ │ │ │ │ ├── ostream_sink.h │ │ │ │ │ ├── ringbuffer_sink.h │ │ │ │ │ ├── rotating_file_sink-inl.h │ │ │ │ │ ├── rotating_file_sink.h │ │ │ │ │ ├── sink-inl.h │ │ │ │ │ ├── sink.h │ │ │ │ │ ├── stdout_color_sinks-inl.h │ │ │ │ │ ├── stdout_color_sinks.h │ │ │ │ │ ├── stdout_sinks-inl.h │ │ │ │ │ ├── stdout_sinks.h │ │ │ │ │ ├── syslog_sink.h │ │ │ │ │ ├── systemd_sink.h │ │ │ │ │ ├── tcp_sink.h │ │ │ │ │ ├── win_eventlog_sink.h │ │ │ │ │ ├── wincolor_sink-inl.h │ │ │ │ │ └── wincolor_sink.h │ │ │ │ │ ├── spdlog-inl.h │ │ │ │ │ ├── spdlog.h │ │ │ │ │ ├── tweakme.h │ │ │ │ │ └── version.h │ │ │ ├── logos │ │ │ │ └── jetbrains-variant-4.svg │ │ │ ├── scripts │ │ │ │ ├── extract_version.py │ │ │ │ └── format.sh │ │ │ └── src │ │ │ │ ├── async.cpp │ │ │ │ ├── cfg.cpp │ │ │ │ ├── color_sinks.cpp │ │ │ │ ├── file_sinks.cpp │ │ │ │ ├── fmt.cpp │ │ │ │ ├── spdlog.cpp │ │ │ │ └── stdout_sinks.cpp │ │ │ ├── string-view-lite │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── cmake │ │ │ │ └── string_view-lite-config.cmake.in │ │ │ └── include │ │ │ │ └── nonstd │ │ │ │ └── string_view.hpp │ │ │ ├── thirdparty.cpp │ │ │ ├── thirdparty.hpp │ │ │ └── variant │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── cmake │ │ │ └── mpark_variant-config.cmake.in │ │ │ └── include │ │ │ └── mpark │ │ │ ├── config.hpp │ │ │ ├── in_place.hpp │ │ │ ├── lib.hpp │ │ │ └── variant.hpp │ │ ├── RiderBlueprintExtension │ │ ├── Private │ │ │ ├── BlueprintProvider.cpp │ │ │ └── RiderBlueprintExtension.cpp │ │ ├── Public │ │ │ ├── BlueprintProvider.hpp │ │ │ └── RiderBlueprintExtension.hpp │ │ └── RiderBlueprintExtension.Build.cs │ │ ├── RiderGameControlExtension │ │ ├── Private │ │ │ └── RiderGameControlExtension.cpp │ │ ├── Public │ │ │ └── RiderGameControlExtension.hpp │ │ └── RiderGameControlExtension.Build.cs │ │ ├── RiderLink │ │ ├── Private │ │ │ ├── ProtocolFactory.cpp │ │ │ ├── ProtocolFactory.h │ │ │ ├── RiderLink.cpp │ │ │ ├── RiderLink.hpp │ │ │ └── UE4TypesMarshallers.cpp │ │ ├── Public │ │ │ ├── IRiderLink.hpp │ │ │ ├── Model │ │ │ │ ├── Library │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── UE4Library │ │ │ │ │ │ ├── BlueprintFunction.Generated.cpp │ │ │ │ │ │ ├── BlueprintFunction.Generated.h │ │ │ │ │ │ ├── BlueprintHighlighter.Generated.cpp │ │ │ │ │ │ ├── BlueprintHighlighter.Generated.h │ │ │ │ │ │ ├── BlueprintReference.Generated.cpp │ │ │ │ │ │ ├── BlueprintReference.Generated.h │ │ │ │ │ │ ├── EmptyScriptCallStack.Generated.cpp │ │ │ │ │ │ ├── EmptyScriptCallStack.Generated.h │ │ │ │ │ │ ├── IScriptCallStack.Generated.cpp │ │ │ │ │ │ ├── IScriptCallStack.Generated.h │ │ │ │ │ │ ├── IScriptCallStack_Unknown.Generated.cpp │ │ │ │ │ │ ├── IScriptCallStack_Unknown.Generated.h │ │ │ │ │ │ ├── IScriptMsg.Generated.cpp │ │ │ │ │ │ ├── IScriptMsg.Generated.h │ │ │ │ │ │ ├── IScriptMsg_Unknown.Generated.cpp │ │ │ │ │ │ ├── IScriptMsg_Unknown.Generated.h │ │ │ │ │ │ ├── LogMessageInfo.Generated.cpp │ │ │ │ │ │ ├── LogMessageInfo.Generated.h │ │ │ │ │ │ ├── NotificationType.Generated.cpp │ │ │ │ │ │ ├── NotificationType.Generated.h │ │ │ │ │ │ ├── PlayState.Generated.cpp │ │ │ │ │ │ ├── PlayState.Generated.h │ │ │ │ │ │ ├── RequestFailed.Generated.cpp │ │ │ │ │ │ ├── RequestFailed.Generated.h │ │ │ │ │ │ ├── RequestResultBase.Generated.cpp │ │ │ │ │ │ ├── RequestResultBase.Generated.h │ │ │ │ │ │ ├── RequestResultBase_Unknown.Generated.cpp │ │ │ │ │ │ ├── RequestResultBase_Unknown.Generated.h │ │ │ │ │ │ ├── RequestSucceed.Generated.cpp │ │ │ │ │ │ ├── RequestSucceed.Generated.h │ │ │ │ │ │ ├── ScriptCallStack.Generated.cpp │ │ │ │ │ │ ├── ScriptCallStack.Generated.h │ │ │ │ │ │ ├── ScriptCallStackFrame.Generated.cpp │ │ │ │ │ │ ├── ScriptCallStackFrame.Generated.h │ │ │ │ │ │ ├── ScriptMsgCallStack.Generated.cpp │ │ │ │ │ │ ├── ScriptMsgCallStack.Generated.h │ │ │ │ │ │ ├── ScriptMsgException.Generated.cpp │ │ │ │ │ │ ├── ScriptMsgException.Generated.h │ │ │ │ │ │ ├── StringRange.Generated.cpp │ │ │ │ │ │ ├── StringRange.Generated.h │ │ │ │ │ │ ├── UClass.Generated.cpp │ │ │ │ │ │ ├── UClass.Generated.h │ │ │ │ │ │ ├── UE4Library.Generated.cpp │ │ │ │ │ │ ├── UE4Library.Generated.h │ │ │ │ │ │ ├── UnableToDisplayScriptCallStack.Generated.cpp │ │ │ │ │ │ ├── UnableToDisplayScriptCallStack.Generated.h │ │ │ │ │ │ ├── UnrealLogEvent.Generated.cpp │ │ │ │ │ │ └── UnrealLogEvent.Generated.h │ │ │ │ │ ├── instantiations_UE4Library.cpp │ │ │ │ │ └── instantiations_UE4Library.h │ │ │ │ └── RdEditorProtocol │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── RdEditorModel │ │ │ │ │ ├── RdEditorModel.Generated.cpp │ │ │ │ │ └── RdEditorModel.Generated.h │ │ │ │ │ ├── RdEditorRoot │ │ │ │ │ ├── RdEditorRoot.Generated.cpp │ │ │ │ │ └── RdEditorRoot.Generated.h │ │ │ │ │ ├── instantiations_RdEditorRoot.cpp │ │ │ │ │ └── instantiations_RdEditorRoot.h │ │ │ └── UE4TypesMarshallers.h │ │ └── RiderLink.Build.cs │ │ └── RiderLoggingExtension │ │ ├── Private │ │ ├── RiderLoggingExtension.cpp │ │ ├── RiderLoggingExtension.hpp │ │ ├── RiderOutputDevice.cpp │ │ └── RiderOutputDevice.hpp │ │ └── RiderLoggingExtension.Build.cs └── LibSM64UE │ ├── LibSM64UE.uplugin │ ├── Resources │ └── Icon128.png │ └── Source │ ├── LibSM64UE │ ├── LibSM64UE.Build.cs │ ├── Private │ │ ├── LibSM64Component.cpp │ │ ├── LibSM64UE.cpp │ │ └── MarioComponent.cpp │ └── Public │ │ ├── LibSM64Component.h │ │ ├── LibSM64UE.h │ │ └── MarioComponent.h │ └── ThirdParty │ └── libsm64 │ ├── FLibSM64WrapperModule.cpp │ ├── FLibSM64WrapperModule.h │ ├── Public │ ├── libsm64inc.h │ └── libsm64inc_extra.h │ ├── libsm64.Build.cs │ └── libsm64 │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── aaa.txt │ ├── import-mario-geo.py │ ├── import-test-collision.py │ └── src │ ├── debug_print.c │ ├── debug_print.h │ ├── decomp │ ├── engine │ │ ├── geo_layout.c │ │ ├── geo_layout.h │ │ ├── graph_node.c │ │ ├── graph_node.h │ │ ├── graph_node_manager.c │ │ ├── guMtxF2L.c │ │ ├── guMtxF2L.h │ │ ├── math_util.c │ │ ├── math_util.h │ │ ├── surface_collision.c │ │ └── surface_collision.h │ ├── game │ │ ├── area.h │ │ ├── behavior_actions.c │ │ ├── behavior_actions.h │ │ ├── camera.h │ │ ├── interaction.c │ │ ├── interaction.h │ │ ├── level_update.h │ │ ├── mario.c │ │ ├── mario.h │ │ ├── mario_actions_airborne.c │ │ ├── mario_actions_airborne.h │ │ ├── mario_actions_automatic.c │ │ ├── mario_actions_automatic.h │ │ ├── mario_actions_cutscene.c │ │ ├── mario_actions_cutscene.h │ │ ├── mario_actions_moving.c │ │ ├── mario_actions_moving.h │ │ ├── mario_actions_object.c │ │ ├── mario_actions_object.h │ │ ├── mario_actions_stationary.c │ │ ├── mario_actions_stationary.h │ │ ├── mario_actions_submerged.c │ │ ├── mario_actions_submerged.h │ │ ├── mario_misc.c │ │ ├── mario_misc.h │ │ ├── mario_step.c │ │ ├── mario_step.h │ │ ├── object_stuff.c │ │ ├── object_stuff.h │ │ ├── platform_displacement.c │ │ ├── platform_displacement.h │ │ ├── rendering_graph_node.c │ │ ├── rendering_graph_node.h │ │ └── save_file.h │ ├── global_state.c │ ├── global_state.h │ ├── include │ │ ├── PR │ │ │ ├── gbi.h │ │ │ ├── os_cont.h │ │ │ └── ultratypes.h │ │ ├── audio_defines.h │ │ ├── command_macros_base.h │ │ ├── geo_commands.h │ │ ├── level_misc_macros.h │ │ ├── macros.h │ │ ├── mario_animation_ids.h │ │ ├── mario_geo_switch_case_ids.h │ │ ├── object_fields.h │ │ ├── platform_info.h │ │ ├── seq_ids.h │ │ ├── sm64.h │ │ ├── special_preset_names.h │ │ ├── surface_terrains.h │ │ └── types.h │ ├── memory.c │ ├── memory.h │ ├── shim.h │ └── tools │ │ ├── libmio0.c │ │ ├── libmio0.h │ │ ├── n64graphics.c │ │ ├── n64graphics.h │ │ ├── stb │ │ ├── stb_image.h │ │ └── stb_image_write.h │ │ ├── utils.c │ │ └── utils.h │ ├── gfx_adapter.c │ ├── gfx_adapter.h │ ├── gfx_adapter_commands.h │ ├── gfx_macros.h │ ├── libsm64.c │ ├── libsm64.h │ ├── load_anim_data.c │ ├── load_anim_data.h │ ├── load_surfaces.c │ ├── load_surfaces.h │ ├── load_tex_data.c │ ├── load_tex_data.h │ ├── obj_pool.c │ └── obj_pool.h ├── README.md ├── SMUE5.uproject └── Source ├── SMUE5.Target.cs ├── SMUE5 ├── SMUE5.Build.cs ├── SMUE5.cpp ├── SMUE5.h ├── SMUE5Character.cpp ├── SMUE5Character.h ├── SMUE5GameMode.cpp └── SMUE5GameMode.h └── SMUE5Editor.Target.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/.gitignore -------------------------------------------------------------------------------- /Config/DefaultEditor.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/DefaultEditor.ini -------------------------------------------------------------------------------- /Config/DefaultEditorPerProjectUserSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/DefaultEditorPerProjectUserSettings.ini -------------------------------------------------------------------------------- /Config/DefaultEngine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/DefaultEngine.ini -------------------------------------------------------------------------------- /Config/DefaultGame.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/DefaultGame.ini -------------------------------------------------------------------------------- /Config/DefaultInput.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/DefaultInput.ini -------------------------------------------------------------------------------- /Config/SteamVRBindings/gamepad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/SteamVRBindings/gamepad.json -------------------------------------------------------------------------------- /Config/SteamVRBindings/holographic_controller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/SteamVRBindings/holographic_controller.json -------------------------------------------------------------------------------- /Config/SteamVRBindings/hpmotioncontroller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/SteamVRBindings/hpmotioncontroller.json -------------------------------------------------------------------------------- /Config/SteamVRBindings/indexhmd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/SteamVRBindings/indexhmd.json -------------------------------------------------------------------------------- /Config/SteamVRBindings/knuckles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/SteamVRBindings/knuckles.json -------------------------------------------------------------------------------- /Config/SteamVRBindings/oculus_touch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/SteamVRBindings/oculus_touch.json -------------------------------------------------------------------------------- /Config/SteamVRBindings/rift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/SteamVRBindings/rift.json -------------------------------------------------------------------------------- /Config/SteamVRBindings/steamvr_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/SteamVRBindings/steamvr_manifest.json -------------------------------------------------------------------------------- /Config/SteamVRBindings/vive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/SteamVRBindings/vive.json -------------------------------------------------------------------------------- /Config/SteamVRBindings/vive_controller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/SteamVRBindings/vive_controller.json -------------------------------------------------------------------------------- /Config/SteamVRBindings/vive_cosmos_controller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/SteamVRBindings/vive_cosmos_controller.json -------------------------------------------------------------------------------- /Config/SteamVRBindings/vive_pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/SteamVRBindings/vive_pro.json -------------------------------------------------------------------------------- /Config/SteamVRBindings/vive_tracker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/SteamVRBindings/vive_tracker.json -------------------------------------------------------------------------------- /Config/SteamVRBindings/vive_tracker_camera.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/SteamVRBindings/vive_tracker_camera.json -------------------------------------------------------------------------------- /Config/SteamVRBindings/vive_tracker_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/SteamVRBindings/vive_tracker_chest.json -------------------------------------------------------------------------------- /Config/SteamVRBindings/vive_tracker_handed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/SteamVRBindings/vive_tracker_handed.json -------------------------------------------------------------------------------- /Config/SteamVRBindings/vive_tracker_keyboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/SteamVRBindings/vive_tracker_keyboard.json -------------------------------------------------------------------------------- /Config/SteamVRBindings/vive_tracker_left_elbow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/SteamVRBindings/vive_tracker_left_elbow.json -------------------------------------------------------------------------------- /Config/SteamVRBindings/vive_tracker_left_foot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/SteamVRBindings/vive_tracker_left_foot.json -------------------------------------------------------------------------------- /Config/SteamVRBindings/vive_tracker_left_knee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/SteamVRBindings/vive_tracker_left_knee.json -------------------------------------------------------------------------------- /Config/SteamVRBindings/vive_tracker_left_shoulder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/SteamVRBindings/vive_tracker_left_shoulder.json -------------------------------------------------------------------------------- /Config/SteamVRBindings/vive_tracker_right_elbow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/SteamVRBindings/vive_tracker_right_elbow.json -------------------------------------------------------------------------------- /Config/SteamVRBindings/vive_tracker_right_foot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/SteamVRBindings/vive_tracker_right_foot.json -------------------------------------------------------------------------------- /Config/SteamVRBindings/vive_tracker_right_knee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/SteamVRBindings/vive_tracker_right_knee.json -------------------------------------------------------------------------------- /Config/SteamVRBindings/vive_tracker_right_shoulder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/SteamVRBindings/vive_tracker_right_shoulder.json -------------------------------------------------------------------------------- /Config/SteamVRBindings/vive_tracker_waist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/SteamVRBindings/vive_tracker_waist.json -------------------------------------------------------------------------------- /Config/steamvr_ue_editor_app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Config/steamvr_ue_editor_app.json -------------------------------------------------------------------------------- /Content/Emissive.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Emissive.uasset -------------------------------------------------------------------------------- /Content/Geometry/Meshes/1M_Cube.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Geometry/Meshes/1M_Cube.uasset -------------------------------------------------------------------------------- /Content/Geometry/Meshes/1M_Cube_Chamfer.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Geometry/Meshes/1M_Cube_Chamfer.uasset -------------------------------------------------------------------------------- /Content/Geometry/Meshes/CubeMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Geometry/Meshes/CubeMaterial.uasset -------------------------------------------------------------------------------- /Content/Geometry/Meshes/TemplateFloor.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Geometry/Meshes/TemplateFloor.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Animations/ThirdPersonIdle.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Animations/ThirdPersonIdle.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Animations/ThirdPersonJump_End.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Animations/ThirdPersonJump_End.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Animations/ThirdPersonJump_Loop.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Animations/ThirdPersonJump_Loop.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Animations/ThirdPersonJump_Start.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Animations/ThirdPersonJump_Start.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Animations/ThirdPersonRun.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Animations/ThirdPersonRun.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Animations/ThirdPersonWalk.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Animations/ThirdPersonWalk.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Animations/ThirdPerson_AnimBP.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Animations/ThirdPerson_AnimBP.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Animations/ThirdPerson_IdleRun_2D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Animations/ThirdPerson_IdleRun_2D.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Animations/ThirdPerson_Jump.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Animations/ThirdPerson_Jump.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Character/Materials/MI_Female_Body.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Character/Materials/MI_Female_Body.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Character/Materials/M_Male_Body.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Character/Materials/M_Male_Body.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Character/Materials/M_UE4Man_ChestLogo.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Character/Materials/M_UE4Man_ChestLogo.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Character/Materials/MaterialLayers/ML_GlossyBlack_Latex_UE4.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Character/Materials/MaterialLayers/ML_GlossyBlack_Latex_UE4.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Character/Materials/MaterialLayers/ML_Plastic_Shiny_Beige.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Character/Materials/MaterialLayers/ML_Plastic_Shiny_Beige.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Character/Materials/MaterialLayers/ML_Plastic_Shiny_Beige_LOGO.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Character/Materials/MaterialLayers/ML_Plastic_Shiny_Beige_LOGO.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Character/Materials/MaterialLayers/ML_SoftMetal_UE4.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Character/Materials/MaterialLayers/ML_SoftMetal_UE4.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Character/Materials/MaterialLayers/T_ML_Aluminum01.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Character/Materials/MaterialLayers/T_ML_Aluminum01.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Character/Materials/MaterialLayers/T_ML_Aluminum01_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Character/Materials/MaterialLayers/T_ML_Aluminum01_N.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Character/Materials/MaterialLayers/T_ML_Rubber_Blue_01_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Character/Materials/MaterialLayers/T_ML_Rubber_Blue_01_D.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Character/Materials/MaterialLayers/T_ML_Rubber_Blue_01_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Character/Materials/MaterialLayers/T_ML_Rubber_Blue_01_N.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Character/Mesh/SK_Mannequin.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Character/Mesh/SK_Mannequin.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Character/Mesh/SK_Mannequin_Female.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Character/Mesh/SK_Mannequin_Female.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Character/Mesh/SK_Mannequin_Female_PhysicsAsset.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Character/Mesh/SK_Mannequin_Female_PhysicsAsset.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Character/Mesh/SK_Mannequin_PhysicsAsset.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Character/Mesh/SK_Mannequin_PhysicsAsset.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Character/Mesh/UE4_Mannequin_Skeleton.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Character/Mesh/UE4_Mannequin_Skeleton.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Character/Textures/T_Female_Mask.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Character/Textures/T_Female_Mask.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Character/Textures/T_Female_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Character/Textures/T_Female_N.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Character/Textures/T_Male_Mask.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Character/Textures/T_Male_Mask.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Character/Textures/T_Male_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Character/Textures/T_Male_N.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Character/Textures/T_UE4Logo_Mask.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Character/Textures/T_UE4Logo_Mask.uasset -------------------------------------------------------------------------------- /Content/Mannequin/Character/Textures/T_UE4Logo_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mannequin/Character/Textures/T_UE4Logo_N.uasset -------------------------------------------------------------------------------- /Content/Mario.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/Mario.uasset -------------------------------------------------------------------------------- /Content/MarioGameMode.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/MarioGameMode.uasset -------------------------------------------------------------------------------- /Content/MarioMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/MarioMaterial.uasset -------------------------------------------------------------------------------- /Content/ThirdPerson/Meshes/Bump_StaticMesh.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/ThirdPerson/Meshes/Bump_StaticMesh.uasset -------------------------------------------------------------------------------- /Content/ThirdPerson/Meshes/LeftArm_StaticMesh.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/ThirdPerson/Meshes/LeftArm_StaticMesh.uasset -------------------------------------------------------------------------------- /Content/ThirdPerson/Meshes/Linear_Stair_StaticMesh.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/ThirdPerson/Meshes/Linear_Stair_StaticMesh.uasset -------------------------------------------------------------------------------- /Content/ThirdPerson/Meshes/RampMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/ThirdPerson/Meshes/RampMaterial.uasset -------------------------------------------------------------------------------- /Content/ThirdPerson/Meshes/Ramp_StaticMesh.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/ThirdPerson/Meshes/Ramp_StaticMesh.uasset -------------------------------------------------------------------------------- /Content/ThirdPerson/Meshes/RightArm_StaticMesh.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/ThirdPerson/Meshes/RightArm_StaticMesh.uasset -------------------------------------------------------------------------------- /Content/ThirdPersonCPP/Blueprints/ThirdPersonCharacter.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/ThirdPersonCPP/Blueprints/ThirdPersonCharacter.uasset -------------------------------------------------------------------------------- /Content/ThirdPersonCPP/Maps/ThirdPersonExampleMap.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Content/ThirdPersonCPP/Maps/ThirdPersonExampleMap.umap -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Resources/Icon128.png -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/RiderLink.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/RiderLink.uplugin -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/RD.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/RD.Build.cs -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/RD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/RD.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/RD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/RD.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/rd_core_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/rd_core_export.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/lifetime/Lifetime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/lifetime/Lifetime.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/lifetime/Lifetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/lifetime/Lifetime.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/lifetime/LifetimeDefinition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/lifetime/LifetimeDefinition.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/lifetime/LifetimeDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/lifetime/LifetimeDefinition.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/lifetime/LifetimeImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/lifetime/LifetimeImpl.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/lifetime/LifetimeImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/lifetime/LifetimeImpl.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/lifetime/SequentialLifetimes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/lifetime/SequentialLifetimes.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/lifetime/SequentialLifetimes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/lifetime/SequentialLifetimes.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/Property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/Property.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/ViewableList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/ViewableList.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/ViewableMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/ViewableMap.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/ViewableSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/ViewableSet.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/base/IProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/base/IProperty.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/base/IPropertyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/base/IPropertyBase.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/base/IViewableList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/base/IViewableList.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/base/IViewableMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/base/IViewableMap.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/base/IViewableSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/base/IViewableSet.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/base/SignalCookie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/base/SignalCookie.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/base/SignalCookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/base/SignalCookie.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/base/SignalX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/base/SignalX.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/base/interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/base/interfaces.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/base/viewable_collections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/base/viewable_collections.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/std/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/std/allocator.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/std/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/std/hash.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/std/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/std/list.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/std/to_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/std/to_string.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/std/unordered_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/std/unordered_map.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/std/unordered_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/std/unordered_set.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/types/DateTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/types/DateTime.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/types/DateTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/types/DateTime.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/types/Void.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/types/Void.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/types/wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/types/wrapper.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/util/core_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/util/core_traits.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/util/core_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/util/core_util.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/util/enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/util/enum.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/util/erase_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/util/erase_if.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/util/gen_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/util/gen_util.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/util/overloaded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/util/overloaded.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/util/shared_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/util/shared_function.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/rd_framework_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/rd_framework_export.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/IProtocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/IProtocol.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/IProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/IProtocol.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/IRdBindable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/IRdBindable.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/IRdDynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/IRdDynamic.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/IRdReactive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/IRdReactive.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/IRdWireable.cpp: -------------------------------------------------------------------------------- 1 | #include "IRdWireable.h" 2 | 3 | namespace rd 4 | { 5 | } -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/IRdWireable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/IRdWireable.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/ISerializersOwner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/ISerializersOwner.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/ISerializersOwner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/ISerializersOwner.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/IUnknownInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/IUnknownInstance.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/IUnknownInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/IUnknownInstance.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/IWire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/IWire.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/RdBindableBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/RdBindableBase.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/RdBindableBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/RdBindableBase.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/RdPropertyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/RdPropertyBase.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/RdReactiveBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/RdReactiveBase.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/RdReactiveBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/RdReactiveBase.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/WireBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/WireBase.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/WireBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/base/WireBase.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/ext/ExtWire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/ext/ExtWire.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/ext/ExtWire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/ext/ExtWire.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/ext/RdExtBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/ext/RdExtBase.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/ext/RdExtBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/ext/RdExtBase.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/impl/RName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/impl/RName.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/impl/RName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/impl/RName.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/impl/RdList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/impl/RdList.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/impl/RdMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/impl/RdMap.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/impl/RdProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/impl/RdProperty.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/impl/RdSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/impl/RdSet.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/impl/RdSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/impl/RdSignal.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/intern/InternRoot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/intern/InternRoot.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/intern/InternRoot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/intern/InternRoot.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/intern/InternScheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/intern/InternScheduler.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/intern/InternScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/intern/InternScheduler.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/protocol/Buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/protocol/Buffer.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/protocol/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/protocol/Buffer.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/protocol/Identities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/protocol/Identities.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/protocol/Identities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/protocol/Identities.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/protocol/MessageBroker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/protocol/MessageBroker.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/protocol/MessageBroker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/protocol/MessageBroker.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/protocol/Protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/protocol/Protocol.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/protocol/Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/protocol/Protocol.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/protocol/RdId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/protocol/RdId.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/protocol/RdId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/protocol/RdId.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/scheduler/SimpleScheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/scheduler/SimpleScheduler.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/scheduler/SimpleScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/scheduler/SimpleScheduler.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/scheduler/SingleThreadScheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/scheduler/SingleThreadScheduler.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/scheduler/SingleThreadScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/scheduler/SingleThreadScheduler.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/scheduler/SynchronousScheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/scheduler/SynchronousScheduler.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/scheduler/SynchronousScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/scheduler/SynchronousScheduler.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/scheduler/base/IScheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/scheduler/base/IScheduler.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/scheduler/base/IScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/scheduler/base/IScheduler.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/scheduler/base/SingleThreadSchedulerBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/scheduler/base/SingleThreadSchedulerBase.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/scheduler/base/SingleThreadSchedulerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/scheduler/base/SingleThreadSchedulerBase.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/AbstractPolymorphic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/AbstractPolymorphic.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/ArraySerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/ArraySerializer.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/DefaultAbstractDeclaration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/DefaultAbstractDeclaration.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/DefaultAbstractDeclaration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/DefaultAbstractDeclaration.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/ISerializable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/ISerializable.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/ISerializable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/ISerializable.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/InternedAnySerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/InternedAnySerializer.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/InternedSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/InternedSerializer.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/NullableSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/NullableSerializer.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/Polymorphic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/Polymorphic.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/Polymorphic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/Polymorphic.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/RdAny.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/RdAny.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/RdAny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/RdAny.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/SerializationCtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/SerializationCtx.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/SerializationCtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/SerializationCtx.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/Serializers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/Serializers.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/Serializers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/serialization/Serializers.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/task/RdCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/task/RdCall.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/task/RdEndpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/task/RdEndpoint.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/task/RdSymmetricCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/task/RdSymmetricCall.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/task/RdTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/task/RdTask.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/task/RdTaskImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/task/RdTaskImpl.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/task/RdTaskResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/task/RdTaskResult.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/task/WiredRdTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/task/WiredRdTask.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/task/WiredRdTaskImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/task/WiredRdTaskImpl.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/util/framework_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/util/framework_traits.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/util/guards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/util/guards.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/util/hashing.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/util/hashing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/util/hashing.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/util/thread_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/util/thread_util.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/util/thread_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/util/thread_util.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/wire/ByteBufferAsyncProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/wire/ByteBufferAsyncProcessor.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/wire/ByteBufferAsyncProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/wire/ByteBufferAsyncProcessor.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/wire/PkgInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/wire/PkgInputStream.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/wire/PkgInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/wire/PkgInputStream.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/wire/PumpScheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/wire/PumpScheduler.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/wire/PumpScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/wire/PumpScheduler.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/wire/SocketWire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/wire/SocketWire.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/wire/SocketWire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/wire/SocketWire.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/wire/WireUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/wire/WireUtil.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/wire/WireUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/wire/WireUtil.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_gen_cpp/src/RdTextBuffer.cpp: -------------------------------------------------------------------------------- 1 | #include "RdTextBuffer.h" 2 | -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/src/rd_gen_cpp/src/RdTextBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/src/rd_gen_cpp/src/RdTextBuffer.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/CTPL/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/CTPL/LICENSE -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/CTPL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/CTPL/README.md -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/CTPL/include/ctpl_stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/CTPL/include/ctpl_stl.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/clsocket/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/clsocket/README -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/clsocket/src/ActiveSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/clsocket/src/ActiveSocket.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/clsocket/src/ActiveSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/clsocket/src/ActiveSocket.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/clsocket/src/Host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/clsocket/src/Host.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/clsocket/src/PassiveSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/clsocket/src/PassiveSocket.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/clsocket/src/PassiveSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/clsocket/src/PassiveSocket.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/clsocket/src/SimpleSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/clsocket/src/SimpleSocket.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/clsocket/src/SimpleSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/clsocket/src/SimpleSocket.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/clsocket/src/StatTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/clsocket/src/StatTimer.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/countdownlatch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/countdownlatch/LICENSE -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/countdownlatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/countdownlatch/README.md -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/countdownlatch/countdownlatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/countdownlatch/countdownlatch.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/countdownlatch/countdownlatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/countdownlatch/countdownlatch.hpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/optional/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/optional/COPYING -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/optional/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/optional/README.md -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/optional/tl/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/optional/tl/optional.hpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/ordered-map/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/ordered-map/LICENSE -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/ordered-map/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/ordered-map/README.md -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/ordered-map/include/tsl/ordered_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/ordered-map/include/tsl/ordered_hash.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/ordered-map/include/tsl/ordered_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/ordered-map/include/tsl/ordered_map.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/ordered-map/include/tsl/ordered_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/ordered-map/include/tsl/ordered_set.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/LICENSE -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/README.md -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/cmake/ide.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/cmake/ide.cmake -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/cmake/pch.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/cmake/pch.h.in -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/cmake/spdlog.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/cmake/spdlog.pc.in -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/cmake/spdlogCPack.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/cmake/spdlogCPack.cmake -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/cmake/spdlogConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/cmake/spdlogConfig.cmake.in -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/cmake/utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/cmake/utils.cmake -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/cmake/version.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/cmake/version.rc.in -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/async.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/async_logger-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/async_logger-inl.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/async_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/async_logger.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/cfg/argv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/cfg/argv.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/cfg/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/cfg/env.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/cfg/helpers-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/cfg/helpers-inl.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/cfg/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/cfg/helpers.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/cfg/log_levels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/cfg/log_levels.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/common-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/common-inl.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/common.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/backtracer-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/backtracer-inl.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/backtracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/backtracer.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/circular_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/circular_q.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/console_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/console_globals.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/file_helper-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/file_helper-inl.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/file_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/file_helper.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/fmt_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/fmt_helper.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/log_msg-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/log_msg-inl.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/log_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/log_msg.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/log_msg_buffer-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/log_msg_buffer-inl.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/log_msg_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/log_msg_buffer.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/mpmc_blocking_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/mpmc_blocking_q.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/null_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/null_mutex.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/os-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/os-inl.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/os.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/periodic_worker-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/periodic_worker-inl.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/periodic_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/periodic_worker.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/registry-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/registry-inl.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/registry.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/synchronous_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/synchronous_factory.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/tcp_client-windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/tcp_client-windows.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/tcp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/tcp_client.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/thread_pool-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/thread_pool-inl.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/thread_pool.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/windows_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/details/windows_include.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/bin_to_hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/bin_to_hex.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/bundled/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/bundled/LICENSE.rst -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/bundled/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/bundled/chrono.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/bundled/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/bundled/color.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/bundled/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/bundled/compile.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/bundled/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/bundled/core.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/bundled/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/bundled/format-inl.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/bundled/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/bundled/format.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/bundled/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/bundled/locale.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/bundled/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/bundled/ostream.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/bundled/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/bundled/posix.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/bundled/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/bundled/printf.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/bundled/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/bundled/ranges.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/fmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/fmt.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/ostr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fmt/ostr.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/formatter.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/fwd.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/logger-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/logger-inl.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/logger.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/pattern_formatter-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/pattern_formatter-inl.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/pattern_formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/pattern_formatter.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/android_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/android_sink.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/ansicolor_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/ansicolor_sink-inl.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/ansicolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/ansicolor_sink.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/base_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/base_sink-inl.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/base_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/base_sink.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/basic_file_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/basic_file_sink-inl.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/basic_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/basic_file_sink.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/daily_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/daily_file_sink.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/dist_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/dist_sink.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/dup_filter_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/dup_filter_sink.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/msvc_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/msvc_sink.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/null_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/null_sink.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/ostream_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/ostream_sink.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/ringbuffer_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/ringbuffer_sink.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/rotating_file_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/rotating_file_sink-inl.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/rotating_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/rotating_file_sink.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/sink-inl.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/sink.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/stdout_color_sinks-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/stdout_color_sinks-inl.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/stdout_color_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/stdout_color_sinks.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/stdout_sinks-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/stdout_sinks-inl.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/stdout_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/stdout_sinks.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/syslog_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/syslog_sink.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/systemd_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/systemd_sink.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/tcp_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/tcp_sink.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/win_eventlog_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/win_eventlog_sink.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/wincolor_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/wincolor_sink-inl.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/wincolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/sinks/wincolor_sink.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/spdlog-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/spdlog-inl.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/spdlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/spdlog.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/tweakme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/tweakme.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/include/spdlog/version.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/logos/jetbrains-variant-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/logos/jetbrains-variant-4.svg -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/scripts/extract_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/scripts/extract_version.py -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/scripts/format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/scripts/format.sh -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/src/async.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/src/async.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/src/cfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/src/cfg.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/src/color_sinks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/src/color_sinks.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/src/file_sinks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/src/file_sinks.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/src/fmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/src/fmt.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/src/spdlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/src/spdlog.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/src/stdout_sinks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/spdlog/src/stdout_sinks.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/string-view-lite/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/string-view-lite/LICENSE.txt -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/string-view-lite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/string-view-lite/README.md -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/string-view-lite/cmake/string_view-lite-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/string-view-lite/cmake/string_view-lite-config.cmake.in -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/string-view-lite/include/nonstd/string_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/string-view-lite/include/nonstd/string_view.hpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/thirdparty.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/thirdparty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/thirdparty.hpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/variant/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/variant/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/variant/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/variant/LICENSE.md -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/variant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/variant/README.md -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/variant/cmake/mpark_variant-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/variant/cmake/mpark_variant-config.cmake.in -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/variant/include/mpark/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/variant/include/mpark/config.hpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/variant/include/mpark/in_place.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/variant/include/mpark/in_place.hpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/variant/include/mpark/lib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/variant/include/mpark/lib.hpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RD/thirdparty/variant/include/mpark/variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RD/thirdparty/variant/include/mpark/variant.hpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderBlueprintExtension/Private/BlueprintProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderBlueprintExtension/Private/BlueprintProvider.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderBlueprintExtension/Private/RiderBlueprintExtension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderBlueprintExtension/Private/RiderBlueprintExtension.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderBlueprintExtension/Public/BlueprintProvider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderBlueprintExtension/Public/BlueprintProvider.hpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderBlueprintExtension/Public/RiderBlueprintExtension.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderBlueprintExtension/Public/RiderBlueprintExtension.hpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderBlueprintExtension/RiderBlueprintExtension.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderBlueprintExtension/RiderBlueprintExtension.Build.cs -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderGameControlExtension/Private/RiderGameControlExtension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderGameControlExtension/Private/RiderGameControlExtension.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderGameControlExtension/Public/RiderGameControlExtension.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderGameControlExtension/Public/RiderGameControlExtension.hpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderGameControlExtension/RiderGameControlExtension.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderGameControlExtension/RiderGameControlExtension.Build.cs -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Private/ProtocolFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Private/ProtocolFactory.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Private/ProtocolFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Private/ProtocolFactory.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Private/RiderLink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Private/RiderLink.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Private/RiderLink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Private/RiderLink.hpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Private/UE4TypesMarshallers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Private/UE4TypesMarshallers.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/IRiderLink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/IRiderLink.hpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/BlueprintFunction.Generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/BlueprintFunction.Generated.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/BlueprintFunction.Generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/BlueprintFunction.Generated.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/BlueprintHighlighter.Generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/BlueprintHighlighter.Generated.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/BlueprintHighlighter.Generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/BlueprintHighlighter.Generated.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/BlueprintReference.Generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/BlueprintReference.Generated.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/BlueprintReference.Generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/BlueprintReference.Generated.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/EmptyScriptCallStack.Generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/EmptyScriptCallStack.Generated.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/EmptyScriptCallStack.Generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/EmptyScriptCallStack.Generated.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/IScriptCallStack.Generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/IScriptCallStack.Generated.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/IScriptCallStack.Generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/IScriptCallStack.Generated.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/IScriptCallStack_Unknown.Generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/IScriptCallStack_Unknown.Generated.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/IScriptCallStack_Unknown.Generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/IScriptCallStack_Unknown.Generated.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/IScriptMsg.Generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/IScriptMsg.Generated.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/IScriptMsg.Generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/IScriptMsg.Generated.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/IScriptMsg_Unknown.Generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/IScriptMsg_Unknown.Generated.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/IScriptMsg_Unknown.Generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/IScriptMsg_Unknown.Generated.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/LogMessageInfo.Generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/LogMessageInfo.Generated.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/LogMessageInfo.Generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/LogMessageInfo.Generated.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/NotificationType.Generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/NotificationType.Generated.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/NotificationType.Generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/NotificationType.Generated.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/PlayState.Generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/PlayState.Generated.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/PlayState.Generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/PlayState.Generated.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/RequestFailed.Generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/RequestFailed.Generated.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/RequestFailed.Generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/RequestFailed.Generated.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/RequestResultBase.Generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/RequestResultBase.Generated.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/RequestResultBase.Generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/RequestResultBase.Generated.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/RequestResultBase_Unknown.Generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/RequestResultBase_Unknown.Generated.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/RequestResultBase_Unknown.Generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/RequestResultBase_Unknown.Generated.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/RequestSucceed.Generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/RequestSucceed.Generated.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/RequestSucceed.Generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/RequestSucceed.Generated.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/ScriptCallStack.Generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/ScriptCallStack.Generated.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/ScriptCallStack.Generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/ScriptCallStack.Generated.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/ScriptCallStackFrame.Generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/ScriptCallStackFrame.Generated.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/ScriptCallStackFrame.Generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/ScriptCallStackFrame.Generated.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/ScriptMsgCallStack.Generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/ScriptMsgCallStack.Generated.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/ScriptMsgCallStack.Generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/ScriptMsgCallStack.Generated.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/ScriptMsgException.Generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/ScriptMsgException.Generated.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/ScriptMsgException.Generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/ScriptMsgException.Generated.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/StringRange.Generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/StringRange.Generated.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/StringRange.Generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/StringRange.Generated.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/UClass.Generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/UClass.Generated.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/UClass.Generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/UClass.Generated.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/UE4Library.Generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/UE4Library.Generated.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/UE4Library.Generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/UE4Library.Generated.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/UnableToDisplayScriptCallStack.Generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/UnableToDisplayScriptCallStack.Generated.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/UnableToDisplayScriptCallStack.Generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/UnableToDisplayScriptCallStack.Generated.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/UnrealLogEvent.Generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/UnrealLogEvent.Generated.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/UnrealLogEvent.Generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/UE4Library/UnrealLogEvent.Generated.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/instantiations_UE4Library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/instantiations_UE4Library.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/instantiations_UE4Library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/Library/instantiations_UE4Library.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/RdEditorProtocol/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/RdEditorProtocol/CMakeLists.txt -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/RdEditorProtocol/RdEditorModel/RdEditorModel.Generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/RdEditorProtocol/RdEditorModel/RdEditorModel.Generated.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/RdEditorProtocol/RdEditorModel/RdEditorModel.Generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/RdEditorProtocol/RdEditorModel/RdEditorModel.Generated.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/RdEditorProtocol/RdEditorRoot/RdEditorRoot.Generated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/RdEditorProtocol/RdEditorRoot/RdEditorRoot.Generated.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/RdEditorProtocol/RdEditorRoot/RdEditorRoot.Generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/RdEditorProtocol/RdEditorRoot/RdEditorRoot.Generated.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/RdEditorProtocol/instantiations_RdEditorRoot.cpp: -------------------------------------------------------------------------------- 1 | #include "instantiations_RdEditorRoot.h" 2 | 3 | namespace rd { 4 | } 5 | -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/RdEditorProtocol/instantiations_RdEditorRoot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/Model/RdEditorProtocol/instantiations_RdEditorRoot.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/Public/UE4TypesMarshallers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/Public/UE4TypesMarshallers.h -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLink/RiderLink.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLink/RiderLink.Build.cs -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLoggingExtension/Private/RiderLoggingExtension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLoggingExtension/Private/RiderLoggingExtension.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLoggingExtension/Private/RiderLoggingExtension.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLoggingExtension/Private/RiderLoggingExtension.hpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLoggingExtension/Private/RiderOutputDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLoggingExtension/Private/RiderOutputDevice.cpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLoggingExtension/Private/RiderOutputDevice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLoggingExtension/Private/RiderOutputDevice.hpp -------------------------------------------------------------------------------- /Plugins/Developer/RiderLink/Source/RiderLoggingExtension/RiderLoggingExtension.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/Developer/RiderLink/Source/RiderLoggingExtension/RiderLoggingExtension.Build.cs -------------------------------------------------------------------------------- /Plugins/LibSM64UE/LibSM64UE.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/LibSM64UE.uplugin -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Resources/Icon128.png -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/LibSM64UE/LibSM64UE.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/LibSM64UE/LibSM64UE.Build.cs -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/LibSM64UE/Private/LibSM64Component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/LibSM64UE/Private/LibSM64Component.cpp -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/LibSM64UE/Private/LibSM64UE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/LibSM64UE/Private/LibSM64UE.cpp -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/LibSM64UE/Private/MarioComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/LibSM64UE/Private/MarioComponent.cpp -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/LibSM64UE/Public/LibSM64Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/LibSM64UE/Public/LibSM64Component.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/LibSM64UE/Public/LibSM64UE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/LibSM64UE/Public/LibSM64UE.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/LibSM64UE/Public/MarioComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/LibSM64UE/Public/MarioComponent.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/FLibSM64WrapperModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/FLibSM64WrapperModule.cpp -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/FLibSM64WrapperModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/FLibSM64WrapperModule.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/Public/libsm64inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/Public/libsm64inc.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/Public/libsm64inc_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/Public/libsm64inc_extra.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64.Build.cs -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/.gitignore -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/Makefile -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/README.md -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/aaa.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/import-mario-geo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/import-mario-geo.py -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/import-test-collision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/import-test-collision.py -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/debug_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/debug_print.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/debug_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/debug_print.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/engine/geo_layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/engine/geo_layout.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/engine/geo_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/engine/geo_layout.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/engine/graph_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/engine/graph_node.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/engine/graph_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/engine/graph_node.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/engine/graph_node_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/engine/graph_node_manager.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/engine/guMtxF2L.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/engine/guMtxF2L.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/engine/guMtxF2L.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/engine/guMtxF2L.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/engine/math_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/engine/math_util.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/engine/math_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/engine/math_util.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/engine/surface_collision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/engine/surface_collision.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/engine/surface_collision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/engine/surface_collision.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/area.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/behavior_actions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/behavior_actions.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/behavior_actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/behavior_actions.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/camera.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/interaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/interaction.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/interaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/interaction.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/level_update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/level_update.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_actions_airborne.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_actions_airborne.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_actions_airborne.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_actions_airborne.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_actions_automatic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_actions_automatic.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_actions_automatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_actions_automatic.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_actions_cutscene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_actions_cutscene.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_actions_cutscene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_actions_cutscene.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_actions_moving.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_actions_moving.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_actions_moving.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_actions_moving.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_actions_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_actions_object.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_actions_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_actions_object.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_actions_stationary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_actions_stationary.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_actions_stationary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_actions_stationary.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_actions_submerged.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_actions_submerged.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_actions_submerged.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_actions_submerged.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_misc.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_misc.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_step.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_step.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_step.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/mario_step.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/object_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/object_stuff.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/object_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/object_stuff.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/platform_displacement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/platform_displacement.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/platform_displacement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/platform_displacement.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/rendering_graph_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/rendering_graph_node.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/rendering_graph_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/rendering_graph_node.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/save_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/game/save_file.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/global_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/global_state.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/global_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/global_state.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/PR/gbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/PR/gbi.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/PR/os_cont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/PR/os_cont.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/PR/ultratypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/PR/ultratypes.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/audio_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/audio_defines.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/command_macros_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/command_macros_base.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/geo_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/geo_commands.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/level_misc_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/level_misc_macros.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/macros.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/mario_animation_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/mario_animation_ids.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/mario_geo_switch_case_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/mario_geo_switch_case_ids.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/object_fields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/object_fields.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/platform_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/platform_info.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/seq_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/seq_ids.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/sm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/sm64.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/special_preset_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/special_preset_names.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/surface_terrains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/surface_terrains.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/include/types.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/memory.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/memory.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/shim.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/tools/libmio0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/tools/libmio0.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/tools/libmio0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/tools/libmio0.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/tools/n64graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/tools/n64graphics.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/tools/n64graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/tools/n64graphics.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/tools/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/tools/stb/stb_image.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/tools/stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/tools/stb/stb_image_write.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/tools/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/tools/utils.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/tools/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/decomp/tools/utils.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/gfx_adapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/gfx_adapter.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/gfx_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/gfx_adapter.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/gfx_adapter_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/gfx_adapter_commands.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/gfx_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/gfx_macros.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/libsm64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/libsm64.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/libsm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/libsm64.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/load_anim_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/load_anim_data.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/load_anim_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/load_anim_data.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/load_surfaces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/load_surfaces.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/load_surfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/load_surfaces.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/load_tex_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/load_tex_data.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/load_tex_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/load_tex_data.h -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/obj_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/obj_pool.c -------------------------------------------------------------------------------- /Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/obj_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Plugins/LibSM64UE/Source/ThirdParty/libsm64/libsm64/src/obj_pool.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/README.md -------------------------------------------------------------------------------- /SMUE5.uproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/SMUE5.uproject -------------------------------------------------------------------------------- /Source/SMUE5.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Source/SMUE5.Target.cs -------------------------------------------------------------------------------- /Source/SMUE5/SMUE5.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Source/SMUE5/SMUE5.Build.cs -------------------------------------------------------------------------------- /Source/SMUE5/SMUE5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Source/SMUE5/SMUE5.cpp -------------------------------------------------------------------------------- /Source/SMUE5/SMUE5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Source/SMUE5/SMUE5.h -------------------------------------------------------------------------------- /Source/SMUE5/SMUE5Character.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Source/SMUE5/SMUE5Character.cpp -------------------------------------------------------------------------------- /Source/SMUE5/SMUE5Character.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Source/SMUE5/SMUE5Character.h -------------------------------------------------------------------------------- /Source/SMUE5/SMUE5GameMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Source/SMUE5/SMUE5GameMode.cpp -------------------------------------------------------------------------------- /Source/SMUE5/SMUE5GameMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Source/SMUE5/SMUE5GameMode.h -------------------------------------------------------------------------------- /Source/SMUE5Editor.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnbyWitch/SMUE5/HEAD/Source/SMUE5Editor.Target.cs --------------------------------------------------------------------------------