├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── MacUI ├── AppDelegate.h ├── AppDelegate.m ├── SetupViewController.h └── SetupViewController.m ├── Makefile ├── README.md ├── Rvm_Win64.sln ├── Rvm_Win64 ├── Rvm_Win64.aps ├── Rvm_Win64.rc ├── Rvm_Win64.vcxproj ├── Rvm_Win64.vcxproj.filters ├── Rvm_Win64.vcxproj.user ├── SDL_win32_main.c ├── icon1.ico ├── references │ ├── BUGS.txt │ ├── COPYING.txt │ ├── README-SDL.txt │ ├── README.txt │ ├── WhatsNew.txt │ ├── include │ │ ├── GL │ │ │ ├── eglew.h │ │ │ ├── glew.h │ │ │ ├── glxew.h │ │ │ └── wglew.h │ │ ├── SDL.h │ │ ├── SDL_assert.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_bits.h │ │ ├── SDL_blendmode.h │ │ ├── SDL_clipboard.h │ │ ├── SDL_config.h │ │ ├── SDL_config.h.cmake │ │ ├── SDL_config.h.in │ │ ├── SDL_config_android.h │ │ ├── SDL_config_iphoneos.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_config_macosx.h.orig │ │ ├── SDL_config_minimal.h │ │ ├── SDL_config_pandora.h │ │ ├── SDL_config_psp.h │ │ ├── SDL_config_windows.h │ │ ├── SDL_config_winrt.h │ │ ├── SDL_config_wiz.h │ │ ├── SDL_copying.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_egl.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_filesystem.h │ │ ├── SDL_gamecontroller.h │ │ ├── SDL_gesture.h │ │ ├── SDL_haptic.h │ │ ├── SDL_hints.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keycode.h │ │ ├── SDL_loadso.h │ │ ├── SDL_log.h │ │ ├── SDL_main.h │ │ ├── SDL_messagebox.h │ │ ├── SDL_metal.h │ │ ├── SDL_mixer.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_opengl_glext.h │ │ ├── SDL_opengles.h │ │ ├── SDL_opengles2.h │ │ ├── SDL_opengles2_gl2.h │ │ ├── SDL_opengles2_gl2ext.h │ │ ├── SDL_opengles2_gl2platform.h │ │ ├── SDL_opengles2_khrplatform.h │ │ ├── SDL_pixels.h │ │ ├── SDL_platform.h │ │ ├── SDL_power.h │ │ ├── SDL_quit.h │ │ ├── SDL_rect.h │ │ ├── SDL_render.h │ │ ├── SDL_revision.h │ │ ├── SDL_rwops.h │ │ ├── SDL_scancode.h │ │ ├── SDL_sensor.h │ │ ├── SDL_shape.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_surface.h │ │ ├── SDL_system.h │ │ ├── SDL_syswm.h │ │ ├── SDL_test.h │ │ ├── SDL_test_assert.h │ │ ├── SDL_test_common.h │ │ ├── SDL_test_compare.h │ │ ├── SDL_test_crc32.h │ │ ├── SDL_test_font.h │ │ ├── SDL_test_fuzzer.h │ │ ├── SDL_test_harness.h │ │ ├── SDL_test_images.h │ │ ├── SDL_test_log.h │ │ ├── SDL_test_md5.h │ │ ├── SDL_test_memory.h │ │ ├── SDL_test_random.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_touch.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── SDL_vulkan.h │ │ ├── begin_code.h │ │ └── close_code.h │ └── lib │ │ └── x64 │ │ ├── LICENSE.FLAC.txt │ │ ├── LICENSE.modplug.txt │ │ ├── LICENSE.mpg123.txt │ │ ├── LICENSE.ogg-vorbis.txt │ │ ├── LICENSE.opus.txt │ │ ├── LICENSE.opusfile.txt │ │ ├── SDL2.dll │ │ ├── SDL2.lib │ │ ├── SDL2_mixer.dll │ │ ├── SDL2_mixer.lib │ │ ├── SDL2main.lib │ │ ├── SDL2test.lib │ │ ├── glew32.dll │ │ ├── glew32.lib │ │ ├── glew32s.lib │ │ ├── libFLAC-8.dll │ │ ├── libmodplug-1.dll │ │ ├── libmpg123-0.dll │ │ ├── libogg-0.dll │ │ ├── libopus-0.dll │ │ ├── libopusfile-0.dll │ │ ├── libvorbis-0.dll │ │ └── libvorbisfile-3.dll ├── resource.h └── win_main.c ├── SDL2.framework ├── Headers ├── Resources ├── SDL2 └── Versions │ ├── A │ ├── Frameworks │ │ └── hidapi.framework │ │ │ ├── Resources │ │ │ ├── Versions │ │ │ ├── A │ │ │ │ ├── Resources │ │ │ │ │ ├── AUTHORS.txt │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── LICENSE-bsd.txt │ │ │ │ │ ├── LICENSE-gpl3.txt │ │ │ │ │ ├── LICENSE-orig.txt │ │ │ │ │ └── LICENSE.txt │ │ │ │ ├── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── hidapi │ │ │ └── Current │ │ │ └── hidapi │ ├── Headers │ │ ├── SDL.h │ │ ├── SDL_assert.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_bits.h │ │ ├── SDL_blendmode.h │ │ ├── SDL_clipboard.h │ │ ├── SDL_config.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_copying.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_filesystem.h │ │ ├── SDL_gamecontroller.h │ │ ├── SDL_gesture.h │ │ ├── SDL_haptic.h │ │ ├── SDL_hints.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keycode.h │ │ ├── SDL_loadso.h │ │ ├── SDL_log.h │ │ ├── SDL_main.h │ │ ├── SDL_messagebox.h │ │ ├── SDL_metal.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_opengl_glext.h │ │ ├── SDL_opengles.h │ │ ├── SDL_opengles2.h │ │ ├── SDL_opengles2_gl2.h │ │ ├── SDL_opengles2_gl2ext.h │ │ ├── SDL_opengles2_gl2platform.h │ │ ├── SDL_opengles2_khrplatform.h │ │ ├── SDL_pixels.h │ │ ├── SDL_platform.h │ │ ├── SDL_power.h │ │ ├── SDL_quit.h │ │ ├── SDL_rect.h │ │ ├── SDL_render.h │ │ ├── SDL_revision.h │ │ ├── SDL_rwops.h │ │ ├── SDL_scancode.h │ │ ├── SDL_sensor.h │ │ ├── SDL_shape.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_surface.h │ │ ├── SDL_system.h │ │ ├── SDL_syswm.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_touch.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── SDL_vulkan.h │ │ ├── begin_code.h │ │ └── close_code.h │ ├── Resources │ │ ├── Info.plist │ │ ├── License.txt │ │ ├── ReadMe.txt │ │ └── default.metallib │ ├── SDL2 │ └── _CodeSignature │ │ └── CodeResources │ └── Current ├── SDL2_mixer.framework ├── Frameworks ├── Headers ├── Resources ├── SDL2_mixer └── Versions │ ├── A │ ├── Frameworks │ │ ├── Ogg.framework │ │ │ ├── Headers │ │ │ ├── Ogg │ │ │ ├── Resources │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── config_types.h │ │ │ │ │ ├── ogg.h │ │ │ │ │ └── os_types.h │ │ │ │ ├── Ogg │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── Current │ │ └── Vorbis.framework │ │ │ ├── Headers │ │ │ ├── Resources │ │ │ ├── Versions │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── codec.h │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ └── vorbisfile.h │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ ├── Vorbis │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ └── Current │ │ │ └── Vorbis │ ├── Headers │ │ └── SDL_mixer.h │ ├── Resources │ │ └── Info.plist │ ├── SDL2_mixer │ └── _CodeSignature │ │ └── CodeResources │ └── Current ├── icon.jpg ├── rvm.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── rvm.xcscheme └── rvm ├── Assets.xcassets └── AppIcon.appiconset │ ├── Contents.json │ ├── icesonic-1.png │ ├── icesonic.png │ ├── icesonic128.png │ ├── icesonic256-1.png │ ├── icesonic256.png │ ├── icesonic32.png │ └── icesonic64.png ├── Base.lproj └── MainMenu.xib ├── Core ├── AnimationFileList.h ├── AnimationSystem.c ├── AnimationSystem.h ├── AudioPlayback.c ├── AudioPlayback.h ├── CollisionBox.h ├── CollisionMask16x16.h ├── CollisionSensor.h ├── DrawVertex.h ├── DrawVertex3D.h ├── EngineCallbacks.c ├── EngineCallbacks.h ├── Face3D.h ├── FileData.h ├── FileIO.c ├── FileIO.h ├── FontCharacter.h ├── FunctionScript.h ├── GfxSurfaceDesc.h ├── GifDecoder.h ├── GifLoader.c ├── GifLoader.h ├── GlobalAppDefinitions.c ├── GlobalAppDefinitions.h ├── GraphicsSystem.c ├── GraphicsSystem.h ├── InputResult.h ├── InputSystem.c ├── InputSystem.h ├── LayoutMap.h ├── LineScrollParallax.h ├── Mappings128x128.h ├── MpvPlayer.c ├── MpvPlayer.h ├── MusicTrackInfo.h ├── ObjectDrawList.h ├── ObjectEntity.h ├── ObjectScript.h ├── ObjectSystem.c ├── ObjectSystem.h ├── PaletteEntry.h ├── PlayerObject.h ├── PlayerStatistics.h ├── PlayerSystem.c ├── PlayerSystem.h ├── Quad2D.h ├── RenderDevice.c ├── RenderDevice.h ├── Scene3D.c ├── Scene3D.h ├── ScriptEngine.h ├── SortList.h ├── SpriteAnimation.h ├── SpriteFrame.h ├── StageList.h ├── StageSystem.c ├── StageSystem.h ├── TextMenu.h ├── TextSystem.c ├── TextSystem.h ├── Vertex2D.h └── Vertex3D.h ├── Info.plist ├── main.m └── main_linux.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/LICENSE -------------------------------------------------------------------------------- /MacUI/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/MacUI/AppDelegate.h -------------------------------------------------------------------------------- /MacUI/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/MacUI/AppDelegate.m -------------------------------------------------------------------------------- /MacUI/SetupViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/MacUI/SetupViewController.h -------------------------------------------------------------------------------- /MacUI/SetupViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/MacUI/SetupViewController.m -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/README.md -------------------------------------------------------------------------------- /Rvm_Win64.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64.sln -------------------------------------------------------------------------------- /Rvm_Win64/Rvm_Win64.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/Rvm_Win64.aps -------------------------------------------------------------------------------- /Rvm_Win64/Rvm_Win64.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/Rvm_Win64.rc -------------------------------------------------------------------------------- /Rvm_Win64/Rvm_Win64.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/Rvm_Win64.vcxproj -------------------------------------------------------------------------------- /Rvm_Win64/Rvm_Win64.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/Rvm_Win64.vcxproj.filters -------------------------------------------------------------------------------- /Rvm_Win64/Rvm_Win64.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/Rvm_Win64.vcxproj.user -------------------------------------------------------------------------------- /Rvm_Win64/SDL_win32_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/SDL_win32_main.c -------------------------------------------------------------------------------- /Rvm_Win64/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/icon1.ico -------------------------------------------------------------------------------- /Rvm_Win64/references/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/BUGS.txt -------------------------------------------------------------------------------- /Rvm_Win64/references/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/COPYING.txt -------------------------------------------------------------------------------- /Rvm_Win64/references/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/README-SDL.txt -------------------------------------------------------------------------------- /Rvm_Win64/references/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/README.txt -------------------------------------------------------------------------------- /Rvm_Win64/references/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/WhatsNew.txt -------------------------------------------------------------------------------- /Rvm_Win64/references/include/GL/eglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/GL/eglew.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/GL/glew.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/GL/glxew.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/GL/wglew.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_assert.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_atomic.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_audio.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_bits.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_blendmode.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_clipboard.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_config.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_config.h.cmake -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_config.h.in -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_config_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_config_android.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_config_iphoneos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_config_iphoneos.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_config_macosx.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_config_macosx.h.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_config_macosx.h.orig -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_config_minimal.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_config_pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_config_pandora.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_config_psp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_config_psp.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_config_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_config_windows.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_config_winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_config_winrt.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_config_wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_config_wiz.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_copying.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_egl.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_endian.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_error.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_events.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_filesystem.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_gamecontroller.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_gesture.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_haptic.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_hints.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_joystick.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_keyboard.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_keycode.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_loadso.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_log.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_main.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_messagebox.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_metal.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_mixer.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_mouse.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_mutex.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_name.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_opengl.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_opengl_glext.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_opengles.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_opengles2.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_pixels.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_platform.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_power.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_quit.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_rect.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_render.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_revision.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_rwops.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_scancode.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_sensor.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_shape.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_stdinc.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_surface.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_system.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_syswm.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_test.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_test_assert.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_test_common.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_test_compare.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_test_crc32.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_test_font.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_test_harness.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_test_images.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_test_log.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_test_md5.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_test_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_test_memory.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_test_random.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_thread.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_timer.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_touch.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_types.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_version.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_video.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/SDL_vulkan.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/begin_code.h -------------------------------------------------------------------------------- /Rvm_Win64/references/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/include/close_code.h -------------------------------------------------------------------------------- /Rvm_Win64/references/lib/x64/LICENSE.FLAC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/lib/x64/LICENSE.FLAC.txt -------------------------------------------------------------------------------- /Rvm_Win64/references/lib/x64/LICENSE.modplug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/lib/x64/LICENSE.modplug.txt -------------------------------------------------------------------------------- /Rvm_Win64/references/lib/x64/LICENSE.mpg123.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/lib/x64/LICENSE.mpg123.txt -------------------------------------------------------------------------------- /Rvm_Win64/references/lib/x64/LICENSE.ogg-vorbis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/lib/x64/LICENSE.ogg-vorbis.txt -------------------------------------------------------------------------------- /Rvm_Win64/references/lib/x64/LICENSE.opus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/lib/x64/LICENSE.opus.txt -------------------------------------------------------------------------------- /Rvm_Win64/references/lib/x64/LICENSE.opusfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/lib/x64/LICENSE.opusfile.txt -------------------------------------------------------------------------------- /Rvm_Win64/references/lib/x64/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/lib/x64/SDL2.dll -------------------------------------------------------------------------------- /Rvm_Win64/references/lib/x64/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/lib/x64/SDL2.lib -------------------------------------------------------------------------------- /Rvm_Win64/references/lib/x64/SDL2_mixer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/lib/x64/SDL2_mixer.dll -------------------------------------------------------------------------------- /Rvm_Win64/references/lib/x64/SDL2_mixer.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/lib/x64/SDL2_mixer.lib -------------------------------------------------------------------------------- /Rvm_Win64/references/lib/x64/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/lib/x64/SDL2main.lib -------------------------------------------------------------------------------- /Rvm_Win64/references/lib/x64/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/lib/x64/SDL2test.lib -------------------------------------------------------------------------------- /Rvm_Win64/references/lib/x64/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/lib/x64/glew32.dll -------------------------------------------------------------------------------- /Rvm_Win64/references/lib/x64/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/lib/x64/glew32.lib -------------------------------------------------------------------------------- /Rvm_Win64/references/lib/x64/glew32s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/lib/x64/glew32s.lib -------------------------------------------------------------------------------- /Rvm_Win64/references/lib/x64/libFLAC-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/lib/x64/libFLAC-8.dll -------------------------------------------------------------------------------- /Rvm_Win64/references/lib/x64/libmodplug-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/lib/x64/libmodplug-1.dll -------------------------------------------------------------------------------- /Rvm_Win64/references/lib/x64/libmpg123-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/lib/x64/libmpg123-0.dll -------------------------------------------------------------------------------- /Rvm_Win64/references/lib/x64/libogg-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/lib/x64/libogg-0.dll -------------------------------------------------------------------------------- /Rvm_Win64/references/lib/x64/libopus-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/lib/x64/libopus-0.dll -------------------------------------------------------------------------------- /Rvm_Win64/references/lib/x64/libopusfile-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/lib/x64/libopusfile-0.dll -------------------------------------------------------------------------------- /Rvm_Win64/references/lib/x64/libvorbis-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/lib/x64/libvorbis-0.dll -------------------------------------------------------------------------------- /Rvm_Win64/references/lib/x64/libvorbisfile-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/references/lib/x64/libvorbisfile-3.dll -------------------------------------------------------------------------------- /Rvm_Win64/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/resource.h -------------------------------------------------------------------------------- /Rvm_Win64/win_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/Rvm_Win64/win_main.c -------------------------------------------------------------------------------- /SDL2.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /SDL2.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /SDL2.framework/SDL2: -------------------------------------------------------------------------------- 1 | Versions/Current/SDL2 -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Frameworks/hidapi.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Frameworks/hidapi.framework/Versions/A/Resources/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Frameworks/hidapi.framework/Versions/A/Resources/AUTHORS.txt -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Frameworks/hidapi.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Frameworks/hidapi.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Frameworks/hidapi.framework/Versions/A/Resources/LICENSE-bsd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Frameworks/hidapi.framework/Versions/A/Resources/LICENSE-bsd.txt -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Frameworks/hidapi.framework/Versions/A/Resources/LICENSE-gpl3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Frameworks/hidapi.framework/Versions/A/Resources/LICENSE-gpl3.txt -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Frameworks/hidapi.framework/Versions/A/Resources/LICENSE-orig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Frameworks/hidapi.framework/Versions/A/Resources/LICENSE-orig.txt -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Frameworks/hidapi.framework/Versions/A/Resources/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Frameworks/hidapi.framework/Versions/A/Resources/LICENSE.txt -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Frameworks/hidapi.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Frameworks/hidapi.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Frameworks/hidapi.framework/Versions/A/hidapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Frameworks/hidapi.framework/Versions/A/hidapi -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Frameworks/hidapi.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Frameworks/hidapi.framework/hidapi: -------------------------------------------------------------------------------- 1 | Versions/Current/hidapi -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_assert.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_atomic.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_audio.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_bits.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_blendmode.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_clipboard.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_config.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_config_macosx.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_copying.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_cpuinfo.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_endian.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_error.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_events.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_filesystem.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_gamecontroller.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_gesture.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_haptic.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_hints.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_joystick.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_keyboard.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_keycode.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_loadso.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_log.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_main.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_messagebox.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_metal.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_mouse.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_mutex.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_name.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_opengl.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_opengl_glext.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_opengles.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_opengles2.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_pixels.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_platform.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_power.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_quit.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_rect.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_render.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_revision.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_rwops.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_scancode.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_sensor.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_shape.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_stdinc.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_surface.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_system.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_syswm.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_thread.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_timer.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_touch.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_types.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_version.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_video.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/SDL_vulkan.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/begin_code.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Headers/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Headers/close_code.h -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Resources/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Resources/License.txt -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Resources/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Resources/ReadMe.txt -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/Resources/default.metallib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/Resources/default.metallib -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/SDL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/SDL2 -------------------------------------------------------------------------------- /SDL2.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /SDL2.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /SDL2_mixer.framework/Frameworks: -------------------------------------------------------------------------------- 1 | Versions/Current/Frameworks -------------------------------------------------------------------------------- /SDL2_mixer.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /SDL2_mixer.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /SDL2_mixer.framework/SDL2_mixer: -------------------------------------------------------------------------------- 1 | Versions/Current/SDL2_mixer -------------------------------------------------------------------------------- /SDL2_mixer.framework/Versions/A/Frameworks/Ogg.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /SDL2_mixer.framework/Versions/A/Frameworks/Ogg.framework/Ogg: -------------------------------------------------------------------------------- 1 | Versions/Current/Ogg -------------------------------------------------------------------------------- /SDL2_mixer.framework/Versions/A/Frameworks/Ogg.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /SDL2_mixer.framework/Versions/A/Frameworks/Ogg.framework/Versions/A/Headers/config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2_mixer.framework/Versions/A/Frameworks/Ogg.framework/Versions/A/Headers/config_types.h -------------------------------------------------------------------------------- /SDL2_mixer.framework/Versions/A/Frameworks/Ogg.framework/Versions/A/Headers/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2_mixer.framework/Versions/A/Frameworks/Ogg.framework/Versions/A/Headers/ogg.h -------------------------------------------------------------------------------- /SDL2_mixer.framework/Versions/A/Frameworks/Ogg.framework/Versions/A/Headers/os_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2_mixer.framework/Versions/A/Frameworks/Ogg.framework/Versions/A/Headers/os_types.h -------------------------------------------------------------------------------- /SDL2_mixer.framework/Versions/A/Frameworks/Ogg.framework/Versions/A/Ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2_mixer.framework/Versions/A/Frameworks/Ogg.framework/Versions/A/Ogg -------------------------------------------------------------------------------- /SDL2_mixer.framework/Versions/A/Frameworks/Ogg.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2_mixer.framework/Versions/A/Frameworks/Ogg.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /SDL2_mixer.framework/Versions/A/Frameworks/Ogg.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2_mixer.framework/Versions/A/Frameworks/Ogg.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /SDL2_mixer.framework/Versions/A/Frameworks/Ogg.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /SDL2_mixer.framework/Versions/A/Frameworks/Vorbis.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /SDL2_mixer.framework/Versions/A/Frameworks/Vorbis.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /SDL2_mixer.framework/Versions/A/Frameworks/Vorbis.framework/Versions/A/Headers/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2_mixer.framework/Versions/A/Frameworks/Vorbis.framework/Versions/A/Headers/codec.h -------------------------------------------------------------------------------- /SDL2_mixer.framework/Versions/A/Frameworks/Vorbis.framework/Versions/A/Headers/vorbisenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2_mixer.framework/Versions/A/Frameworks/Vorbis.framework/Versions/A/Headers/vorbisenc.h -------------------------------------------------------------------------------- /SDL2_mixer.framework/Versions/A/Frameworks/Vorbis.framework/Versions/A/Headers/vorbisfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2_mixer.framework/Versions/A/Frameworks/Vorbis.framework/Versions/A/Headers/vorbisfile.h -------------------------------------------------------------------------------- /SDL2_mixer.framework/Versions/A/Frameworks/Vorbis.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2_mixer.framework/Versions/A/Frameworks/Vorbis.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /SDL2_mixer.framework/Versions/A/Frameworks/Vorbis.framework/Versions/A/Vorbis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2_mixer.framework/Versions/A/Frameworks/Vorbis.framework/Versions/A/Vorbis -------------------------------------------------------------------------------- /SDL2_mixer.framework/Versions/A/Frameworks/Vorbis.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2_mixer.framework/Versions/A/Frameworks/Vorbis.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /SDL2_mixer.framework/Versions/A/Frameworks/Vorbis.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /SDL2_mixer.framework/Versions/A/Frameworks/Vorbis.framework/Vorbis: -------------------------------------------------------------------------------- 1 | Versions/Current/Vorbis -------------------------------------------------------------------------------- /SDL2_mixer.framework/Versions/A/Headers/SDL_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2_mixer.framework/Versions/A/Headers/SDL_mixer.h -------------------------------------------------------------------------------- /SDL2_mixer.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2_mixer.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /SDL2_mixer.framework/Versions/A/SDL2_mixer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2_mixer.framework/Versions/A/SDL2_mixer -------------------------------------------------------------------------------- /SDL2_mixer.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/SDL2_mixer.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /SDL2_mixer.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/icon.jpg -------------------------------------------------------------------------------- /rvm.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /rvm.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /rvm.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /rvm.xcodeproj/xcshareddata/xcschemes/rvm.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm.xcodeproj/xcshareddata/xcschemes/rvm.xcscheme -------------------------------------------------------------------------------- /rvm/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /rvm/Assets.xcassets/AppIcon.appiconset/icesonic-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Assets.xcassets/AppIcon.appiconset/icesonic-1.png -------------------------------------------------------------------------------- /rvm/Assets.xcassets/AppIcon.appiconset/icesonic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Assets.xcassets/AppIcon.appiconset/icesonic.png -------------------------------------------------------------------------------- /rvm/Assets.xcassets/AppIcon.appiconset/icesonic128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Assets.xcassets/AppIcon.appiconset/icesonic128.png -------------------------------------------------------------------------------- /rvm/Assets.xcassets/AppIcon.appiconset/icesonic256-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Assets.xcassets/AppIcon.appiconset/icesonic256-1.png -------------------------------------------------------------------------------- /rvm/Assets.xcassets/AppIcon.appiconset/icesonic256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Assets.xcassets/AppIcon.appiconset/icesonic256.png -------------------------------------------------------------------------------- /rvm/Assets.xcassets/AppIcon.appiconset/icesonic32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Assets.xcassets/AppIcon.appiconset/icesonic32.png -------------------------------------------------------------------------------- /rvm/Assets.xcassets/AppIcon.appiconset/icesonic64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Assets.xcassets/AppIcon.appiconset/icesonic64.png -------------------------------------------------------------------------------- /rvm/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /rvm/Core/AnimationFileList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/AnimationFileList.h -------------------------------------------------------------------------------- /rvm/Core/AnimationSystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/AnimationSystem.c -------------------------------------------------------------------------------- /rvm/Core/AnimationSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/AnimationSystem.h -------------------------------------------------------------------------------- /rvm/Core/AudioPlayback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/AudioPlayback.c -------------------------------------------------------------------------------- /rvm/Core/AudioPlayback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/AudioPlayback.h -------------------------------------------------------------------------------- /rvm/Core/CollisionBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/CollisionBox.h -------------------------------------------------------------------------------- /rvm/Core/CollisionMask16x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/CollisionMask16x16.h -------------------------------------------------------------------------------- /rvm/Core/CollisionSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/CollisionSensor.h -------------------------------------------------------------------------------- /rvm/Core/DrawVertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/DrawVertex.h -------------------------------------------------------------------------------- /rvm/Core/DrawVertex3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/DrawVertex3D.h -------------------------------------------------------------------------------- /rvm/Core/EngineCallbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/EngineCallbacks.c -------------------------------------------------------------------------------- /rvm/Core/EngineCallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/EngineCallbacks.h -------------------------------------------------------------------------------- /rvm/Core/Face3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/Face3D.h -------------------------------------------------------------------------------- /rvm/Core/FileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/FileData.h -------------------------------------------------------------------------------- /rvm/Core/FileIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/FileIO.c -------------------------------------------------------------------------------- /rvm/Core/FileIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/FileIO.h -------------------------------------------------------------------------------- /rvm/Core/FontCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/FontCharacter.h -------------------------------------------------------------------------------- /rvm/Core/FunctionScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/FunctionScript.h -------------------------------------------------------------------------------- /rvm/Core/GfxSurfaceDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/GfxSurfaceDesc.h -------------------------------------------------------------------------------- /rvm/Core/GifDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/GifDecoder.h -------------------------------------------------------------------------------- /rvm/Core/GifLoader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/GifLoader.c -------------------------------------------------------------------------------- /rvm/Core/GifLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/GifLoader.h -------------------------------------------------------------------------------- /rvm/Core/GlobalAppDefinitions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/GlobalAppDefinitions.c -------------------------------------------------------------------------------- /rvm/Core/GlobalAppDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/GlobalAppDefinitions.h -------------------------------------------------------------------------------- /rvm/Core/GraphicsSystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/GraphicsSystem.c -------------------------------------------------------------------------------- /rvm/Core/GraphicsSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/GraphicsSystem.h -------------------------------------------------------------------------------- /rvm/Core/InputResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/InputResult.h -------------------------------------------------------------------------------- /rvm/Core/InputSystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/InputSystem.c -------------------------------------------------------------------------------- /rvm/Core/InputSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/InputSystem.h -------------------------------------------------------------------------------- /rvm/Core/LayoutMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/LayoutMap.h -------------------------------------------------------------------------------- /rvm/Core/LineScrollParallax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/LineScrollParallax.h -------------------------------------------------------------------------------- /rvm/Core/Mappings128x128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/Mappings128x128.h -------------------------------------------------------------------------------- /rvm/Core/MpvPlayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/MpvPlayer.c -------------------------------------------------------------------------------- /rvm/Core/MpvPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/MpvPlayer.h -------------------------------------------------------------------------------- /rvm/Core/MusicTrackInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/MusicTrackInfo.h -------------------------------------------------------------------------------- /rvm/Core/ObjectDrawList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/ObjectDrawList.h -------------------------------------------------------------------------------- /rvm/Core/ObjectEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/ObjectEntity.h -------------------------------------------------------------------------------- /rvm/Core/ObjectScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/ObjectScript.h -------------------------------------------------------------------------------- /rvm/Core/ObjectSystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/ObjectSystem.c -------------------------------------------------------------------------------- /rvm/Core/ObjectSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/ObjectSystem.h -------------------------------------------------------------------------------- /rvm/Core/PaletteEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/PaletteEntry.h -------------------------------------------------------------------------------- /rvm/Core/PlayerObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/PlayerObject.h -------------------------------------------------------------------------------- /rvm/Core/PlayerStatistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/PlayerStatistics.h -------------------------------------------------------------------------------- /rvm/Core/PlayerSystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/PlayerSystem.c -------------------------------------------------------------------------------- /rvm/Core/PlayerSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/PlayerSystem.h -------------------------------------------------------------------------------- /rvm/Core/Quad2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/Quad2D.h -------------------------------------------------------------------------------- /rvm/Core/RenderDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/RenderDevice.c -------------------------------------------------------------------------------- /rvm/Core/RenderDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/RenderDevice.h -------------------------------------------------------------------------------- /rvm/Core/Scene3D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/Scene3D.c -------------------------------------------------------------------------------- /rvm/Core/Scene3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/Scene3D.h -------------------------------------------------------------------------------- /rvm/Core/ScriptEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/ScriptEngine.h -------------------------------------------------------------------------------- /rvm/Core/SortList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/SortList.h -------------------------------------------------------------------------------- /rvm/Core/SpriteAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/SpriteAnimation.h -------------------------------------------------------------------------------- /rvm/Core/SpriteFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/SpriteFrame.h -------------------------------------------------------------------------------- /rvm/Core/StageList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/StageList.h -------------------------------------------------------------------------------- /rvm/Core/StageSystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/StageSystem.c -------------------------------------------------------------------------------- /rvm/Core/StageSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/StageSystem.h -------------------------------------------------------------------------------- /rvm/Core/TextMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/TextMenu.h -------------------------------------------------------------------------------- /rvm/Core/TextSystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/TextSystem.c -------------------------------------------------------------------------------- /rvm/Core/TextSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/TextSystem.h -------------------------------------------------------------------------------- /rvm/Core/Vertex2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/Vertex2D.h -------------------------------------------------------------------------------- /rvm/Core/Vertex3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Core/Vertex3D.h -------------------------------------------------------------------------------- /rvm/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/Info.plist -------------------------------------------------------------------------------- /rvm/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/main.m -------------------------------------------------------------------------------- /rvm/main_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sappharad/rvm_soniccd/HEAD/rvm/main_linux.c --------------------------------------------------------------------------------