├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── dev_report.yml └── workflows │ ├── validate-external.yml │ ├── validate-internal.yml │ └── validate.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CMakePresets.json ├── COPYING ├── MarathonRecomp ├── .gitignore ├── CMakeLists.txt ├── api │ ├── Chao │ │ └── CSD │ │ │ ├── Core │ │ │ ├── csdBase.h │ │ │ ├── csdRCObject.h │ │ │ ├── csdRCObjectImp.h │ │ │ ├── csdRCPtr.h │ │ │ ├── csdRCPtrAbs.h │ │ │ └── csdTexList.h │ │ │ └── Manager │ │ │ ├── csdmMotionPattern.h │ │ │ ├── csdmNode.h │ │ │ ├── csdmNodeObserver.h │ │ │ ├── csdmObserverBase.h │ │ │ ├── csdmProject.h │ │ │ ├── csdmResourceBase.h │ │ │ ├── csdmScene.h │ │ │ ├── csdmSceneObserver.h │ │ │ └── csdmSubjectBase.h │ ├── Marathon.h │ ├── Marathon.inl │ ├── README.md │ ├── Sonicteam │ │ ├── Actor.h │ │ ├── ActorManager.h │ │ ├── AlertWindowTask.h │ │ ├── AppMarathon.h │ │ ├── AppMarathon.inl │ │ ├── AudioEngineXenon.h │ │ ├── ButtonWindowTask.h │ │ ├── CObjBalloonIconDrawable.h │ │ ├── Camera │ │ │ ├── CameraMode.h │ │ │ ├── CameraModeManager.h │ │ │ ├── Cameraman.h │ │ │ └── SonicCamera.h │ │ ├── CommonObjectHint.h │ │ ├── CsdLink.h │ │ ├── CsdManager.h │ │ ├── CsdObject.h │ │ ├── CsdResource.h │ │ ├── DocMarathonImp.h │ │ ├── DocMarathonState.h │ │ ├── Enemy │ │ │ ├── EnemyShot.h │ │ │ ├── EnemyShotNormal.h │ │ │ └── EnemyShotPoint.h │ │ ├── Fixture.h │ │ ├── Game.h │ │ ├── GameImp.h │ │ ├── GameMode.h │ │ ├── Globals.h │ │ ├── HUDButtonWindow.h │ │ ├── HUDCALLBACK.h │ │ ├── HUDLimitTime.h │ │ ├── HUDLoading.h │ │ ├── HUDMainDisplay.h │ │ ├── HUDMainMenu.h │ │ ├── HUDMessageWindow.h │ │ ├── HUDOption.h │ │ ├── HUDPopupScreen.h │ │ ├── HUDRaderMap.h │ │ ├── HUDStageTitle.h │ │ ├── HintWindowTask.h │ │ ├── HudTextParts.h │ │ ├── ImageFilter.h │ │ ├── MainDisplayTask.h │ │ ├── MainMenuTask.h │ │ ├── MainMode.h │ │ ├── Message │ │ │ ├── MsgCameramanChangeMode.h │ │ │ ├── MsgHUDButtonWindowChangeButtons.h │ │ │ ├── MsgHUDMainMenuChangeState.h │ │ │ ├── MsgHUDMainMenuSetCursor.h │ │ │ ├── MsgHUDMainMenuTransition.h │ │ │ ├── MsgMissionGetGlobalFlag.h │ │ │ ├── MsgObjJump123GetNextPoint.h │ │ │ ├── MsgPauseAdapterText.h │ │ │ └── MsgSuckPlayer.h │ │ ├── MessageWindowTask.h │ │ ├── Mission │ │ │ └── Core.h │ │ ├── MovieObject.h │ │ ├── MovieObjectWmv.h │ │ ├── MovieTask.h │ │ ├── MyCue.h │ │ ├── MyCueAdx.h │ │ ├── MyCueAttenuate.h │ │ ├── MyGraphicsDevice.h │ │ ├── MyPhantom.h │ │ ├── MyRenderProcess.h │ │ ├── MyTexture.h │ │ ├── MyTransforms.h │ │ ├── NamedActor.h │ │ ├── NamedTask.h │ │ ├── NoSyncThread.h │ │ ├── ObjectVehicle.h │ │ ├── ObjectVehicleBike.h │ │ ├── PauseAdapter.h │ │ ├── PauseTask.h │ │ ├── Player │ │ │ ├── GroundRayListener.h │ │ │ ├── ICollisionListener.h │ │ │ ├── ICollisionListenerTemplate.h │ │ │ ├── IDynamicLink.h │ │ │ ├── IEventerListener.h │ │ │ ├── IExportExternalFlag.h │ │ │ ├── IExportPostureRequestFlag.h │ │ │ ├── IExportWeaponRequestFlag.h │ │ │ ├── IFlagCommunicator.h │ │ │ ├── IGauge.h │ │ │ ├── INotification.h │ │ │ ├── IPlugIn.h │ │ │ ├── IPostureControl.h │ │ │ ├── IPosturePlugIn.h │ │ │ ├── IPostureSupportEdge.h │ │ │ ├── IPostureSupportInput.h │ │ │ ├── IPostureSupportOttoto.h │ │ │ ├── IPostureSupportRayTemplate.h │ │ │ ├── IPostureSupportSphere.h │ │ │ ├── IScore.h │ │ │ ├── IStepable.h │ │ │ ├── IVariable.h │ │ │ ├── IZock.h │ │ │ ├── Input │ │ │ │ ├── IListener.h │ │ │ │ ├── ListenerNormal.h │ │ │ │ └── TimedAction.h │ │ │ ├── Object.h │ │ │ ├── PostureControl.h │ │ │ ├── RootFrame.h │ │ │ ├── Score.h │ │ │ ├── SonicGauge.h │ │ │ ├── State │ │ │ │ ├── CommonContext.h │ │ │ │ ├── CommonFall.h │ │ │ │ ├── CommonObject.h │ │ │ │ ├── ContextSpeedAndJump.h │ │ │ │ ├── ICommonContext.h │ │ │ │ ├── ICommonContextIF.h │ │ │ │ ├── IContext.h │ │ │ │ ├── IMachine.h │ │ │ │ ├── Machine2.h │ │ │ │ ├── Object2.h │ │ │ │ ├── SonicContext.h │ │ │ │ ├── SonicObject.h │ │ │ │ ├── TailsContext.h │ │ │ │ └── TailsFlight.h │ │ │ ├── Unit │ │ │ │ └── ITestCase.h │ │ │ ├── Weapon │ │ │ │ └── SonicWeapons.h │ │ │ └── Zock.h │ │ ├── PropFixture.h │ │ ├── RaderMapManager.h │ │ ├── RenderAction │ │ │ ├── ApplyBloom.h │ │ │ ├── ApplyDevice.h │ │ │ ├── ApplySceneParams.h │ │ │ ├── AutoSetAspect.h │ │ │ ├── Capture.h │ │ │ ├── ClearRenderTarget.h │ │ │ ├── ColorFill.h │ │ │ ├── CopyTexture.h │ │ │ ├── LockBlendMode.h │ │ │ ├── LockCullMode.h │ │ │ ├── LockZMode.h │ │ │ ├── MakeBloom.h │ │ │ ├── Movie.h │ │ │ ├── PrepareCalculateCSM.h │ │ │ ├── Rasterize.h │ │ │ ├── RasterizeBurnoutBlur.h │ │ │ ├── ResetRenderStates.h │ │ │ ├── ResetScissorRect.h │ │ │ ├── ResetViewport.h │ │ │ ├── Resolve.h │ │ │ ├── RunCommandBuffer.h │ │ │ ├── SetAutoZPass.h │ │ │ ├── SetBackStencilOp.h │ │ │ ├── SetBlendMode.h │ │ │ ├── SetCSMTextures.h │ │ │ ├── SetClip.h │ │ │ ├── SetColorWriteEnable.h │ │ │ ├── SetConstantShader.h │ │ │ ├── SetCullMode.h │ │ │ ├── SetCurrentScreen.h │ │ │ ├── SetDepthTextures.h │ │ │ ├── SetFovY.h │ │ │ ├── SetFrameBufferObject.h │ │ │ ├── SetReflectionTextures.h │ │ │ ├── SetScissorRect.h │ │ │ ├── SetScissorTest.h │ │ │ ├── SetScreen.h │ │ │ ├── SetShaderGPRAllocation.h │ │ │ ├── SetStencilEnable.h │ │ │ ├── SetStencilFunc.h │ │ │ ├── SetStencilOp.h │ │ │ ├── SetStencilWriteMask.h │ │ │ ├── SetTexture.h │ │ │ ├── SetUserClipPlaneEnable.h │ │ │ ├── SetViewport.h │ │ │ └── SetZMode.h │ │ ├── RenderPostprocess.h │ │ ├── SaveDataTask.h │ │ ├── SaveDataTaskXENON.h │ │ ├── SelectWindowTask.h │ │ ├── SoX │ │ │ ├── AI │ │ │ │ └── StateMachine.h │ │ │ ├── ApplicationXenon.h │ │ │ ├── ApplicationXenon.inl │ │ │ ├── Audio │ │ │ │ ├── Cue.h │ │ │ │ ├── IAudioEngine.h │ │ │ │ ├── Player.h │ │ │ │ └── PlayerImpl.h │ │ │ ├── Component.h │ │ │ ├── Engine │ │ │ │ ├── Application.h │ │ │ │ ├── Doc.h │ │ │ │ ├── DocMode.h │ │ │ │ ├── RenderProcess.h │ │ │ │ └── Task.h │ │ │ ├── Graphics │ │ │ │ ├── Device.h │ │ │ │ ├── Frame.h │ │ │ │ ├── FrameGP.h │ │ │ │ ├── FrameObserver.h │ │ │ │ ├── Technique.h │ │ │ │ ├── TechniqueFXL.h │ │ │ │ ├── Texture.h │ │ │ │ ├── Transforms.h │ │ │ │ ├── Vertex.h │ │ │ │ └── Xenon │ │ │ │ │ ├── DeviceXenon.h │ │ │ │ │ └── TextureXenon.h │ │ │ ├── IResource.h │ │ │ ├── IResource2.h │ │ │ ├── IResourceMgr.h │ │ │ ├── Input │ │ │ │ ├── Manager.h │ │ │ │ └── Manager.inl │ │ │ ├── LinkNode.h │ │ │ ├── Math │ │ │ │ ├── Matrix.h │ │ │ │ ├── Quaternion.h │ │ │ │ └── Vector.h │ │ │ ├── Message.h │ │ │ ├── MessageReceiver.h │ │ │ ├── Object.h │ │ │ ├── Physics │ │ │ │ ├── Entity.h │ │ │ │ ├── Havok │ │ │ │ │ ├── EntityHavok.h │ │ │ │ │ ├── EntityHavokImp.h │ │ │ │ │ ├── PhantomHavok.h │ │ │ │ │ └── WorldHavok.h │ │ │ │ ├── IntersectEvent.h │ │ │ │ ├── IntersectListener.h │ │ │ │ ├── Phantom.h │ │ │ │ ├── PhantomListener.h │ │ │ │ ├── Shape.h │ │ │ │ ├── ShapeCastEvent.h │ │ │ │ ├── ShapeCastListener.h │ │ │ │ └── World.h │ │ │ ├── RefCountObject.h │ │ │ ├── RefSharedPointer.h │ │ │ ├── Scenery │ │ │ │ ├── Camera.h │ │ │ │ ├── CameraEventCallback.h │ │ │ │ ├── CameraImp.h │ │ │ │ └── Drawable.h │ │ │ └── Thread.h │ │ ├── StdImageFilters │ │ │ ├── BurnoutBlurFilter.h │ │ │ └── SingleTechniqueFilter.h │ │ ├── System │ │ │ ├── CreateStatic.h │ │ │ ├── Diagnostics │ │ │ │ └── Performance.h │ │ │ └── Singleton.h │ │ ├── TextBook.h │ │ ├── TextBookMgr.h │ │ ├── TextCard.h │ │ ├── TextEntity.h │ │ ├── TextFontPicture.h │ │ ├── TextFontPictureMgr.h │ │ ├── TitleTask.h │ │ ├── VehicleMissileCtrl.h │ │ ├── VehicleMissileCtrlAutomatic.h │ │ ├── VehicleMissileCtrlSingle.h │ │ ├── WorldRenderProcess.h │ │ └── sonicXmaPlayer.h │ ├── boost │ │ └── smart_ptr │ │ │ ├── make_shared_object.h │ │ │ └── shared_ptr.h │ ├── d3dxb.h │ ├── hk330 │ │ ├── hkArray.h │ │ ├── hkReferencedObject.h │ │ ├── hkpBroadPhaseHandle.h │ │ ├── hkpCdBody.h │ │ ├── hkpCollidable.h │ │ ├── hkpCollidableCollidableFilter.h │ │ ├── hkpCollisionFilter.h │ │ ├── hkpEntity.h │ │ ├── hkpLinkedCollidable.h │ │ ├── hkpPhantom.h │ │ ├── hkpProperty.h │ │ ├── hkpRayCollidableFilter.h │ │ ├── hkpRayShapeCollectionFilter.h │ │ ├── hkpRigidBody.h │ │ ├── hkpShape.h │ │ ├── hkpShapeCollectionFilter.h │ │ ├── hkpTypedBroadPhaseHandle.h │ │ ├── hkpWorld.h │ │ └── hkpWorldObject.h │ └── stdx │ │ ├── string.h │ │ ├── vector.h │ │ └── wstring.h ├── app.cpp ├── app.h ├── apu │ ├── audio.cpp │ ├── audio.h │ ├── driver │ │ └── sdl2_driver.cpp │ ├── embedded_player.cpp │ ├── embedded_player.h │ ├── xma_decoder.cpp │ └── xma_decoder.h ├── cpu │ ├── guest_stack_var.h │ ├── guest_thread.cpp │ ├── guest_thread.h │ └── ppc_context.h ├── decompressor.h ├── exports.cpp ├── exports.h ├── framework.h ├── gpu │ ├── cache │ │ ├── pipeline_state_cache.h │ │ ├── vertex_declaration_cache.h │ │ └── vertex_element_cache.h │ ├── imgui │ │ ├── imgui_common.cpp │ │ ├── imgui_common.h │ │ ├── imgui_font_builder.cpp │ │ ├── imgui_font_builder.h │ │ ├── imgui_snapshot.cpp │ │ └── imgui_snapshot.h │ ├── shader │ │ ├── hlsl │ │ │ ├── .gitignore │ │ │ ├── blend_color_alpha_ps.hlsl │ │ │ ├── copy_color_ps.hlsl │ │ │ ├── copy_common.hlsli │ │ │ ├── copy_depth_ps.hlsl │ │ │ ├── copy_vs.hlsl │ │ │ ├── csd_filter_ps.hlsl │ │ │ ├── csd_no_tex_vs.hlsl │ │ │ ├── csd_vs.hlsl │ │ │ ├── enhanced_burnout_blur_ps.hlsl │ │ │ ├── enhanced_burnout_blur_vs.hlsl │ │ │ ├── gamma_correction_ps.hlsl │ │ │ ├── gaussian_blur.hlsli │ │ │ ├── gaussian_blur_3x3.hlsl │ │ │ ├── gaussian_blur_5x5.hlsl │ │ │ ├── gaussian_blur_7x7.hlsl │ │ │ ├── gaussian_blur_9x9.hlsl │ │ │ ├── imgui_common.hlsli │ │ │ ├── imgui_ps.hlsl │ │ │ ├── imgui_vs.hlsl │ │ │ ├── resolve_msaa_color.hlsli │ │ │ ├── resolve_msaa_color_2x.hlsl │ │ │ ├── resolve_msaa_color_4x.hlsl │ │ │ ├── resolve_msaa_color_8x.hlsl │ │ │ ├── resolve_msaa_depth.hlsli │ │ │ ├── resolve_msaa_depth_2x.hlsl │ │ │ ├── resolve_msaa_depth_4x.hlsl │ │ │ └── resolve_msaa_depth_8x.hlsl │ │ └── msl │ │ │ ├── .gitignore │ │ │ ├── blend_color_alpha_ps.metal │ │ │ ├── copy_color_ps.metal │ │ │ ├── copy_common.metali │ │ │ ├── copy_depth_ps.metal │ │ │ ├── copy_vs.metal │ │ │ ├── csd_filter_ps.metal │ │ │ ├── csd_no_tex_vs.metal │ │ │ ├── csd_vs.metal │ │ │ ├── enhanced_burnout_blur_ps.metal │ │ │ ├── enhanced_burnout_blur_vs.metal │ │ │ ├── gamma_correction_ps.metal │ │ │ ├── gaussian_blur.metali │ │ │ ├── gaussian_blur_3x3.metal │ │ │ ├── gaussian_blur_5x5.metal │ │ │ ├── gaussian_blur_7x7.metal │ │ │ ├── gaussian_blur_9x9.metal │ │ │ ├── imgui_common.metali │ │ │ ├── imgui_ps.metal │ │ │ ├── imgui_vs.metal │ │ │ ├── resolve_msaa_color.metali │ │ │ ├── resolve_msaa_color_2x.metal │ │ │ ├── resolve_msaa_color_4x.metal │ │ │ ├── resolve_msaa_color_8x.metal │ │ │ ├── resolve_msaa_depth.metali │ │ │ ├── resolve_msaa_depth_2x.metal │ │ │ ├── resolve_msaa_depth_4x.metal │ │ │ └── resolve_msaa_depth_8x.metal │ ├── video.cpp │ └── video.h ├── hid │ ├── driver │ │ └── sdl_hid.cpp │ ├── hid.cpp │ └── hid.h ├── install │ ├── directory_file_system.h │ ├── hashes │ │ ├── episode_amigo.cpp │ │ ├── episode_amigo.h │ │ ├── episode_shadow.cpp │ │ ├── episode_shadow.h │ │ ├── episode_silver.cpp │ │ ├── episode_silver.h │ │ ├── episode_sonic.cpp │ │ ├── episode_sonic.h │ │ ├── game.cpp │ │ ├── game.h │ │ ├── mission_shadow.cpp │ │ ├── mission_shadow.h │ │ ├── mission_silver.cpp │ │ ├── mission_silver.h │ │ ├── mission_sonic.cpp │ │ └── mission_sonic.h │ ├── installer.cpp │ ├── installer.h │ ├── iso_file_system.cpp │ ├── iso_file_system.h │ ├── update_checker.cpp │ ├── update_checker.h │ ├── virtual_file_system.h │ ├── xcontent_file_system.cpp │ └── xcontent_file_system.h ├── kernel │ ├── freelist.h │ ├── function.h │ ├── heap.cpp │ ├── heap.h │ ├── imports.cpp │ ├── io │ │ ├── file_system.cpp │ │ └── file_system.h │ ├── memory.cpp │ ├── memory.h │ ├── xam.cpp │ ├── xam.h │ ├── xdbf.h │ ├── xdm.cpp │ └── xdm.h ├── locale │ ├── config_locale.cpp │ ├── locale.cpp │ └── locale.h ├── main.cpp ├── misc_impl.cpp ├── mod │ ├── ini_file.h │ ├── ini_file.inl │ ├── mod_loader.cpp │ └── mod_loader.h ├── mutex.h ├── natvis.natvis ├── os │ ├── .gitignore │ ├── linux │ │ ├── logger_linux.cpp │ │ ├── media_linux.cpp │ │ ├── process_linux.cpp │ │ ├── registry_linux.inl │ │ ├── user_linux.cpp │ │ └── version_linux.cpp │ ├── logger.h │ ├── macos │ │ ├── logger_macos.cpp │ │ ├── media_macos.cpp │ │ ├── process_macos.cpp │ │ ├── registry_macos.inl │ │ ├── user_macos.cpp │ │ └── version_macos.cpp │ ├── media.h │ ├── process.h │ ├── registry.h │ ├── user.h │ ├── version.h │ └── win32 │ │ ├── logger_win32.cpp │ │ ├── media_win32.cpp │ │ ├── process_win32.cpp │ │ ├── registry_win32.inl │ │ ├── user_win32.cpp │ │ └── version_win32.cpp ├── patches │ ├── MainMenuTask_patches.cpp │ ├── MainMenuTask_patches.h │ ├── SaveDataTask_patches.cpp │ ├── TitleTask_patches.cpp │ ├── aspect_ratio_patches.cpp │ ├── aspect_ratio_patches.h │ ├── audio_patches.cpp │ ├── audio_patches.h │ ├── camera_patches.cpp │ ├── camera_patches.h │ ├── fps_patches.cpp │ ├── frontend_listener.cpp │ ├── hook_event.h │ ├── input_patches.cpp │ ├── loading_patches.cpp │ ├── loading_patches.h │ ├── misc_patches.cpp │ ├── patches.h │ ├── pause_patches.cpp │ ├── player_patches.cpp │ ├── text_patches.cpp │ ├── text_patches.h │ └── video_patches.cpp ├── preload_executable.cpp ├── preload_executable.h ├── res │ ├── .gitignore │ ├── credits.h │ ├── macos │ │ ├── MacOSXBundleInfo.plist.in │ │ └── game_icon.icns │ ├── version.cpp.template │ ├── version.h.template │ ├── version.txt │ └── win32 │ │ └── res.rc.template ├── sdl_events.h ├── sdl_listener.cpp ├── sdl_listener.h ├── stdafx.cpp ├── stdafx.h ├── ui │ ├── achievement_menu.cpp │ ├── achievement_menu.h │ ├── achievement_overlay.cpp │ ├── achievement_overlay.h │ ├── black_bar.cpp │ ├── black_bar.h │ ├── button_window.cpp │ ├── button_window.h │ ├── common_menu.cpp │ ├── common_menu.h │ ├── fader.cpp │ ├── fader.h │ ├── game_window.cpp │ ├── game_window.h │ ├── imgui_utils.cpp │ ├── imgui_utils.h │ ├── installer_wizard.cpp │ ├── installer_wizard.h │ ├── message_window.cpp │ ├── message_window.h │ ├── options_menu.cpp │ └── options_menu.h ├── user │ ├── achievement_data.cpp │ ├── achievement_data.h │ ├── achievement_manager.cpp │ ├── achievement_manager.h │ ├── config.cpp │ ├── config.h │ ├── config_def.h │ ├── paths.cpp │ ├── paths.h │ ├── registry.cpp │ └── registry.h ├── utils │ ├── bit_stream.cpp │ ├── bit_stream.h │ ├── ring_buffer.cpp │ └── ring_buffer.h ├── version.cmake └── xxHashMap.h ├── MarathonRecompLib ├── CMakeLists.txt ├── config │ ├── Marathon.toml │ └── switch_table.toml ├── ppc │ └── .gitignore ├── private │ └── .gitignore └── shader │ ├── .gitignore │ └── shader_cache.h ├── README.md ├── docs ├── BUILDING.md └── DUMPING-en.md ├── flatpak ├── README.md ├── io.github.sonicnext_dev.marathonrecomp.desktop ├── io.github.sonicnext_dev.marathonrecomp.json └── io.github.sonicnext_dev.marathonrecomp.metainfo.xml ├── thirdparty ├── .gitignore ├── CMakeLists.txt ├── MoltenVK │ └── CMakeLists.txt └── o1heap │ ├── CMakeLists.txt │ ├── o1heap.c │ └── o1heap.h ├── toolchains └── linux-clang.cmake ├── tools ├── CMakeLists.txt ├── bc_diff │ ├── CMakeLists.txt │ ├── bc_diff.cpp │ └── bc_diff.h ├── file_to_c │ ├── CMakeLists.txt │ └── file_to_c.cpp ├── fshasher │ ├── CMakeLists.txt │ ├── fshasher.cpp │ └── plainargs.h ├── u8extract │ ├── CMakeLists.txt │ └── u8extract.cpp └── x_decompress │ ├── CMakeLists.txt │ └── x_decompress.cpp ├── update_submodules.bat └── vcpkg.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/dev_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/.github/ISSUE_TEMPLATE/dev_report.yml -------------------------------------------------------------------------------- /.github/workflows/validate-external.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/.github/workflows/validate-external.yml -------------------------------------------------------------------------------- /.github/workflows/validate-internal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/.github/workflows/validate-internal.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/COPYING -------------------------------------------------------------------------------- /MarathonRecomp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/.gitignore -------------------------------------------------------------------------------- /MarathonRecomp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/CMakeLists.txt -------------------------------------------------------------------------------- /MarathonRecomp/api/Chao/CSD/Core/csdBase.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace Chao::CSD 4 | { 5 | class CBase {}; 6 | } 7 | -------------------------------------------------------------------------------- /MarathonRecomp/api/Chao/CSD/Core/csdRCObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Chao/CSD/Core/csdRCObject.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Chao/CSD/Core/csdRCObjectImp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Chao/CSD/Core/csdRCObjectImp.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Chao/CSD/Core/csdRCPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Chao/CSD/Core/csdRCPtr.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Chao/CSD/Core/csdRCPtrAbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Chao/CSD/Core/csdRCPtrAbs.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Chao/CSD/Core/csdTexList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Chao/CSD/Core/csdTexList.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Chao/CSD/Manager/csdmMotionPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Chao/CSD/Manager/csdmMotionPattern.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Chao/CSD/Manager/csdmNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Chao/CSD/Manager/csdmNode.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Chao/CSD/Manager/csdmNodeObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Chao/CSD/Manager/csdmNodeObserver.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Chao/CSD/Manager/csdmObserverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Chao/CSD/Manager/csdmObserverBase.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Chao/CSD/Manager/csdmProject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Chao/CSD/Manager/csdmProject.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Chao/CSD/Manager/csdmResourceBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Chao/CSD/Manager/csdmResourceBase.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Chao/CSD/Manager/csdmScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Chao/CSD/Manager/csdmScene.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Chao/CSD/Manager/csdmSceneObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Chao/CSD/Manager/csdmSceneObserver.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Chao/CSD/Manager/csdmSubjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Chao/CSD/Manager/csdmSubjectBase.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Marathon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Marathon.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Marathon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Marathon.inl -------------------------------------------------------------------------------- /MarathonRecomp/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/README.md -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Actor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Actor.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/ActorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/ActorManager.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/AlertWindowTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/AlertWindowTask.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/AppMarathon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/AppMarathon.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/AppMarathon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/AppMarathon.inl -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/AudioEngineXenon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/AudioEngineXenon.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/ButtonWindowTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/ButtonWindowTask.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/CObjBalloonIconDrawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/CObjBalloonIconDrawable.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Camera/CameraMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Camera/CameraMode.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Camera/CameraModeManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Camera/CameraModeManager.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Camera/Cameraman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Camera/Cameraman.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Camera/SonicCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Camera/SonicCamera.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/CommonObjectHint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/CommonObjectHint.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/CsdLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/CsdLink.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/CsdManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/CsdManager.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/CsdObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/CsdObject.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/CsdResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/CsdResource.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/DocMarathonImp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/DocMarathonImp.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/DocMarathonState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/DocMarathonState.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Enemy/EnemyShot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Enemy/EnemyShot.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Enemy/EnemyShotNormal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Enemy/EnemyShotNormal.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Enemy/EnemyShotPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Enemy/EnemyShotPoint.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Fixture.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Game.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/GameImp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/GameImp.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/GameMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/GameMode.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Globals.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/HUDButtonWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/HUDButtonWindow.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/HUDCALLBACK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/HUDCALLBACK.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/HUDLimitTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/HUDLimitTime.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/HUDLoading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/HUDLoading.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/HUDMainDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/HUDMainDisplay.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/HUDMainMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/HUDMainMenu.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/HUDMessageWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/HUDMessageWindow.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/HUDOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/HUDOption.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/HUDPopupScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/HUDPopupScreen.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/HUDRaderMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/HUDRaderMap.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/HUDStageTitle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/HUDStageTitle.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/HintWindowTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/HintWindowTask.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/HudTextParts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/HudTextParts.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/ImageFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/ImageFilter.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/MainDisplayTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/MainDisplayTask.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/MainMenuTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/MainMenuTask.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/MainMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/MainMode.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Message/MsgCameramanChangeMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Message/MsgCameramanChangeMode.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Message/MsgHUDButtonWindowChangeButtons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Message/MsgHUDButtonWindowChangeButtons.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Message/MsgHUDMainMenuChangeState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Message/MsgHUDMainMenuChangeState.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Message/MsgHUDMainMenuSetCursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Message/MsgHUDMainMenuSetCursor.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Message/MsgHUDMainMenuTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Message/MsgHUDMainMenuTransition.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Message/MsgMissionGetGlobalFlag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Message/MsgMissionGetGlobalFlag.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Message/MsgObjJump123GetNextPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Message/MsgObjJump123GetNextPoint.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Message/MsgPauseAdapterText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Message/MsgPauseAdapterText.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Message/MsgSuckPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Message/MsgSuckPlayer.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/MessageWindowTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/MessageWindowTask.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Mission/Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Mission/Core.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/MovieObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/MovieObject.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/MovieObjectWmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/MovieObjectWmv.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/MovieTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/MovieTask.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/MyCue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/MyCue.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/MyCueAdx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/MyCueAdx.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/MyCueAttenuate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/MyCueAttenuate.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/MyGraphicsDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/MyGraphicsDevice.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/MyPhantom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/MyPhantom.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/MyRenderProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/MyRenderProcess.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/MyTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/MyTexture.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/MyTransforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/MyTransforms.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/NamedActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/NamedActor.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/NamedTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/NamedTask.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/NoSyncThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/NoSyncThread.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/ObjectVehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/ObjectVehicle.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/ObjectVehicleBike.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/ObjectVehicleBike.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/PauseAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/PauseAdapter.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/PauseTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/PauseTask.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/GroundRayListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/GroundRayListener.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/ICollisionListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/ICollisionListener.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/ICollisionListenerTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/ICollisionListenerTemplate.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/IDynamicLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/IDynamicLink.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/IEventerListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/IEventerListener.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/IExportExternalFlag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/IExportExternalFlag.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/IExportPostureRequestFlag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/IExportPostureRequestFlag.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/IExportWeaponRequestFlag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/IExportWeaponRequestFlag.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/IFlagCommunicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/IFlagCommunicator.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/IGauge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/IGauge.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/INotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/INotification.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/IPlugIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/IPlugIn.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/IPostureControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/IPostureControl.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/IPosturePlugIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/IPosturePlugIn.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/IPostureSupportEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/IPostureSupportEdge.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/IPostureSupportInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/IPostureSupportInput.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/IPostureSupportOttoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/IPostureSupportOttoto.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/IPostureSupportRayTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/IPostureSupportRayTemplate.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/IPostureSupportSphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/IPostureSupportSphere.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/IScore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/IScore.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/IStepable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/IStepable.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/IVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/IVariable.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/IZock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/IZock.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/Input/IListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/Input/IListener.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/Input/ListenerNormal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/Input/ListenerNormal.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/Input/TimedAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/Input/TimedAction.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/Object.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/PostureControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/PostureControl.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/RootFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/RootFrame.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/Score.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/Score.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/SonicGauge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/SonicGauge.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/State/CommonContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/State/CommonContext.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/State/CommonFall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/State/CommonFall.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/State/CommonObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/State/CommonObject.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/State/ContextSpeedAndJump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/State/ContextSpeedAndJump.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/State/ICommonContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/State/ICommonContext.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/State/ICommonContextIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/State/ICommonContextIF.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/State/IContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/State/IContext.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/State/IMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/State/IMachine.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/State/Machine2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/State/Machine2.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/State/Object2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/State/Object2.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/State/SonicContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/State/SonicContext.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/State/SonicObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/State/SonicObject.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/State/TailsContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/State/TailsContext.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/State/TailsFlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/State/TailsFlight.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/Unit/ITestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/Unit/ITestCase.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/Weapon/SonicWeapons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/Weapon/SonicWeapons.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/Player/Zock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/Player/Zock.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/PropFixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/PropFixture.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RaderMapManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RaderMapManager.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/ApplyBloom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/ApplyBloom.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/ApplyDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/ApplyDevice.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/ApplySceneParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/ApplySceneParams.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/AutoSetAspect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/AutoSetAspect.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/Capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/Capture.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/ClearRenderTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/ClearRenderTarget.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/ColorFill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/ColorFill.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/CopyTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/CopyTexture.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/LockBlendMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/LockBlendMode.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/LockCullMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/LockCullMode.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/LockZMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/LockZMode.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/MakeBloom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/MakeBloom.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/Movie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/Movie.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/PrepareCalculateCSM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/PrepareCalculateCSM.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/Rasterize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/Rasterize.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/RasterizeBurnoutBlur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/RasterizeBurnoutBlur.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/ResetRenderStates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/ResetRenderStates.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/ResetScissorRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/ResetScissorRect.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/ResetViewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/ResetViewport.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/Resolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/Resolve.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/RunCommandBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/RunCommandBuffer.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/SetAutoZPass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/SetAutoZPass.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/SetBackStencilOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/SetBackStencilOp.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/SetBlendMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/SetBlendMode.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/SetCSMTextures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/SetCSMTextures.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/SetClip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/SetClip.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/SetColorWriteEnable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/SetColorWriteEnable.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/SetConstantShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/SetConstantShader.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/SetCullMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/SetCullMode.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/SetCurrentScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/SetCurrentScreen.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/SetDepthTextures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/SetDepthTextures.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/SetFovY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/SetFovY.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/SetFrameBufferObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/SetFrameBufferObject.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/SetReflectionTextures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/SetReflectionTextures.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/SetScissorRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/SetScissorRect.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/SetScissorTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/SetScissorTest.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/SetScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/SetScreen.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/SetShaderGPRAllocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/SetShaderGPRAllocation.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/SetStencilEnable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/SetStencilEnable.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/SetStencilFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/SetStencilFunc.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/SetStencilOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/SetStencilOp.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/SetStencilWriteMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/SetStencilWriteMask.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/SetTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/SetTexture.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/SetUserClipPlaneEnable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/SetUserClipPlaneEnable.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/SetViewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/SetViewport.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderAction/SetZMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderAction/SetZMode.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/RenderPostprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/RenderPostprocess.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SaveDataTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SaveDataTask.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SaveDataTaskXENON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SaveDataTaskXENON.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SelectWindowTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SelectWindowTask.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/AI/StateMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/AI/StateMachine.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/ApplicationXenon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/ApplicationXenon.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/ApplicationXenon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/ApplicationXenon.inl -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Audio/Cue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Audio/Cue.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Audio/IAudioEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Audio/IAudioEngine.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Audio/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Audio/Player.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Audio/PlayerImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Audio/PlayerImpl.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Component.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Engine/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Engine/Application.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Engine/Doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Engine/Doc.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Engine/DocMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Engine/DocMode.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Engine/RenderProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Engine/RenderProcess.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Engine/Task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Engine/Task.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Graphics/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Graphics/Device.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Graphics/Frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Graphics/Frame.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Graphics/FrameGP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Graphics/FrameGP.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Graphics/FrameObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Graphics/FrameObserver.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Graphics/Technique.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Graphics/Technique.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Graphics/TechniqueFXL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Graphics/TechniqueFXL.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Graphics/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Graphics/Texture.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Graphics/Transforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Graphics/Transforms.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Graphics/Vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Graphics/Vertex.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Graphics/Xenon/DeviceXenon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Graphics/Xenon/DeviceXenon.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Graphics/Xenon/TextureXenon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Graphics/Xenon/TextureXenon.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/IResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/IResource.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/IResource2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/IResource2.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/IResourceMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/IResourceMgr.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Input/Manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Input/Manager.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Input/Manager.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Input/Manager.inl -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/LinkNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/LinkNode.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Math/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Math/Matrix.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Math/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Math/Quaternion.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Math/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Math/Vector.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Message.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/MessageReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/MessageReceiver.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Object.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Physics/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Physics/Entity.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Physics/Havok/EntityHavok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Physics/Havok/EntityHavok.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Physics/Havok/EntityHavokImp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Physics/Havok/EntityHavokImp.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Physics/Havok/PhantomHavok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Physics/Havok/PhantomHavok.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Physics/Havok/WorldHavok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Physics/Havok/WorldHavok.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Physics/IntersectEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Physics/IntersectEvent.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Physics/IntersectListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Physics/IntersectListener.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Physics/Phantom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Physics/Phantom.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Physics/PhantomListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Physics/PhantomListener.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Physics/Shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Physics/Shape.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Physics/ShapeCastEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Physics/ShapeCastEvent.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Physics/ShapeCastListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Physics/ShapeCastListener.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Physics/World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Physics/World.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/RefCountObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/RefCountObject.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/RefSharedPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/RefSharedPointer.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Scenery/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Scenery/Camera.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Scenery/CameraEventCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Scenery/CameraEventCallback.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Scenery/CameraImp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Scenery/CameraImp.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Scenery/Drawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Scenery/Drawable.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/SoX/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/SoX/Thread.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/StdImageFilters/BurnoutBlurFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/StdImageFilters/BurnoutBlurFilter.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/StdImageFilters/SingleTechniqueFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/StdImageFilters/SingleTechniqueFilter.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/System/CreateStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/System/CreateStatic.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/System/Diagnostics/Performance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/System/Diagnostics/Performance.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/System/Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/System/Singleton.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/TextBook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/TextBook.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/TextBookMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/TextBookMgr.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/TextCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/TextCard.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/TextEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/TextEntity.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/TextFontPicture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/TextFontPicture.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/TextFontPictureMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/TextFontPictureMgr.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/TitleTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/TitleTask.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/VehicleMissileCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/VehicleMissileCtrl.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/VehicleMissileCtrlAutomatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/VehicleMissileCtrlAutomatic.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/VehicleMissileCtrlSingle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/VehicleMissileCtrlSingle.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/WorldRenderProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/WorldRenderProcess.h -------------------------------------------------------------------------------- /MarathonRecomp/api/Sonicteam/sonicXmaPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/Sonicteam/sonicXmaPlayer.h -------------------------------------------------------------------------------- /MarathonRecomp/api/boost/smart_ptr/make_shared_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/boost/smart_ptr/make_shared_object.h -------------------------------------------------------------------------------- /MarathonRecomp/api/boost/smart_ptr/shared_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/boost/smart_ptr/shared_ptr.h -------------------------------------------------------------------------------- /MarathonRecomp/api/d3dxb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/d3dxb.h -------------------------------------------------------------------------------- /MarathonRecomp/api/hk330/hkArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/hk330/hkArray.h -------------------------------------------------------------------------------- /MarathonRecomp/api/hk330/hkReferencedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/hk330/hkReferencedObject.h -------------------------------------------------------------------------------- /MarathonRecomp/api/hk330/hkpBroadPhaseHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/hk330/hkpBroadPhaseHandle.h -------------------------------------------------------------------------------- /MarathonRecomp/api/hk330/hkpCdBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/hk330/hkpCdBody.h -------------------------------------------------------------------------------- /MarathonRecomp/api/hk330/hkpCollidable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/hk330/hkpCollidable.h -------------------------------------------------------------------------------- /MarathonRecomp/api/hk330/hkpCollidableCollidableFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/hk330/hkpCollidableCollidableFilter.h -------------------------------------------------------------------------------- /MarathonRecomp/api/hk330/hkpCollisionFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/hk330/hkpCollisionFilter.h -------------------------------------------------------------------------------- /MarathonRecomp/api/hk330/hkpEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/hk330/hkpEntity.h -------------------------------------------------------------------------------- /MarathonRecomp/api/hk330/hkpLinkedCollidable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/hk330/hkpLinkedCollidable.h -------------------------------------------------------------------------------- /MarathonRecomp/api/hk330/hkpPhantom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/hk330/hkpPhantom.h -------------------------------------------------------------------------------- /MarathonRecomp/api/hk330/hkpProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/hk330/hkpProperty.h -------------------------------------------------------------------------------- /MarathonRecomp/api/hk330/hkpRayCollidableFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/hk330/hkpRayCollidableFilter.h -------------------------------------------------------------------------------- /MarathonRecomp/api/hk330/hkpRayShapeCollectionFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/hk330/hkpRayShapeCollectionFilter.h -------------------------------------------------------------------------------- /MarathonRecomp/api/hk330/hkpRigidBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/hk330/hkpRigidBody.h -------------------------------------------------------------------------------- /MarathonRecomp/api/hk330/hkpShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/hk330/hkpShape.h -------------------------------------------------------------------------------- /MarathonRecomp/api/hk330/hkpShapeCollectionFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/hk330/hkpShapeCollectionFilter.h -------------------------------------------------------------------------------- /MarathonRecomp/api/hk330/hkpTypedBroadPhaseHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/hk330/hkpTypedBroadPhaseHandle.h -------------------------------------------------------------------------------- /MarathonRecomp/api/hk330/hkpWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/hk330/hkpWorld.h -------------------------------------------------------------------------------- /MarathonRecomp/api/hk330/hkpWorldObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/hk330/hkpWorldObject.h -------------------------------------------------------------------------------- /MarathonRecomp/api/stdx/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/stdx/string.h -------------------------------------------------------------------------------- /MarathonRecomp/api/stdx/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/stdx/vector.h -------------------------------------------------------------------------------- /MarathonRecomp/api/stdx/wstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/api/stdx/wstring.h -------------------------------------------------------------------------------- /MarathonRecomp/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/app.cpp -------------------------------------------------------------------------------- /MarathonRecomp/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/app.h -------------------------------------------------------------------------------- /MarathonRecomp/apu/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/apu/audio.cpp -------------------------------------------------------------------------------- /MarathonRecomp/apu/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/apu/audio.h -------------------------------------------------------------------------------- /MarathonRecomp/apu/driver/sdl2_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/apu/driver/sdl2_driver.cpp -------------------------------------------------------------------------------- /MarathonRecomp/apu/embedded_player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/apu/embedded_player.cpp -------------------------------------------------------------------------------- /MarathonRecomp/apu/embedded_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/apu/embedded_player.h -------------------------------------------------------------------------------- /MarathonRecomp/apu/xma_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/apu/xma_decoder.cpp -------------------------------------------------------------------------------- /MarathonRecomp/apu/xma_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/apu/xma_decoder.h -------------------------------------------------------------------------------- /MarathonRecomp/cpu/guest_stack_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/cpu/guest_stack_var.h -------------------------------------------------------------------------------- /MarathonRecomp/cpu/guest_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/cpu/guest_thread.cpp -------------------------------------------------------------------------------- /MarathonRecomp/cpu/guest_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/cpu/guest_thread.h -------------------------------------------------------------------------------- /MarathonRecomp/cpu/ppc_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/cpu/ppc_context.h -------------------------------------------------------------------------------- /MarathonRecomp/decompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/decompressor.h -------------------------------------------------------------------------------- /MarathonRecomp/exports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/exports.cpp -------------------------------------------------------------------------------- /MarathonRecomp/exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/exports.h -------------------------------------------------------------------------------- /MarathonRecomp/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/framework.h -------------------------------------------------------------------------------- /MarathonRecomp/gpu/cache/pipeline_state_cache.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MarathonRecomp/gpu/cache/vertex_declaration_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/cache/vertex_declaration_cache.h -------------------------------------------------------------------------------- /MarathonRecomp/gpu/cache/vertex_element_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/cache/vertex_element_cache.h -------------------------------------------------------------------------------- /MarathonRecomp/gpu/imgui/imgui_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/imgui/imgui_common.cpp -------------------------------------------------------------------------------- /MarathonRecomp/gpu/imgui/imgui_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/imgui/imgui_common.h -------------------------------------------------------------------------------- /MarathonRecomp/gpu/imgui/imgui_font_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/imgui/imgui_font_builder.cpp -------------------------------------------------------------------------------- /MarathonRecomp/gpu/imgui/imgui_font_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/imgui/imgui_font_builder.h -------------------------------------------------------------------------------- /MarathonRecomp/gpu/imgui/imgui_snapshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/imgui/imgui_snapshot.cpp -------------------------------------------------------------------------------- /MarathonRecomp/gpu/imgui/imgui_snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/imgui/imgui_snapshot.h -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/hlsl/.gitignore: -------------------------------------------------------------------------------- 1 | *.hlsl.*.h 2 | -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/hlsl/blend_color_alpha_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/hlsl/blend_color_alpha_ps.hlsl -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/hlsl/copy_color_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/hlsl/copy_color_ps.hlsl -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/hlsl/copy_common.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/hlsl/copy_common.hlsli -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/hlsl/copy_depth_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/hlsl/copy_depth_ps.hlsl -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/hlsl/copy_vs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/hlsl/copy_vs.hlsl -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/hlsl/csd_filter_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/hlsl/csd_filter_ps.hlsl -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/hlsl/csd_no_tex_vs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/hlsl/csd_no_tex_vs.hlsl -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/hlsl/csd_vs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/hlsl/csd_vs.hlsl -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/hlsl/enhanced_burnout_blur_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/hlsl/enhanced_burnout_blur_ps.hlsl -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/hlsl/enhanced_burnout_blur_vs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/hlsl/enhanced_burnout_blur_vs.hlsl -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/hlsl/gamma_correction_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/hlsl/gamma_correction_ps.hlsl -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/hlsl/gaussian_blur.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/hlsl/gaussian_blur.hlsli -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/hlsl/gaussian_blur_3x3.hlsl: -------------------------------------------------------------------------------- 1 | #define KERNEL_SIZE 3 2 | #include "gaussian_blur.hlsli" 3 | -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/hlsl/gaussian_blur_5x5.hlsl: -------------------------------------------------------------------------------- 1 | #define KERNEL_SIZE 5 2 | #include "gaussian_blur.hlsli" 3 | -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/hlsl/gaussian_blur_7x7.hlsl: -------------------------------------------------------------------------------- 1 | #define KERNEL_SIZE 7 2 | #include "gaussian_blur.hlsli" 3 | -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/hlsl/gaussian_blur_9x9.hlsl: -------------------------------------------------------------------------------- 1 | #define KERNEL_SIZE 9 2 | #include "gaussian_blur.hlsli" 3 | -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/hlsl/imgui_common.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/hlsl/imgui_common.hlsli -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/hlsl/imgui_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/hlsl/imgui_ps.hlsl -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/hlsl/imgui_vs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/hlsl/imgui_vs.hlsl -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/hlsl/resolve_msaa_color.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/hlsl/resolve_msaa_color.hlsli -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/hlsl/resolve_msaa_color_2x.hlsl: -------------------------------------------------------------------------------- 1 | #define SAMPLE_COUNT 2 2 | #include "resolve_msaa_color.hlsli" 3 | -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/hlsl/resolve_msaa_color_4x.hlsl: -------------------------------------------------------------------------------- 1 | #define SAMPLE_COUNT 4 2 | #include "resolve_msaa_color.hlsli" 3 | -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/hlsl/resolve_msaa_color_8x.hlsl: -------------------------------------------------------------------------------- 1 | #define SAMPLE_COUNT 8 2 | #include "resolve_msaa_color.hlsli" 3 | -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/hlsl/resolve_msaa_depth.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/hlsl/resolve_msaa_depth.hlsli -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/hlsl/resolve_msaa_depth_2x.hlsl: -------------------------------------------------------------------------------- 1 | #define SAMPLE_COUNT 2 2 | #include "resolve_msaa_depth.hlsli" 3 | -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/hlsl/resolve_msaa_depth_4x.hlsl: -------------------------------------------------------------------------------- 1 | #define SAMPLE_COUNT 4 2 | #include "resolve_msaa_depth.hlsli" 3 | -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/hlsl/resolve_msaa_depth_8x.hlsl: -------------------------------------------------------------------------------- 1 | #define SAMPLE_COUNT 8 2 | #include "resolve_msaa_depth.hlsli" 3 | -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/msl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/msl/.gitignore -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/msl/blend_color_alpha_ps.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/msl/blend_color_alpha_ps.metal -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/msl/copy_color_ps.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/msl/copy_color_ps.metal -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/msl/copy_common.metali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/msl/copy_common.metali -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/msl/copy_depth_ps.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/msl/copy_depth_ps.metal -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/msl/copy_vs.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/msl/copy_vs.metal -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/msl/csd_filter_ps.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/msl/csd_filter_ps.metal -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/msl/csd_no_tex_vs.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/msl/csd_no_tex_vs.metal -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/msl/csd_vs.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/msl/csd_vs.metal -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/msl/enhanced_burnout_blur_ps.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/msl/enhanced_burnout_blur_ps.metal -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/msl/enhanced_burnout_blur_vs.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/msl/enhanced_burnout_blur_vs.metal -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/msl/gamma_correction_ps.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/msl/gamma_correction_ps.metal -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/msl/gaussian_blur.metali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/msl/gaussian_blur.metali -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/msl/gaussian_blur_3x3.metal: -------------------------------------------------------------------------------- 1 | #define KERNEL_SIZE 3 2 | #include "gaussian_blur.metali" 3 | -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/msl/gaussian_blur_5x5.metal: -------------------------------------------------------------------------------- 1 | #define KERNEL_SIZE 5 2 | #include "gaussian_blur.metali" 3 | -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/msl/gaussian_blur_7x7.metal: -------------------------------------------------------------------------------- 1 | #define KERNEL_SIZE 7 2 | #include "gaussian_blur.metali" 3 | -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/msl/gaussian_blur_9x9.metal: -------------------------------------------------------------------------------- 1 | #define KERNEL_SIZE 9 2 | #include "gaussian_blur.metali" 3 | -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/msl/imgui_common.metali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/msl/imgui_common.metali -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/msl/imgui_ps.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/msl/imgui_ps.metal -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/msl/imgui_vs.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/msl/imgui_vs.metal -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/msl/resolve_msaa_color.metali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/msl/resolve_msaa_color.metali -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/msl/resolve_msaa_color_2x.metal: -------------------------------------------------------------------------------- 1 | #define SAMPLE_COUNT 2 2 | #include "resolve_msaa_color.metali" 3 | -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/msl/resolve_msaa_color_4x.metal: -------------------------------------------------------------------------------- 1 | #define SAMPLE_COUNT 4 2 | #include "resolve_msaa_color.metali" 3 | -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/msl/resolve_msaa_color_8x.metal: -------------------------------------------------------------------------------- 1 | #define SAMPLE_COUNT 8 2 | #include "resolve_msaa_color.metali" 3 | -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/msl/resolve_msaa_depth.metali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/shader/msl/resolve_msaa_depth.metali -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/msl/resolve_msaa_depth_2x.metal: -------------------------------------------------------------------------------- 1 | #define SAMPLE_COUNT 2 2 | #include "resolve_msaa_depth.metali" 3 | -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/msl/resolve_msaa_depth_4x.metal: -------------------------------------------------------------------------------- 1 | #define SAMPLE_COUNT 4 2 | #include "resolve_msaa_depth.metali" 3 | -------------------------------------------------------------------------------- /MarathonRecomp/gpu/shader/msl/resolve_msaa_depth_8x.metal: -------------------------------------------------------------------------------- 1 | #define SAMPLE_COUNT 8 2 | #include "resolve_msaa_depth.metali" 3 | -------------------------------------------------------------------------------- /MarathonRecomp/gpu/video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/video.cpp -------------------------------------------------------------------------------- /MarathonRecomp/gpu/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/gpu/video.h -------------------------------------------------------------------------------- /MarathonRecomp/hid/driver/sdl_hid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/hid/driver/sdl_hid.cpp -------------------------------------------------------------------------------- /MarathonRecomp/hid/hid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/hid/hid.cpp -------------------------------------------------------------------------------- /MarathonRecomp/hid/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/hid/hid.h -------------------------------------------------------------------------------- /MarathonRecomp/install/directory_file_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/install/directory_file_system.h -------------------------------------------------------------------------------- /MarathonRecomp/install/hashes/episode_amigo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/install/hashes/episode_amigo.cpp -------------------------------------------------------------------------------- /MarathonRecomp/install/hashes/episode_amigo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/install/hashes/episode_amigo.h -------------------------------------------------------------------------------- /MarathonRecomp/install/hashes/episode_shadow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/install/hashes/episode_shadow.cpp -------------------------------------------------------------------------------- /MarathonRecomp/install/hashes/episode_shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/install/hashes/episode_shadow.h -------------------------------------------------------------------------------- /MarathonRecomp/install/hashes/episode_silver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/install/hashes/episode_silver.cpp -------------------------------------------------------------------------------- /MarathonRecomp/install/hashes/episode_silver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/install/hashes/episode_silver.h -------------------------------------------------------------------------------- /MarathonRecomp/install/hashes/episode_sonic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/install/hashes/episode_sonic.cpp -------------------------------------------------------------------------------- /MarathonRecomp/install/hashes/episode_sonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/install/hashes/episode_sonic.h -------------------------------------------------------------------------------- /MarathonRecomp/install/hashes/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/install/hashes/game.cpp -------------------------------------------------------------------------------- /MarathonRecomp/install/hashes/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/install/hashes/game.h -------------------------------------------------------------------------------- /MarathonRecomp/install/hashes/mission_shadow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/install/hashes/mission_shadow.cpp -------------------------------------------------------------------------------- /MarathonRecomp/install/hashes/mission_shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/install/hashes/mission_shadow.h -------------------------------------------------------------------------------- /MarathonRecomp/install/hashes/mission_silver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/install/hashes/mission_silver.cpp -------------------------------------------------------------------------------- /MarathonRecomp/install/hashes/mission_silver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/install/hashes/mission_silver.h -------------------------------------------------------------------------------- /MarathonRecomp/install/hashes/mission_sonic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/install/hashes/mission_sonic.cpp -------------------------------------------------------------------------------- /MarathonRecomp/install/hashes/mission_sonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/install/hashes/mission_sonic.h -------------------------------------------------------------------------------- /MarathonRecomp/install/installer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/install/installer.cpp -------------------------------------------------------------------------------- /MarathonRecomp/install/installer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/install/installer.h -------------------------------------------------------------------------------- /MarathonRecomp/install/iso_file_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/install/iso_file_system.cpp -------------------------------------------------------------------------------- /MarathonRecomp/install/iso_file_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/install/iso_file_system.h -------------------------------------------------------------------------------- /MarathonRecomp/install/update_checker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/install/update_checker.cpp -------------------------------------------------------------------------------- /MarathonRecomp/install/update_checker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/install/update_checker.h -------------------------------------------------------------------------------- /MarathonRecomp/install/virtual_file_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/install/virtual_file_system.h -------------------------------------------------------------------------------- /MarathonRecomp/install/xcontent_file_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/install/xcontent_file_system.cpp -------------------------------------------------------------------------------- /MarathonRecomp/install/xcontent_file_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/install/xcontent_file_system.h -------------------------------------------------------------------------------- /MarathonRecomp/kernel/freelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/kernel/freelist.h -------------------------------------------------------------------------------- /MarathonRecomp/kernel/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/kernel/function.h -------------------------------------------------------------------------------- /MarathonRecomp/kernel/heap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/kernel/heap.cpp -------------------------------------------------------------------------------- /MarathonRecomp/kernel/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/kernel/heap.h -------------------------------------------------------------------------------- /MarathonRecomp/kernel/imports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/kernel/imports.cpp -------------------------------------------------------------------------------- /MarathonRecomp/kernel/io/file_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/kernel/io/file_system.cpp -------------------------------------------------------------------------------- /MarathonRecomp/kernel/io/file_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/kernel/io/file_system.h -------------------------------------------------------------------------------- /MarathonRecomp/kernel/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/kernel/memory.cpp -------------------------------------------------------------------------------- /MarathonRecomp/kernel/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/kernel/memory.h -------------------------------------------------------------------------------- /MarathonRecomp/kernel/xam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/kernel/xam.cpp -------------------------------------------------------------------------------- /MarathonRecomp/kernel/xam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/kernel/xam.h -------------------------------------------------------------------------------- /MarathonRecomp/kernel/xdbf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/kernel/xdbf.h -------------------------------------------------------------------------------- /MarathonRecomp/kernel/xdm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/kernel/xdm.cpp -------------------------------------------------------------------------------- /MarathonRecomp/kernel/xdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/kernel/xdm.h -------------------------------------------------------------------------------- /MarathonRecomp/locale/config_locale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/locale/config_locale.cpp -------------------------------------------------------------------------------- /MarathonRecomp/locale/locale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/locale/locale.cpp -------------------------------------------------------------------------------- /MarathonRecomp/locale/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/locale/locale.h -------------------------------------------------------------------------------- /MarathonRecomp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/main.cpp -------------------------------------------------------------------------------- /MarathonRecomp/misc_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/misc_impl.cpp -------------------------------------------------------------------------------- /MarathonRecomp/mod/ini_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/mod/ini_file.h -------------------------------------------------------------------------------- /MarathonRecomp/mod/ini_file.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/mod/ini_file.inl -------------------------------------------------------------------------------- /MarathonRecomp/mod/mod_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/mod/mod_loader.cpp -------------------------------------------------------------------------------- /MarathonRecomp/mod/mod_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/mod/mod_loader.h -------------------------------------------------------------------------------- /MarathonRecomp/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/mutex.h -------------------------------------------------------------------------------- /MarathonRecomp/natvis.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/natvis.natvis -------------------------------------------------------------------------------- /MarathonRecomp/os/.gitignore: -------------------------------------------------------------------------------- 1 | ![Ww][Ii][Nn]32/ -------------------------------------------------------------------------------- /MarathonRecomp/os/linux/logger_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/os/linux/logger_linux.cpp -------------------------------------------------------------------------------- /MarathonRecomp/os/linux/media_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/os/linux/media_linux.cpp -------------------------------------------------------------------------------- /MarathonRecomp/os/linux/process_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/os/linux/process_linux.cpp -------------------------------------------------------------------------------- /MarathonRecomp/os/linux/registry_linux.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/os/linux/registry_linux.inl -------------------------------------------------------------------------------- /MarathonRecomp/os/linux/user_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/os/linux/user_linux.cpp -------------------------------------------------------------------------------- /MarathonRecomp/os/linux/version_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/os/linux/version_linux.cpp -------------------------------------------------------------------------------- /MarathonRecomp/os/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/os/logger.h -------------------------------------------------------------------------------- /MarathonRecomp/os/macos/logger_macos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/os/macos/logger_macos.cpp -------------------------------------------------------------------------------- /MarathonRecomp/os/macos/media_macos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/os/macos/media_macos.cpp -------------------------------------------------------------------------------- /MarathonRecomp/os/macos/process_macos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/os/macos/process_macos.cpp -------------------------------------------------------------------------------- /MarathonRecomp/os/macos/registry_macos.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/os/macos/registry_macos.inl -------------------------------------------------------------------------------- /MarathonRecomp/os/macos/user_macos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/os/macos/user_macos.cpp -------------------------------------------------------------------------------- /MarathonRecomp/os/macos/version_macos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/os/macos/version_macos.cpp -------------------------------------------------------------------------------- /MarathonRecomp/os/media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/os/media.h -------------------------------------------------------------------------------- /MarathonRecomp/os/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/os/process.h -------------------------------------------------------------------------------- /MarathonRecomp/os/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/os/registry.h -------------------------------------------------------------------------------- /MarathonRecomp/os/user.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace os::user 4 | { 5 | bool IsDarkTheme(); 6 | } 7 | -------------------------------------------------------------------------------- /MarathonRecomp/os/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/os/version.h -------------------------------------------------------------------------------- /MarathonRecomp/os/win32/logger_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/os/win32/logger_win32.cpp -------------------------------------------------------------------------------- /MarathonRecomp/os/win32/media_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/os/win32/media_win32.cpp -------------------------------------------------------------------------------- /MarathonRecomp/os/win32/process_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/os/win32/process_win32.cpp -------------------------------------------------------------------------------- /MarathonRecomp/os/win32/registry_win32.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/os/win32/registry_win32.inl -------------------------------------------------------------------------------- /MarathonRecomp/os/win32/user_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/os/win32/user_win32.cpp -------------------------------------------------------------------------------- /MarathonRecomp/os/win32/version_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/os/win32/version_win32.cpp -------------------------------------------------------------------------------- /MarathonRecomp/patches/MainMenuTask_patches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/patches/MainMenuTask_patches.cpp -------------------------------------------------------------------------------- /MarathonRecomp/patches/MainMenuTask_patches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/patches/MainMenuTask_patches.h -------------------------------------------------------------------------------- /MarathonRecomp/patches/SaveDataTask_patches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/patches/SaveDataTask_patches.cpp -------------------------------------------------------------------------------- /MarathonRecomp/patches/TitleTask_patches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/patches/TitleTask_patches.cpp -------------------------------------------------------------------------------- /MarathonRecomp/patches/aspect_ratio_patches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/patches/aspect_ratio_patches.cpp -------------------------------------------------------------------------------- /MarathonRecomp/patches/aspect_ratio_patches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/patches/aspect_ratio_patches.h -------------------------------------------------------------------------------- /MarathonRecomp/patches/audio_patches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/patches/audio_patches.cpp -------------------------------------------------------------------------------- /MarathonRecomp/patches/audio_patches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/patches/audio_patches.h -------------------------------------------------------------------------------- /MarathonRecomp/patches/camera_patches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/patches/camera_patches.cpp -------------------------------------------------------------------------------- /MarathonRecomp/patches/camera_patches.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | class CameraPatches 4 | { 5 | public: 6 | static void Init(); 7 | }; 8 | -------------------------------------------------------------------------------- /MarathonRecomp/patches/fps_patches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/patches/fps_patches.cpp -------------------------------------------------------------------------------- /MarathonRecomp/patches/frontend_listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/patches/frontend_listener.cpp -------------------------------------------------------------------------------- /MarathonRecomp/patches/hook_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/patches/hook_event.h -------------------------------------------------------------------------------- /MarathonRecomp/patches/input_patches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/patches/input_patches.cpp -------------------------------------------------------------------------------- /MarathonRecomp/patches/loading_patches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/patches/loading_patches.cpp -------------------------------------------------------------------------------- /MarathonRecomp/patches/loading_patches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/patches/loading_patches.h -------------------------------------------------------------------------------- /MarathonRecomp/patches/misc_patches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/patches/misc_patches.cpp -------------------------------------------------------------------------------- /MarathonRecomp/patches/patches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/patches/patches.h -------------------------------------------------------------------------------- /MarathonRecomp/patches/pause_patches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/patches/pause_patches.cpp -------------------------------------------------------------------------------- /MarathonRecomp/patches/player_patches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/patches/player_patches.cpp -------------------------------------------------------------------------------- /MarathonRecomp/patches/text_patches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/patches/text_patches.cpp -------------------------------------------------------------------------------- /MarathonRecomp/patches/text_patches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/patches/text_patches.h -------------------------------------------------------------------------------- /MarathonRecomp/patches/video_patches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/patches/video_patches.cpp -------------------------------------------------------------------------------- /MarathonRecomp/preload_executable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/preload_executable.cpp -------------------------------------------------------------------------------- /MarathonRecomp/preload_executable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/preload_executable.h -------------------------------------------------------------------------------- /MarathonRecomp/res/.gitignore: -------------------------------------------------------------------------------- 1 | ![Ww][Ii][Nn]32/ 2 | *.c 3 | *.h 4 | !credits.h -------------------------------------------------------------------------------- /MarathonRecomp/res/credits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/res/credits.h -------------------------------------------------------------------------------- /MarathonRecomp/res/macos/MacOSXBundleInfo.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/res/macos/MacOSXBundleInfo.plist.in -------------------------------------------------------------------------------- /MarathonRecomp/res/macos/game_icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/res/macos/game_icon.icns -------------------------------------------------------------------------------- /MarathonRecomp/res/version.cpp.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/res/version.cpp.template -------------------------------------------------------------------------------- /MarathonRecomp/res/version.h.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/res/version.h.template -------------------------------------------------------------------------------- /MarathonRecomp/res/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/res/version.txt -------------------------------------------------------------------------------- /MarathonRecomp/res/win32/res.rc.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/res/win32/res.rc.template -------------------------------------------------------------------------------- /MarathonRecomp/sdl_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/sdl_events.h -------------------------------------------------------------------------------- /MarathonRecomp/sdl_listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/sdl_listener.cpp -------------------------------------------------------------------------------- /MarathonRecomp/sdl_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/sdl_listener.h -------------------------------------------------------------------------------- /MarathonRecomp/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/stdafx.cpp -------------------------------------------------------------------------------- /MarathonRecomp/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/stdafx.h -------------------------------------------------------------------------------- /MarathonRecomp/ui/achievement_menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/ui/achievement_menu.cpp -------------------------------------------------------------------------------- /MarathonRecomp/ui/achievement_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/ui/achievement_menu.h -------------------------------------------------------------------------------- /MarathonRecomp/ui/achievement_overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/ui/achievement_overlay.cpp -------------------------------------------------------------------------------- /MarathonRecomp/ui/achievement_overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/ui/achievement_overlay.h -------------------------------------------------------------------------------- /MarathonRecomp/ui/black_bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/ui/black_bar.cpp -------------------------------------------------------------------------------- /MarathonRecomp/ui/black_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/ui/black_bar.h -------------------------------------------------------------------------------- /MarathonRecomp/ui/button_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/ui/button_window.cpp -------------------------------------------------------------------------------- /MarathonRecomp/ui/button_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/ui/button_window.h -------------------------------------------------------------------------------- /MarathonRecomp/ui/common_menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/ui/common_menu.cpp -------------------------------------------------------------------------------- /MarathonRecomp/ui/common_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/ui/common_menu.h -------------------------------------------------------------------------------- /MarathonRecomp/ui/fader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/ui/fader.cpp -------------------------------------------------------------------------------- /MarathonRecomp/ui/fader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/ui/fader.h -------------------------------------------------------------------------------- /MarathonRecomp/ui/game_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/ui/game_window.cpp -------------------------------------------------------------------------------- /MarathonRecomp/ui/game_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/ui/game_window.h -------------------------------------------------------------------------------- /MarathonRecomp/ui/imgui_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/ui/imgui_utils.cpp -------------------------------------------------------------------------------- /MarathonRecomp/ui/imgui_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/ui/imgui_utils.h -------------------------------------------------------------------------------- /MarathonRecomp/ui/installer_wizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/ui/installer_wizard.cpp -------------------------------------------------------------------------------- /MarathonRecomp/ui/installer_wizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/ui/installer_wizard.h -------------------------------------------------------------------------------- /MarathonRecomp/ui/message_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/ui/message_window.cpp -------------------------------------------------------------------------------- /MarathonRecomp/ui/message_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/ui/message_window.h -------------------------------------------------------------------------------- /MarathonRecomp/ui/options_menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/ui/options_menu.cpp -------------------------------------------------------------------------------- /MarathonRecomp/ui/options_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/ui/options_menu.h -------------------------------------------------------------------------------- /MarathonRecomp/user/achievement_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/user/achievement_data.cpp -------------------------------------------------------------------------------- /MarathonRecomp/user/achievement_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/user/achievement_data.h -------------------------------------------------------------------------------- /MarathonRecomp/user/achievement_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/user/achievement_manager.cpp -------------------------------------------------------------------------------- /MarathonRecomp/user/achievement_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/user/achievement_manager.h -------------------------------------------------------------------------------- /MarathonRecomp/user/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/user/config.cpp -------------------------------------------------------------------------------- /MarathonRecomp/user/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/user/config.h -------------------------------------------------------------------------------- /MarathonRecomp/user/config_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/user/config_def.h -------------------------------------------------------------------------------- /MarathonRecomp/user/paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/user/paths.cpp -------------------------------------------------------------------------------- /MarathonRecomp/user/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/user/paths.h -------------------------------------------------------------------------------- /MarathonRecomp/user/registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/user/registry.cpp -------------------------------------------------------------------------------- /MarathonRecomp/user/registry.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | class Registry 4 | { 5 | public: 6 | static void Save(); 7 | }; 8 | -------------------------------------------------------------------------------- /MarathonRecomp/utils/bit_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/utils/bit_stream.cpp -------------------------------------------------------------------------------- /MarathonRecomp/utils/bit_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/utils/bit_stream.h -------------------------------------------------------------------------------- /MarathonRecomp/utils/ring_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/utils/ring_buffer.cpp -------------------------------------------------------------------------------- /MarathonRecomp/utils/ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/utils/ring_buffer.h -------------------------------------------------------------------------------- /MarathonRecomp/version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/version.cmake -------------------------------------------------------------------------------- /MarathonRecomp/xxHashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecomp/xxHashMap.h -------------------------------------------------------------------------------- /MarathonRecompLib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecompLib/CMakeLists.txt -------------------------------------------------------------------------------- /MarathonRecompLib/config/Marathon.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecompLib/config/Marathon.toml -------------------------------------------------------------------------------- /MarathonRecompLib/config/switch_table.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecompLib/config/switch_table.toml -------------------------------------------------------------------------------- /MarathonRecompLib/ppc/.gitignore: -------------------------------------------------------------------------------- 1 | ppc_* -------------------------------------------------------------------------------- /MarathonRecompLib/private/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /MarathonRecompLib/shader/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !shader_cache.h 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /MarathonRecompLib/shader/shader_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/MarathonRecompLib/shader/shader_cache.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/README.md -------------------------------------------------------------------------------- /docs/BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/docs/BUILDING.md -------------------------------------------------------------------------------- /docs/DUMPING-en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/docs/DUMPING-en.md -------------------------------------------------------------------------------- /flatpak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/flatpak/README.md -------------------------------------------------------------------------------- /flatpak/io.github.sonicnext_dev.marathonrecomp.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/flatpak/io.github.sonicnext_dev.marathonrecomp.desktop -------------------------------------------------------------------------------- /flatpak/io.github.sonicnext_dev.marathonrecomp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/flatpak/io.github.sonicnext_dev.marathonrecomp.json -------------------------------------------------------------------------------- /flatpak/io.github.sonicnext_dev.marathonrecomp.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/flatpak/io.github.sonicnext_dev.marathonrecomp.metainfo.xml -------------------------------------------------------------------------------- /thirdparty/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/thirdparty/.gitignore -------------------------------------------------------------------------------- /thirdparty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/thirdparty/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/MoltenVK/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/thirdparty/MoltenVK/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/o1heap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/thirdparty/o1heap/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/o1heap/o1heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/thirdparty/o1heap/o1heap.c -------------------------------------------------------------------------------- /thirdparty/o1heap/o1heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/thirdparty/o1heap/o1heap.h -------------------------------------------------------------------------------- /toolchains/linux-clang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/toolchains/linux-clang.cmake -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/bc_diff/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/tools/bc_diff/CMakeLists.txt -------------------------------------------------------------------------------- /tools/bc_diff/bc_diff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/tools/bc_diff/bc_diff.cpp -------------------------------------------------------------------------------- /tools/bc_diff/bc_diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/tools/bc_diff/bc_diff.h -------------------------------------------------------------------------------- /tools/file_to_c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/tools/file_to_c/CMakeLists.txt -------------------------------------------------------------------------------- /tools/file_to_c/file_to_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/tools/file_to_c/file_to_c.cpp -------------------------------------------------------------------------------- /tools/fshasher/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/tools/fshasher/CMakeLists.txt -------------------------------------------------------------------------------- /tools/fshasher/fshasher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/tools/fshasher/fshasher.cpp -------------------------------------------------------------------------------- /tools/fshasher/plainargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/tools/fshasher/plainargs.h -------------------------------------------------------------------------------- /tools/u8extract/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/tools/u8extract/CMakeLists.txt -------------------------------------------------------------------------------- /tools/u8extract/u8extract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/tools/u8extract/u8extract.cpp -------------------------------------------------------------------------------- /tools/x_decompress/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/tools/x_decompress/CMakeLists.txt -------------------------------------------------------------------------------- /tools/x_decompress/x_decompress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/tools/x_decompress/x_decompress.cpp -------------------------------------------------------------------------------- /update_submodules.bat: -------------------------------------------------------------------------------- 1 | git submodule update --init --recursive -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonicnext-dev/MarathonRecomp/HEAD/vcpkg.json --------------------------------------------------------------------------------