├── .clang-format ├── .github └── workflows │ └── switch.yml ├── .gitignore ├── .gitmodules ├── .vscode └── settings.json ├── Android.mk ├── LICENSE.md ├── Makefile ├── Makefile.msys2 ├── Makefile_cfgs └── Platforms │ ├── Linux.cfg │ ├── Switch.cfg │ ├── Unknown.cfg │ ├── WiiU.cfg │ ├── Windows.cfg │ └── macOS.cfg ├── README.md ├── RSDKv3 ios.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── RSDKv3.xcscheme ├── RSDKv3.sln ├── RSDKv3.vita ├── CMakeLists.txt ├── build-internal.sh ├── build.sh └── sce_sys │ └── livearea │ └── contents │ └── template.xml ├── RSDKv3.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── RSDKv3.xcscheme ├── RSDKv3 ├── Animation.cpp ├── Animation.hpp ├── Audio.cpp ├── Audio.hpp ├── Collision.cpp ├── Collision.hpp ├── Debug.cpp ├── Debug.hpp ├── Drawing.cpp ├── Drawing.hpp ├── Ini.cpp ├── Ini.hpp ├── Input.cpp ├── Input.hpp ├── Math.cpp ├── Math.hpp ├── ModAPI.cpp ├── ModAPI.hpp ├── Object.cpp ├── Object.hpp ├── Palette.cpp ├── Palette.hpp ├── Player.cpp ├── Player.hpp ├── RSDKv3 Decomp Icon.ico ├── RSDKv3.rc ├── RSDKv3.vcxproj ├── RSDKv3.vcxproj.filters ├── RSDKv3SDL1.vcxproj ├── RSDKv3SDL1.vcxproj.filters ├── Reader.cpp ├── Reader.hpp ├── RetroEngine.cpp ├── RetroEngine.hpp ├── Scene.cpp ├── Scene.hpp ├── Scene3D.cpp ├── Scene3D.hpp ├── Script.cpp ├── Script.hpp ├── Sprite.cpp ├── Sprite.hpp ├── String.cpp ├── String.hpp ├── Text.cpp ├── Text.hpp ├── Userdata.cpp ├── Userdata.hpp ├── Video.cpp ├── Video.hpp ├── fcaseopen.c ├── fcaseopen.h ├── main.cpp └── resource.h ├── RSDKv3SDL1.sln ├── RSDKv3UWP.sln ├── RSDKv3UWP ├── Package.appxmanifest ├── PropertySheet.props ├── RSDKv3UWP.vcxproj ├── RSDKv3UWP.vcxproj.filters ├── WinRTIncludes.hpp ├── main.cpp └── packages.config ├── android ├── app │ ├── build.gradle │ ├── jni │ │ ├── Android.mk │ │ ├── Application.mk │ │ ├── CMakeLists.txt │ │ ├── SDL │ │ └── src │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ ├── com │ │ │ └── decomp │ │ │ │ └── rsdkv3 │ │ │ │ └── RSDKv3.java │ │ └── org │ │ │ └── libsdl │ │ │ └── app │ │ │ ├── HIDDevice.java │ │ │ ├── HIDDeviceBLESteamController.java │ │ │ ├── HIDDeviceManager.java │ │ │ ├── HIDDeviceUSB.java │ │ │ ├── SDL.java │ │ │ ├── SDLActivity.java │ │ │ ├── SDLAudioManager.java │ │ │ └── SDLControllerManager.java │ │ └── res │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── values-v27 │ │ └── styles.xml │ │ └── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── dependencies ├── all │ ├── dependencies.txt │ └── theoraplay │ │ ├── .hg_archival.txt │ │ ├── .hgignore │ │ ├── LICENSE.txt │ │ ├── test │ │ ├── maketest.sh │ │ ├── sdltheoraplay.c │ │ ├── simplesdl.c │ │ └── testtheoraplay.c │ │ ├── theoraplay.c │ │ ├── theoraplay.h │ │ └── theoraplay_cvtrgb.h ├── android │ ├── config_types.h │ └── dependencies.txt ├── ios │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Default.png │ ├── Info.plist │ └── dependencies.txt ├── mac │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── RSDKv3 Decomp Icon-1024.png │ │ │ ├── RSDKv3 Decomp Icon-128.png │ │ │ ├── RSDKv3 Decomp Icon-16.png │ │ │ ├── RSDKv3 Decomp Icon-256.png │ │ │ ├── RSDKv3 Decomp Icon-257.png │ │ │ ├── RSDKv3 Decomp Icon-32.png │ │ │ ├── RSDKv3 Decomp Icon-33.png │ │ │ ├── RSDKv3 Decomp Icon-512.png │ │ │ ├── RSDKv3 Decomp Icon-513.png │ │ │ └── RSDKv3 Decomp Icon-64.png │ │ └── Contents.json │ ├── Info.plist │ ├── RSDKv3.entitlements │ ├── cocoaHelpers.hpp │ ├── cocoaHelpers.mm │ ├── dependencies.txt │ └── icons │ │ ├── RSDKv3 Decomp Icon-1024.png │ │ ├── RSDKv3 Decomp Icon-128.png │ │ ├── RSDKv3 Decomp Icon-16.png │ │ ├── RSDKv3 Decomp Icon-256.png │ │ ├── RSDKv3 Decomp Icon-32.png │ │ ├── RSDKv3 Decomp Icon-512.png │ │ └── RSDKv3 Decomp Icon-64.png ├── switch │ └── filesystem.hpp ├── win-uwp │ └── dependencies.txt └── windows │ ├── ValveFileVDF │ └── vdf_parser.hpp │ └── dependencies.txt ├── header.png ├── icon.jpg └── props ├── winactions.props └── winactions_x64.props /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/switch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/.github/workflows/switch.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/Android.mk -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.msys2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/Makefile.msys2 -------------------------------------------------------------------------------- /Makefile_cfgs/Platforms/Linux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/Makefile_cfgs/Platforms/Linux.cfg -------------------------------------------------------------------------------- /Makefile_cfgs/Platforms/Switch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/Makefile_cfgs/Platforms/Switch.cfg -------------------------------------------------------------------------------- /Makefile_cfgs/Platforms/Unknown.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Makefile_cfgs/Platforms/WiiU.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/Makefile_cfgs/Platforms/WiiU.cfg -------------------------------------------------------------------------------- /Makefile_cfgs/Platforms/Windows.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/Makefile_cfgs/Platforms/Windows.cfg -------------------------------------------------------------------------------- /Makefile_cfgs/Platforms/macOS.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/Makefile_cfgs/Platforms/macOS.cfg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/README.md -------------------------------------------------------------------------------- /RSDKv3 ios.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3 ios.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RSDKv3 ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3 ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RSDKv3 ios.xcodeproj/xcshareddata/xcschemes/RSDKv3.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3 ios.xcodeproj/xcshareddata/xcschemes/RSDKv3.xcscheme -------------------------------------------------------------------------------- /RSDKv3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3.sln -------------------------------------------------------------------------------- /RSDKv3.vita/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3.vita/CMakeLists.txt -------------------------------------------------------------------------------- /RSDKv3.vita/build-internal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3.vita/build-internal.sh -------------------------------------------------------------------------------- /RSDKv3.vita/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3.vita/build.sh -------------------------------------------------------------------------------- /RSDKv3.vita/sce_sys/livearea/contents/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3.vita/sce_sys/livearea/contents/template.xml -------------------------------------------------------------------------------- /RSDKv3.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RSDKv3.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RSDKv3.xcodeproj/xcshareddata/xcschemes/RSDKv3.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3.xcodeproj/xcshareddata/xcschemes/RSDKv3.xcscheme -------------------------------------------------------------------------------- /RSDKv3/Animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Animation.cpp -------------------------------------------------------------------------------- /RSDKv3/Animation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Animation.hpp -------------------------------------------------------------------------------- /RSDKv3/Audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Audio.cpp -------------------------------------------------------------------------------- /RSDKv3/Audio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Audio.hpp -------------------------------------------------------------------------------- /RSDKv3/Collision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Collision.cpp -------------------------------------------------------------------------------- /RSDKv3/Collision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Collision.hpp -------------------------------------------------------------------------------- /RSDKv3/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Debug.cpp -------------------------------------------------------------------------------- /RSDKv3/Debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Debug.hpp -------------------------------------------------------------------------------- /RSDKv3/Drawing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Drawing.cpp -------------------------------------------------------------------------------- /RSDKv3/Drawing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Drawing.hpp -------------------------------------------------------------------------------- /RSDKv3/Ini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Ini.cpp -------------------------------------------------------------------------------- /RSDKv3/Ini.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Ini.hpp -------------------------------------------------------------------------------- /RSDKv3/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Input.cpp -------------------------------------------------------------------------------- /RSDKv3/Input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Input.hpp -------------------------------------------------------------------------------- /RSDKv3/Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Math.cpp -------------------------------------------------------------------------------- /RSDKv3/Math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Math.hpp -------------------------------------------------------------------------------- /RSDKv3/ModAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/ModAPI.cpp -------------------------------------------------------------------------------- /RSDKv3/ModAPI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/ModAPI.hpp -------------------------------------------------------------------------------- /RSDKv3/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Object.cpp -------------------------------------------------------------------------------- /RSDKv3/Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Object.hpp -------------------------------------------------------------------------------- /RSDKv3/Palette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Palette.cpp -------------------------------------------------------------------------------- /RSDKv3/Palette.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Palette.hpp -------------------------------------------------------------------------------- /RSDKv3/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Player.cpp -------------------------------------------------------------------------------- /RSDKv3/Player.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Player.hpp -------------------------------------------------------------------------------- /RSDKv3/RSDKv3 Decomp Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/RSDKv3 Decomp Icon.ico -------------------------------------------------------------------------------- /RSDKv3/RSDKv3.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/RSDKv3.rc -------------------------------------------------------------------------------- /RSDKv3/RSDKv3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/RSDKv3.vcxproj -------------------------------------------------------------------------------- /RSDKv3/RSDKv3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/RSDKv3.vcxproj.filters -------------------------------------------------------------------------------- /RSDKv3/RSDKv3SDL1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/RSDKv3SDL1.vcxproj -------------------------------------------------------------------------------- /RSDKv3/RSDKv3SDL1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/RSDKv3SDL1.vcxproj.filters -------------------------------------------------------------------------------- /RSDKv3/Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Reader.cpp -------------------------------------------------------------------------------- /RSDKv3/Reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Reader.hpp -------------------------------------------------------------------------------- /RSDKv3/RetroEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/RetroEngine.cpp -------------------------------------------------------------------------------- /RSDKv3/RetroEngine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/RetroEngine.hpp -------------------------------------------------------------------------------- /RSDKv3/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Scene.cpp -------------------------------------------------------------------------------- /RSDKv3/Scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Scene.hpp -------------------------------------------------------------------------------- /RSDKv3/Scene3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Scene3D.cpp -------------------------------------------------------------------------------- /RSDKv3/Scene3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Scene3D.hpp -------------------------------------------------------------------------------- /RSDKv3/Script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Script.cpp -------------------------------------------------------------------------------- /RSDKv3/Script.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Script.hpp -------------------------------------------------------------------------------- /RSDKv3/Sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Sprite.cpp -------------------------------------------------------------------------------- /RSDKv3/Sprite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Sprite.hpp -------------------------------------------------------------------------------- /RSDKv3/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/String.cpp -------------------------------------------------------------------------------- /RSDKv3/String.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/String.hpp -------------------------------------------------------------------------------- /RSDKv3/Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Text.cpp -------------------------------------------------------------------------------- /RSDKv3/Text.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Text.hpp -------------------------------------------------------------------------------- /RSDKv3/Userdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Userdata.cpp -------------------------------------------------------------------------------- /RSDKv3/Userdata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Userdata.hpp -------------------------------------------------------------------------------- /RSDKv3/Video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Video.cpp -------------------------------------------------------------------------------- /RSDKv3/Video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/Video.hpp -------------------------------------------------------------------------------- /RSDKv3/fcaseopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/fcaseopen.c -------------------------------------------------------------------------------- /RSDKv3/fcaseopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/fcaseopen.h -------------------------------------------------------------------------------- /RSDKv3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/main.cpp -------------------------------------------------------------------------------- /RSDKv3/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3/resource.h -------------------------------------------------------------------------------- /RSDKv3SDL1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3SDL1.sln -------------------------------------------------------------------------------- /RSDKv3UWP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3UWP.sln -------------------------------------------------------------------------------- /RSDKv3UWP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3UWP/Package.appxmanifest -------------------------------------------------------------------------------- /RSDKv3UWP/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3UWP/PropertySheet.props -------------------------------------------------------------------------------- /RSDKv3UWP/RSDKv3UWP.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3UWP/RSDKv3UWP.vcxproj -------------------------------------------------------------------------------- /RSDKv3UWP/RSDKv3UWP.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3UWP/RSDKv3UWP.vcxproj.filters -------------------------------------------------------------------------------- /RSDKv3UWP/WinRTIncludes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3UWP/WinRTIncludes.hpp -------------------------------------------------------------------------------- /RSDKv3UWP/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3UWP/main.cpp -------------------------------------------------------------------------------- /RSDKv3UWP/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/RSDKv3UWP/packages.config -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /android/app/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/jni/Application.mk -------------------------------------------------------------------------------- /android/app/jni/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/jni/CMakeLists.txt -------------------------------------------------------------------------------- /android/app/jni/SDL: -------------------------------------------------------------------------------- 1 | ../../../dependencies/android/SDL -------------------------------------------------------------------------------- /android/app/jni/src: -------------------------------------------------------------------------------- 1 | ../../.. -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/decomp/rsdkv3/RSDKv3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/java/com/decomp/rsdkv3/RSDKv3.java -------------------------------------------------------------------------------- /android/app/src/main/java/org/libsdl/app/HIDDevice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/java/org/libsdl/app/HIDDevice.java -------------------------------------------------------------------------------- /android/app/src/main/java/org/libsdl/app/HIDDeviceBLESteamController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/java/org/libsdl/app/HIDDeviceBLESteamController.java -------------------------------------------------------------------------------- /android/app/src/main/java/org/libsdl/app/HIDDeviceManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/java/org/libsdl/app/HIDDeviceManager.java -------------------------------------------------------------------------------- /android/app/src/main/java/org/libsdl/app/HIDDeviceUSB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/java/org/libsdl/app/HIDDeviceUSB.java -------------------------------------------------------------------------------- /android/app/src/main/java/org/libsdl/app/SDL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/java/org/libsdl/app/SDL.java -------------------------------------------------------------------------------- /android/app/src/main/java/org/libsdl/app/SDLActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/java/org/libsdl/app/SDLActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/org/libsdl/app/SDLAudioManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/java/org/libsdl/app/SDLAudioManager.java -------------------------------------------------------------------------------- /android/app/src/main/java/org/libsdl/app/SDLControllerManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/java/org/libsdl/app/SDLControllerManager.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-v27/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/res/values-v27/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /dependencies/all/dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/all/dependencies.txt -------------------------------------------------------------------------------- /dependencies/all/theoraplay/.hg_archival.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/all/theoraplay/.hg_archival.txt -------------------------------------------------------------------------------- /dependencies/all/theoraplay/.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/all/theoraplay/.hgignore -------------------------------------------------------------------------------- /dependencies/all/theoraplay/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/all/theoraplay/LICENSE.txt -------------------------------------------------------------------------------- /dependencies/all/theoraplay/test/maketest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/all/theoraplay/test/maketest.sh -------------------------------------------------------------------------------- /dependencies/all/theoraplay/test/sdltheoraplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/all/theoraplay/test/sdltheoraplay.c -------------------------------------------------------------------------------- /dependencies/all/theoraplay/test/simplesdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/all/theoraplay/test/simplesdl.c -------------------------------------------------------------------------------- /dependencies/all/theoraplay/test/testtheoraplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/all/theoraplay/test/testtheoraplay.c -------------------------------------------------------------------------------- /dependencies/all/theoraplay/theoraplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/all/theoraplay/theoraplay.c -------------------------------------------------------------------------------- /dependencies/all/theoraplay/theoraplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/all/theoraplay/theoraplay.h -------------------------------------------------------------------------------- /dependencies/all/theoraplay/theoraplay_cvtrgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/all/theoraplay/theoraplay_cvtrgb.h -------------------------------------------------------------------------------- /dependencies/android/config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/android/config_types.h -------------------------------------------------------------------------------- /dependencies/android/dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/android/dependencies.txt -------------------------------------------------------------------------------- /dependencies/ios/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/ios/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /dependencies/ios/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/ios/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /dependencies/ios/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/ios/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /dependencies/ios/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/ios/Default.png -------------------------------------------------------------------------------- /dependencies/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/ios/Info.plist -------------------------------------------------------------------------------- /dependencies/ios/dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/ios/dependencies.txt -------------------------------------------------------------------------------- /dependencies/mac/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/mac/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv3 Decomp Icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv3 Decomp Icon-1024.png -------------------------------------------------------------------------------- /dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv3 Decomp Icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv3 Decomp Icon-128.png -------------------------------------------------------------------------------- /dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv3 Decomp Icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv3 Decomp Icon-16.png -------------------------------------------------------------------------------- /dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv3 Decomp Icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv3 Decomp Icon-256.png -------------------------------------------------------------------------------- /dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv3 Decomp Icon-257.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv3 Decomp Icon-257.png -------------------------------------------------------------------------------- /dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv3 Decomp Icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv3 Decomp Icon-32.png -------------------------------------------------------------------------------- /dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv3 Decomp Icon-33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv3 Decomp Icon-33.png -------------------------------------------------------------------------------- /dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv3 Decomp Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv3 Decomp Icon-512.png -------------------------------------------------------------------------------- /dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv3 Decomp Icon-513.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv3 Decomp Icon-513.png -------------------------------------------------------------------------------- /dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv3 Decomp Icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv3 Decomp Icon-64.png -------------------------------------------------------------------------------- /dependencies/mac/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/mac/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /dependencies/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/mac/Info.plist -------------------------------------------------------------------------------- /dependencies/mac/RSDKv3.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/mac/RSDKv3.entitlements -------------------------------------------------------------------------------- /dependencies/mac/cocoaHelpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/mac/cocoaHelpers.hpp -------------------------------------------------------------------------------- /dependencies/mac/cocoaHelpers.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/mac/cocoaHelpers.mm -------------------------------------------------------------------------------- /dependencies/mac/dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/mac/dependencies.txt -------------------------------------------------------------------------------- /dependencies/mac/icons/RSDKv3 Decomp Icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/mac/icons/RSDKv3 Decomp Icon-1024.png -------------------------------------------------------------------------------- /dependencies/mac/icons/RSDKv3 Decomp Icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/mac/icons/RSDKv3 Decomp Icon-128.png -------------------------------------------------------------------------------- /dependencies/mac/icons/RSDKv3 Decomp Icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/mac/icons/RSDKv3 Decomp Icon-16.png -------------------------------------------------------------------------------- /dependencies/mac/icons/RSDKv3 Decomp Icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/mac/icons/RSDKv3 Decomp Icon-256.png -------------------------------------------------------------------------------- /dependencies/mac/icons/RSDKv3 Decomp Icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/mac/icons/RSDKv3 Decomp Icon-32.png -------------------------------------------------------------------------------- /dependencies/mac/icons/RSDKv3 Decomp Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/mac/icons/RSDKv3 Decomp Icon-512.png -------------------------------------------------------------------------------- /dependencies/mac/icons/RSDKv3 Decomp Icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/mac/icons/RSDKv3 Decomp Icon-64.png -------------------------------------------------------------------------------- /dependencies/switch/filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/switch/filesystem.hpp -------------------------------------------------------------------------------- /dependencies/win-uwp/dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/win-uwp/dependencies.txt -------------------------------------------------------------------------------- /dependencies/windows/ValveFileVDF/vdf_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/windows/ValveFileVDF/vdf_parser.hpp -------------------------------------------------------------------------------- /dependencies/windows/dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/dependencies/windows/dependencies.txt -------------------------------------------------------------------------------- /header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/header.png -------------------------------------------------------------------------------- /icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/icon.jpg -------------------------------------------------------------------------------- /props/winactions.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/props/winactions.props -------------------------------------------------------------------------------- /props/winactions_x64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-CD-11-Decompilation/HEAD/props/winactions_x64.props --------------------------------------------------------------------------------