├── .clang-format ├── .github └── workflows │ └── switch.yml ├── .gitignore ├── .gitmodules ├── Android.mk ├── LICENSE.md ├── Makefile ├── Makefile.msys2 ├── Makefile_cfgs └── Platforms │ ├── Linux.cfg │ ├── Switch.cfg │ ├── Unknown.cfg │ ├── WiiU.cfg │ └── Windows.cfg ├── README.md ├── RSDKv4 ios.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── rubberduckycooly.xcuserdatad │ │ └── WorkspaceSettings.xcsettings └── xcshareddata │ └── xcschemes │ └── RSDKv4.xcscheme ├── RSDKv4.SDL1.sln ├── RSDKv4.UWP.sln ├── RSDKv4.sln ├── RSDKv4.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── rubberduckycooly.xcuserdatad │ │ └── WorkspaceSettings.xcsettings └── xcshareddata │ └── xcschemes │ └── RSDKv4.xcscheme ├── RSDKv4 ├── 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 ├── NativeObjects │ ├── AboutScreen.cpp │ ├── AboutScreen.hpp │ ├── AchievementDisplay.cpp │ ├── AchievementDisplay.hpp │ ├── AchievementsButton.cpp │ ├── AchievementsButton.hpp │ ├── AchievementsMenu.cpp │ ├── AchievementsMenu.hpp │ ├── All.cpp │ ├── BackButton.cpp │ ├── BackButton.hpp │ ├── CWSplash.cpp │ ├── CWSplash.hpp │ ├── CreditText.cpp │ ├── CreditText.hpp │ ├── DialogPanel.cpp │ ├── DialogPanel.hpp │ ├── FadeScreen.cpp │ ├── FadeScreen.hpp │ ├── InstructionsScreen.cpp │ ├── InstructionsScreen.hpp │ ├── LeaderboardsButton.cpp │ ├── LeaderboardsButton.hpp │ ├── MenuBG.cpp │ ├── MenuBG.hpp │ ├── MenuControl.cpp │ ├── MenuControl.hpp │ ├── ModInfoButton.cpp │ ├── ModInfoButton.hpp │ ├── ModsButton.cpp │ ├── ModsButton.hpp │ ├── ModsMenu.cpp │ ├── ModsMenu.hpp │ ├── MultiplayerButton.cpp │ ├── MultiplayerButton.hpp │ ├── MultiplayerHandler.cpp │ ├── MultiplayerHandler.hpp │ ├── MultiplayerScreen.cpp │ ├── MultiplayerScreen.hpp │ ├── NativeObjects.hpp │ ├── OptionsButton.cpp │ ├── OptionsButton.hpp │ ├── OptionsMenu.cpp │ ├── OptionsMenu.hpp │ ├── PauseMenu.cpp │ ├── PauseMenu.hpp │ ├── PlayerSelectScreen.cpp │ ├── PlayerSelectScreen.hpp │ ├── PushButton.cpp │ ├── PushButton.hpp │ ├── RecordsScreen.cpp │ ├── RecordsScreen.hpp │ ├── RetroGameLoop.cpp │ ├── RetroGameLoop.hpp │ ├── SaveSelect.cpp │ ├── SaveSelect.hpp │ ├── SegaIDButton.cpp │ ├── SegaIDButton.hpp │ ├── SegaSplash.cpp │ ├── SegaSplash.hpp │ ├── SettingsScreen.cpp │ ├── SettingsScreen.hpp │ ├── StaffCredits.cpp │ ├── StaffCredits.hpp │ ├── StartGameButton.cpp │ ├── StartGameButton.hpp │ ├── SubMenuButton.cpp │ ├── SubMenuButton.hpp │ ├── TextLabel.cpp │ ├── TextLabel.hpp │ ├── TimeAttack.cpp │ ├── TimeAttack.hpp │ ├── TimeAttackButton.cpp │ ├── TimeAttackButton.hpp │ ├── TitleScreen.cpp │ ├── TitleScreen.hpp │ ├── VirtualDPad.cpp │ ├── VirtualDPad.hpp │ ├── VirtualDPadM.cpp │ ├── VirtualDPadM.hpp │ ├── ZoneButton.cpp │ └── ZoneButton.hpp ├── Networking.cpp ├── Networking.hpp ├── Object.cpp ├── Object.hpp ├── Palette.cpp ├── Palette.hpp ├── RSDKv4 Decomp Icon.ico ├── RSDKv4.SDL1.vcxproj ├── RSDKv4.SDL1.vcxproj.filters ├── RSDKv4.rc ├── RSDKv4.vcxproj ├── RSDKv4.vcxproj.filters ├── Reader.cpp ├── Reader.hpp ├── Renderer.cpp ├── Renderer.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 ├── fcaseopen.c ├── fcaseopen.h ├── main.cpp └── resource.h ├── Server ├── Makefile ├── Makefile.msys2 ├── Server.cpp ├── Server.vcxproj └── Server.vcxproj.filters ├── Sonic1Decomp.UWP ├── Assets │ ├── LargeTile.scale-100.png │ ├── LargeTile.scale-125.png │ ├── LargeTile.scale-150.png │ ├── LargeTile.scale-200.png │ ├── LargeTile.scale-400.png │ ├── SmallTile.scale-100.png │ ├── SmallTile.scale-125.png │ ├── SmallTile.scale-150.png │ ├── SmallTile.scale-200.png │ ├── SmallTile.scale-400.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-125.png │ ├── SplashScreen.scale-150.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-125.png │ ├── Square150x150Logo.scale-150.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ ├── Square44x44Logo.altform-unplated_targetsize-24.png │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-125.png │ ├── Square44x44Logo.scale-150.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Square44x44Logo.targetsize-16.png │ ├── Square44x44Logo.targetsize-24.png │ ├── Square44x44Logo.targetsize-256.png │ ├── Square44x44Logo.targetsize-32.png │ ├── Square44x44Logo.targetsize-48.png │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-125.png │ ├── StoreLogo.scale-150.png │ ├── StoreLogo.scale-200.png │ ├── StoreLogo.scale-400.png │ ├── WideTile.scale-100.png │ ├── WideTile.scale-125.png │ ├── WideTile.scale-150.png │ ├── WideTile.scale-200.png │ └── WideTile.scale-400.png ├── Package.appxmanifest ├── PropertySheet.props ├── Sonic1Decomp.UWP.vcxproj ├── Sonic1Decomp.UWP.vcxproj.filters └── packages.config ├── Sonic2Decomp.UWP ├── Assets │ ├── LargeTile.scale-100.png │ ├── LargeTile.scale-125.png │ ├── LargeTile.scale-150.png │ ├── LargeTile.scale-200.png │ ├── LargeTile.scale-400.png │ ├── SmallTile.scale-100.png │ ├── SmallTile.scale-125.png │ ├── SmallTile.scale-150.png │ ├── SmallTile.scale-200.png │ ├── SmallTile.scale-400.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-125.png │ ├── SplashScreen.scale-150.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-125.png │ ├── Square150x150Logo.scale-150.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-125.png │ ├── Square44x44Logo.scale-150.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Square44x44Logo.targetsize-16.png │ ├── Square44x44Logo.targetsize-24.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── Square44x44Logo.targetsize-256.png │ ├── Square44x44Logo.targetsize-32.png │ ├── Square44x44Logo.targetsize-48.png │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-125.png │ ├── StoreLogo.scale-150.png │ ├── StoreLogo.scale-200.png │ ├── StoreLogo.scale-400.png │ ├── WideTile.scale-100.png │ ├── WideTile.scale-125.png │ ├── WideTile.scale-150.png │ ├── WideTile.scale-200.png │ └── WideTile.scale-400.png ├── Package.appxmanifest ├── PropertySheet.props ├── Sonic12Decomp.UWP.vcxproj.filters ├── Sonic2Decomp.UWP.vcxproj ├── Sonic2Decomp.UWP.vcxproj.filters └── 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 │ │ │ │ └── rsdkv4 │ │ │ │ └── RSDKv4.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 ├── android │ ├── config_types.h │ └── dependencies.txt ├── ios │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Default.png │ └── dependencies.txt ├── mac │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── RSDKv4 Decomp Icon-1024.png │ │ │ ├── RSDKv4 Decomp Icon-128.png │ │ │ ├── RSDKv4 Decomp Icon-16.png │ │ │ ├── RSDKv4 Decomp Icon-256.png │ │ │ ├── RSDKv4 Decomp Icon-257.png │ │ │ ├── RSDKv4 Decomp Icon-32.png │ │ │ ├── RSDKv4 Decomp Icon-33.png │ │ │ ├── RSDKv4 Decomp Icon-512.png │ │ │ ├── RSDKv4 Decomp Icon-513.png │ │ │ └── RSDKv4 Decomp Icon-64.png │ │ └── Contents.json │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Info.plist │ ├── RSDKv4.entitlements │ ├── cocoaHelpers.hpp │ ├── cocoaHelpers.mm │ ├── dependencies.txt │ └── icons │ │ ├── RSDKv4 Decomp Icon-1024.png │ │ ├── RSDKv4 Decomp Icon-128.png │ │ ├── RSDKv4 Decomp Icon-16.png │ │ ├── RSDKv4 Decomp Icon-256.png │ │ ├── RSDKv4 Decomp Icon-32.png │ │ ├── RSDKv4 Decomp Icon-512.png │ │ └── RSDKv4 Decomp Icon-64.png ├── windows-uwp │ ├── WinRTIncludes.hpp │ └── dependencies.txt └── windows │ └── dependencies.txt ├── flatpak ├── README.md ├── com.sega.Sonic1.appdata.xml ├── com.sega.Sonic1.desktop ├── com.sega.Sonic1.json ├── com.sega.Sonic1.png ├── com.sega.Sonic2.appdata.xml ├── com.sega.Sonic2.desktop ├── com.sega.Sonic2.json └── com.sega.Sonic2.png ├── header.png ├── icon_s1.jpg ├── icon_s2.jpg └── props ├── winactions.props └── winactions_x64.props /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/switch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/.github/workflows/switch.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/.gitmodules -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Android.mk -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.msys2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Makefile.msys2 -------------------------------------------------------------------------------- /Makefile_cfgs/Platforms/Linux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Makefile_cfgs/Platforms/Linux.cfg -------------------------------------------------------------------------------- /Makefile_cfgs/Platforms/Switch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Makefile_cfgs/Platforms/Switch.cfg -------------------------------------------------------------------------------- /Makefile_cfgs/Platforms/Unknown.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Makefile_cfgs/Platforms/WiiU.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Makefile_cfgs/Platforms/WiiU.cfg -------------------------------------------------------------------------------- /Makefile_cfgs/Platforms/Windows.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Makefile_cfgs/Platforms/Windows.cfg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/README.md -------------------------------------------------------------------------------- /RSDKv4 ios.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4 ios.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RSDKv4 ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4 ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RSDKv4 ios.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4 ios.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /RSDKv4 ios.xcodeproj/project.xcworkspace/xcuserdata/rubberduckycooly.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4 ios.xcodeproj/project.xcworkspace/xcuserdata/rubberduckycooly.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /RSDKv4 ios.xcodeproj/xcshareddata/xcschemes/RSDKv4.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4 ios.xcodeproj/xcshareddata/xcschemes/RSDKv4.xcscheme -------------------------------------------------------------------------------- /RSDKv4.SDL1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4.SDL1.sln -------------------------------------------------------------------------------- /RSDKv4.UWP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4.UWP.sln -------------------------------------------------------------------------------- /RSDKv4.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4.sln -------------------------------------------------------------------------------- /RSDKv4.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RSDKv4.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RSDKv4.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /RSDKv4.xcodeproj/project.xcworkspace/xcuserdata/rubberduckycooly.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4.xcodeproj/project.xcworkspace/xcuserdata/rubberduckycooly.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /RSDKv4.xcodeproj/xcshareddata/xcschemes/RSDKv4.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4.xcodeproj/xcshareddata/xcschemes/RSDKv4.xcscheme -------------------------------------------------------------------------------- /RSDKv4/Animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Animation.cpp -------------------------------------------------------------------------------- /RSDKv4/Animation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Animation.hpp -------------------------------------------------------------------------------- /RSDKv4/Audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Audio.cpp -------------------------------------------------------------------------------- /RSDKv4/Audio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Audio.hpp -------------------------------------------------------------------------------- /RSDKv4/Collision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Collision.cpp -------------------------------------------------------------------------------- /RSDKv4/Collision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Collision.hpp -------------------------------------------------------------------------------- /RSDKv4/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Debug.cpp -------------------------------------------------------------------------------- /RSDKv4/Debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Debug.hpp -------------------------------------------------------------------------------- /RSDKv4/Drawing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Drawing.cpp -------------------------------------------------------------------------------- /RSDKv4/Drawing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Drawing.hpp -------------------------------------------------------------------------------- /RSDKv4/Ini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Ini.cpp -------------------------------------------------------------------------------- /RSDKv4/Ini.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Ini.hpp -------------------------------------------------------------------------------- /RSDKv4/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Input.cpp -------------------------------------------------------------------------------- /RSDKv4/Input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Input.hpp -------------------------------------------------------------------------------- /RSDKv4/Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Math.cpp -------------------------------------------------------------------------------- /RSDKv4/Math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Math.hpp -------------------------------------------------------------------------------- /RSDKv4/ModAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/ModAPI.cpp -------------------------------------------------------------------------------- /RSDKv4/ModAPI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/ModAPI.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/AboutScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/AboutScreen.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/AboutScreen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/AboutScreen.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/AchievementDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/AchievementDisplay.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/AchievementDisplay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/AchievementDisplay.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/AchievementsButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/AchievementsButton.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/AchievementsButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/AchievementsButton.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/AchievementsMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/AchievementsMenu.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/AchievementsMenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/AchievementsMenu.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/All.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/All.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/BackButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/BackButton.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/BackButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/BackButton.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/CWSplash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/CWSplash.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/CWSplash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/CWSplash.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/CreditText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/CreditText.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/CreditText.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/CreditText.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/DialogPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/DialogPanel.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/DialogPanel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/DialogPanel.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/FadeScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/FadeScreen.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/FadeScreen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/FadeScreen.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/InstructionsScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/InstructionsScreen.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/InstructionsScreen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/InstructionsScreen.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/LeaderboardsButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/LeaderboardsButton.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/LeaderboardsButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/LeaderboardsButton.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/MenuBG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/MenuBG.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/MenuBG.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/MenuBG.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/MenuControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/MenuControl.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/MenuControl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/MenuControl.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/ModInfoButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/ModInfoButton.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/ModInfoButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/ModInfoButton.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/ModsButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/ModsButton.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/ModsButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/ModsButton.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/ModsMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/ModsMenu.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/ModsMenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/ModsMenu.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/MultiplayerButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/MultiplayerButton.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/MultiplayerButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/MultiplayerButton.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/MultiplayerHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/MultiplayerHandler.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/MultiplayerHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/MultiplayerHandler.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/MultiplayerScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/MultiplayerScreen.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/MultiplayerScreen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/MultiplayerScreen.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/NativeObjects.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/NativeObjects.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/OptionsButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/OptionsButton.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/OptionsButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/OptionsButton.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/OptionsMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/OptionsMenu.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/OptionsMenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/OptionsMenu.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/PauseMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/PauseMenu.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/PauseMenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/PauseMenu.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/PlayerSelectScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/PlayerSelectScreen.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/PlayerSelectScreen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/PlayerSelectScreen.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/PushButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/PushButton.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/PushButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/PushButton.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/RecordsScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/RecordsScreen.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/RecordsScreen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/RecordsScreen.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/RetroGameLoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/RetroGameLoop.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/RetroGameLoop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/RetroGameLoop.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/SaveSelect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/SaveSelect.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/SaveSelect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/SaveSelect.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/SegaIDButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/SegaIDButton.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/SegaIDButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/SegaIDButton.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/SegaSplash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/SegaSplash.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/SegaSplash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/SegaSplash.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/SettingsScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/SettingsScreen.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/SettingsScreen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/SettingsScreen.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/StaffCredits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/StaffCredits.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/StaffCredits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/StaffCredits.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/StartGameButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/StartGameButton.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/StartGameButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/StartGameButton.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/SubMenuButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/SubMenuButton.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/SubMenuButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/SubMenuButton.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/TextLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/TextLabel.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/TextLabel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/TextLabel.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/TimeAttack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/TimeAttack.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/TimeAttack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/TimeAttack.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/TimeAttackButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/TimeAttackButton.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/TimeAttackButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/TimeAttackButton.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/TitleScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/TitleScreen.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/TitleScreen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/TitleScreen.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/VirtualDPad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/VirtualDPad.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/VirtualDPad.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/VirtualDPad.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/VirtualDPadM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/VirtualDPadM.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/VirtualDPadM.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/VirtualDPadM.hpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/ZoneButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/ZoneButton.cpp -------------------------------------------------------------------------------- /RSDKv4/NativeObjects/ZoneButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/NativeObjects/ZoneButton.hpp -------------------------------------------------------------------------------- /RSDKv4/Networking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Networking.cpp -------------------------------------------------------------------------------- /RSDKv4/Networking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Networking.hpp -------------------------------------------------------------------------------- /RSDKv4/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Object.cpp -------------------------------------------------------------------------------- /RSDKv4/Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Object.hpp -------------------------------------------------------------------------------- /RSDKv4/Palette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Palette.cpp -------------------------------------------------------------------------------- /RSDKv4/Palette.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Palette.hpp -------------------------------------------------------------------------------- /RSDKv4/RSDKv4 Decomp Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/RSDKv4 Decomp Icon.ico -------------------------------------------------------------------------------- /RSDKv4/RSDKv4.SDL1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/RSDKv4.SDL1.vcxproj -------------------------------------------------------------------------------- /RSDKv4/RSDKv4.SDL1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/RSDKv4.SDL1.vcxproj.filters -------------------------------------------------------------------------------- /RSDKv4/RSDKv4.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/RSDKv4.rc -------------------------------------------------------------------------------- /RSDKv4/RSDKv4.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/RSDKv4.vcxproj -------------------------------------------------------------------------------- /RSDKv4/RSDKv4.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/RSDKv4.vcxproj.filters -------------------------------------------------------------------------------- /RSDKv4/Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Reader.cpp -------------------------------------------------------------------------------- /RSDKv4/Reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Reader.hpp -------------------------------------------------------------------------------- /RSDKv4/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Renderer.cpp -------------------------------------------------------------------------------- /RSDKv4/Renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Renderer.hpp -------------------------------------------------------------------------------- /RSDKv4/RetroEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/RetroEngine.cpp -------------------------------------------------------------------------------- /RSDKv4/RetroEngine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/RetroEngine.hpp -------------------------------------------------------------------------------- /RSDKv4/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Scene.cpp -------------------------------------------------------------------------------- /RSDKv4/Scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Scene.hpp -------------------------------------------------------------------------------- /RSDKv4/Scene3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Scene3D.cpp -------------------------------------------------------------------------------- /RSDKv4/Scene3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Scene3D.hpp -------------------------------------------------------------------------------- /RSDKv4/Script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Script.cpp -------------------------------------------------------------------------------- /RSDKv4/Script.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Script.hpp -------------------------------------------------------------------------------- /RSDKv4/Sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Sprite.cpp -------------------------------------------------------------------------------- /RSDKv4/Sprite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Sprite.hpp -------------------------------------------------------------------------------- /RSDKv4/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/String.cpp -------------------------------------------------------------------------------- /RSDKv4/String.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/String.hpp -------------------------------------------------------------------------------- /RSDKv4/Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Text.cpp -------------------------------------------------------------------------------- /RSDKv4/Text.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Text.hpp -------------------------------------------------------------------------------- /RSDKv4/Userdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Userdata.cpp -------------------------------------------------------------------------------- /RSDKv4/Userdata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/Userdata.hpp -------------------------------------------------------------------------------- /RSDKv4/fcaseopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/fcaseopen.c -------------------------------------------------------------------------------- /RSDKv4/fcaseopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/fcaseopen.h -------------------------------------------------------------------------------- /RSDKv4/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/main.cpp -------------------------------------------------------------------------------- /RSDKv4/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/RSDKv4/resource.h -------------------------------------------------------------------------------- /Server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Server/Makefile -------------------------------------------------------------------------------- /Server/Makefile.msys2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Server/Makefile.msys2 -------------------------------------------------------------------------------- /Server/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Server/Server.cpp -------------------------------------------------------------------------------- /Server/Server.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Server/Server.vcxproj -------------------------------------------------------------------------------- /Server/Server.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Server/Server.vcxproj.filters -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/LargeTile.scale-125.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/LargeTile.scale-150.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/SmallTile.scale-125.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/SmallTile.scale-150.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-24.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/WideTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/WideTile.scale-100.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/WideTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/WideTile.scale-125.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/WideTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/WideTile.scale-150.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/WideTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/WideTile.scale-200.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Assets/WideTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Assets/WideTile.scale-400.png -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Package.appxmanifest -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/PropertySheet.props -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Sonic1Decomp.UWP.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Sonic1Decomp.UWP.vcxproj -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/Sonic1Decomp.UWP.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/Sonic1Decomp.UWP.vcxproj.filters -------------------------------------------------------------------------------- /Sonic1Decomp.UWP/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic1Decomp.UWP/packages.config -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/LargeTile.scale-125.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/LargeTile.scale-150.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/SmallTile.scale-125.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/SmallTile.scale-150.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/WideTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/WideTile.scale-100.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/WideTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/WideTile.scale-125.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/WideTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/WideTile.scale-150.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/WideTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/WideTile.scale-200.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Assets/WideTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Assets/WideTile.scale-400.png -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Package.appxmanifest -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/PropertySheet.props -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Sonic12Decomp.UWP.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Sonic12Decomp.UWP.vcxproj.filters -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Sonic2Decomp.UWP.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Sonic2Decomp.UWP.vcxproj -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/Sonic2Decomp.UWP.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/Sonic2Decomp.UWP.vcxproj.filters -------------------------------------------------------------------------------- /Sonic2Decomp.UWP/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/Sonic2Decomp.UWP/packages.config -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-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-1-2-2013-Decompilation/HEAD/android/app/jni/Application.mk -------------------------------------------------------------------------------- /android/app/jni/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-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-1-2-2013-Decompilation/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/decomp/rsdkv4/RSDKv4.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/android/app/src/main/java/com/decomp/rsdkv4/RSDKv4.java -------------------------------------------------------------------------------- /android/app/src/main/java/org/libsdl/app/HIDDevice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-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-1-2-2013-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-1-2-2013-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-1-2-2013-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-1-2-2013-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-1-2-2013-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-1-2-2013-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-1-2-2013-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-1-2-2013-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-1-2-2013-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-1-2-2013-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-1-2-2013-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-1-2-2013-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-1-2-2013-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-1-2-2013-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-1-2-2013-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-1-2-2013-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-1-2-2013-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-1-2-2013-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-1-2-2013-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-1-2-2013-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-1-2-2013-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-1-2-2013-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-1-2-2013-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-1-2-2013-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-1-2-2013-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-1-2-2013-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-1-2-2013-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-1-2-2013-Decompilation/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /dependencies/all/dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/all/dependencies.txt -------------------------------------------------------------------------------- /dependencies/android/config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/android/config_types.h -------------------------------------------------------------------------------- /dependencies/android/dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/android/dependencies.txt -------------------------------------------------------------------------------- /dependencies/ios/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/ios/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /dependencies/ios/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/ios/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /dependencies/ios/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/ios/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /dependencies/ios/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/ios/Default.png -------------------------------------------------------------------------------- /dependencies/ios/dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/ios/dependencies.txt -------------------------------------------------------------------------------- /dependencies/mac/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/mac/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv4 Decomp Icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv4 Decomp Icon-1024.png -------------------------------------------------------------------------------- /dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv4 Decomp Icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv4 Decomp Icon-128.png -------------------------------------------------------------------------------- /dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv4 Decomp Icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv4 Decomp Icon-16.png -------------------------------------------------------------------------------- /dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv4 Decomp Icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv4 Decomp Icon-256.png -------------------------------------------------------------------------------- /dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv4 Decomp Icon-257.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv4 Decomp Icon-257.png -------------------------------------------------------------------------------- /dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv4 Decomp Icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv4 Decomp Icon-32.png -------------------------------------------------------------------------------- /dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv4 Decomp Icon-33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv4 Decomp Icon-33.png -------------------------------------------------------------------------------- /dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv4 Decomp Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv4 Decomp Icon-512.png -------------------------------------------------------------------------------- /dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv4 Decomp Icon-513.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv4 Decomp Icon-513.png -------------------------------------------------------------------------------- /dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv4 Decomp Icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/mac/Assets.xcassets/AppIcon.appiconset/RSDKv4 Decomp Icon-64.png -------------------------------------------------------------------------------- /dependencies/mac/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/mac/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /dependencies/mac/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/mac/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /dependencies/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/mac/Info.plist -------------------------------------------------------------------------------- /dependencies/mac/RSDKv4.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/mac/RSDKv4.entitlements -------------------------------------------------------------------------------- /dependencies/mac/cocoaHelpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/mac/cocoaHelpers.hpp -------------------------------------------------------------------------------- /dependencies/mac/cocoaHelpers.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/mac/cocoaHelpers.mm -------------------------------------------------------------------------------- /dependencies/mac/dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/mac/dependencies.txt -------------------------------------------------------------------------------- /dependencies/mac/icons/RSDKv4 Decomp Icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/mac/icons/RSDKv4 Decomp Icon-1024.png -------------------------------------------------------------------------------- /dependencies/mac/icons/RSDKv4 Decomp Icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/mac/icons/RSDKv4 Decomp Icon-128.png -------------------------------------------------------------------------------- /dependencies/mac/icons/RSDKv4 Decomp Icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/mac/icons/RSDKv4 Decomp Icon-16.png -------------------------------------------------------------------------------- /dependencies/mac/icons/RSDKv4 Decomp Icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/mac/icons/RSDKv4 Decomp Icon-256.png -------------------------------------------------------------------------------- /dependencies/mac/icons/RSDKv4 Decomp Icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/mac/icons/RSDKv4 Decomp Icon-32.png -------------------------------------------------------------------------------- /dependencies/mac/icons/RSDKv4 Decomp Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/mac/icons/RSDKv4 Decomp Icon-512.png -------------------------------------------------------------------------------- /dependencies/mac/icons/RSDKv4 Decomp Icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/mac/icons/RSDKv4 Decomp Icon-64.png -------------------------------------------------------------------------------- /dependencies/windows-uwp/WinRTIncludes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/windows-uwp/WinRTIncludes.hpp -------------------------------------------------------------------------------- /dependencies/windows-uwp/dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/windows-uwp/dependencies.txt -------------------------------------------------------------------------------- /dependencies/windows/dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/dependencies/windows/dependencies.txt -------------------------------------------------------------------------------- /flatpak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/flatpak/README.md -------------------------------------------------------------------------------- /flatpak/com.sega.Sonic1.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/flatpak/com.sega.Sonic1.appdata.xml -------------------------------------------------------------------------------- /flatpak/com.sega.Sonic1.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/flatpak/com.sega.Sonic1.desktop -------------------------------------------------------------------------------- /flatpak/com.sega.Sonic1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/flatpak/com.sega.Sonic1.json -------------------------------------------------------------------------------- /flatpak/com.sega.Sonic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/flatpak/com.sega.Sonic1.png -------------------------------------------------------------------------------- /flatpak/com.sega.Sonic2.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/flatpak/com.sega.Sonic2.appdata.xml -------------------------------------------------------------------------------- /flatpak/com.sega.Sonic2.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/flatpak/com.sega.Sonic2.desktop -------------------------------------------------------------------------------- /flatpak/com.sega.Sonic2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/flatpak/com.sega.Sonic2.json -------------------------------------------------------------------------------- /flatpak/com.sega.Sonic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/flatpak/com.sega.Sonic2.png -------------------------------------------------------------------------------- /header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/header.png -------------------------------------------------------------------------------- /icon_s1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/icon_s1.jpg -------------------------------------------------------------------------------- /icon_s2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/icon_s2.jpg -------------------------------------------------------------------------------- /props/winactions.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/props/winactions.props -------------------------------------------------------------------------------- /props/winactions_x64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyjoeway/Sonic-1-2-2013-Decompilation/HEAD/props/winactions_x64.props --------------------------------------------------------------------------------