├── .gitattributes ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── DoConfig ├── 1.ico ├── CMakeLists.txt ├── DoConfig.cpp ├── icon.rc └── imgui │ ├── LICENSE.txt │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_impl_glfw.cpp │ ├── imgui_impl_glfw.h │ ├── imgui_impl_opengl2.cpp │ ├── imgui_impl_opengl2.h │ ├── imgui_impl_opengl3.cpp │ ├── imgui_impl_opengl3.h │ ├── imgui_internal.h │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── LICENCE.txt ├── PHILOSOPHY.md ├── README.md ├── assets ├── resources │ ├── BITMAP │ │ ├── Credit01.bmp │ │ ├── Credit02.bmp │ │ ├── Credit03.bmp │ │ ├── Credit04.bmp │ │ ├── Credit05.bmp │ │ ├── Credit06.bmp │ │ ├── Credit07.bmp │ │ ├── Credit08.bmp │ │ ├── Credit09.bmp │ │ ├── Credit10.bmp │ │ ├── Credit11.bmp │ │ ├── Credit12.bmp │ │ ├── Credit14.bmp │ │ ├── Credit15.bmp │ │ ├── Credit16.bmp │ │ ├── Credit17.bmp │ │ ├── Credit18.bmp │ │ ├── pixel.bmp │ │ └── pixel_jp.bmp │ ├── CSE2.manifest │ ├── CSE2.rc │ ├── CURSOR │ │ ├── CURSOR_IKA.png │ │ └── CURSOR_NORMAL.png │ ├── ICON │ │ ├── GLFW_ICON.ico │ │ └── ICON_MINI.png │ ├── ORG │ │ ├── Access.org │ │ ├── Anzen.org │ │ ├── Balcony.org │ │ ├── Ballos.org │ │ ├── BreakDown.org │ │ ├── Cemetery.org │ │ ├── Curly.org │ │ ├── Dr.org │ │ ├── Ending.org │ │ ├── Escape.org │ │ ├── Fanfale1.org │ │ ├── Fanfale2.org │ │ ├── Fanfale3.org │ │ ├── FireEye.org │ │ ├── Gameover.org │ │ ├── Ginsuke.org │ │ ├── Grand.org │ │ ├── Gravity.org │ │ ├── Hell.org │ │ ├── Jenka.org │ │ ├── Jenka2.org │ │ ├── Kodou.org │ │ ├── LastBtl.org │ │ ├── LastBtl3.org │ │ ├── LastCave.org │ │ ├── MDown2.org │ │ ├── Marine.org │ │ ├── Maze.org │ │ ├── Mura.org │ │ ├── Oside.org │ │ ├── Plant.org │ │ ├── Requiem.org │ │ ├── Toroko.org │ │ ├── Vivi.org │ │ ├── Wanpak2.org │ │ ├── Wanpaku.org │ │ ├── Weed.org │ │ ├── White.org │ │ ├── XXXX.org │ │ ├── Zonbie.org │ │ ├── ironH.org │ │ └── quiet.org │ ├── WAVE │ │ └── Wave.dat │ ├── afxres.h │ └── resource1.h └── riscos │ ├── !Boot,feb │ ├── !Run,feb │ └── !Sprites,ff9 ├── bin2h ├── CMakeLists.txt └── bin2h.c ├── cmake ├── FindOpenGLES2.cmake └── RISCOSApp.cmake ├── external ├── SDL2 │ ├── Android.mk │ ├── BUGS.txt │ ├── CMakeLists.txt │ ├── COPYING.txt │ ├── CREDITS.txt │ ├── INSTALL.txt │ ├── Makefile.in │ ├── Makefile.minimal │ ├── Makefile.os2 │ ├── Makefile.pandora │ ├── Makefile.psp │ ├── Makefile.wiz │ ├── README-SDL.txt │ ├── README.txt │ ├── SDL2.spec │ ├── SDL2.spec.in │ ├── SDL2Config.cmake │ ├── TODO.txt │ ├── VisualC-WinRT │ │ ├── SDL2-WinRT.nuspec │ │ ├── SDL2-WinRT.targets │ │ ├── SDL2main-WinRT-NonXAML.nuspec │ │ ├── SDL2main-WinRT-NonXAML.targets │ │ ├── UWP_VS2015 │ │ │ ├── SDL-UWP.sln │ │ │ ├── SDL-UWP.vcxproj │ │ │ └── SDL-UWP.vcxproj.filters │ │ ├── WinPhone81_VS2013 │ │ │ ├── SDL-WinPhone81.sln │ │ │ ├── SDL-WinPhone81.vcxproj │ │ │ └── SDL-WinPhone81.vcxproj.filters │ │ ├── WinRT81_VS2013 │ │ │ ├── SDL-WinRT81.sln │ │ │ ├── SDL-WinRT81.vcxproj │ │ │ └── SDL-WinRT81.vcxproj.filters │ │ └── tests │ │ │ ├── loopwave │ │ │ ├── Assets │ │ │ │ ├── Logo.png │ │ │ │ ├── SmallLogo.png │ │ │ │ ├── SplashScreen.png │ │ │ │ └── StoreLogo.png │ │ │ ├── Package.appxmanifest │ │ │ ├── loopwave_VS2012.vcxproj │ │ │ └── loopwave_VS2012_TemporaryKey.pfx │ │ │ └── testthread │ │ │ ├── Assets │ │ │ ├── Logo.png │ │ │ ├── SmallLogo.png │ │ │ ├── SplashScreen.png │ │ │ └── StoreLogo.png │ │ │ ├── Package.appxmanifest │ │ │ ├── testthread_VS2012.vcxproj │ │ │ └── testthread_VS2012_TemporaryKey.pfx │ ├── VisualC.html │ ├── VisualC │ │ ├── SDL.sln │ │ ├── SDL │ │ │ ├── SDL.vcxproj │ │ │ └── SDL.vcxproj.filters │ │ ├── SDLmain │ │ │ └── SDLmain.vcxproj │ │ ├── SDLtest │ │ │ └── SDLtest.vcxproj │ │ ├── clean.sh │ │ ├── tests │ │ │ ├── checkkeys │ │ │ │ └── checkkeys.vcxproj │ │ │ ├── controllermap │ │ │ │ └── controllermap.vcxproj │ │ │ ├── loopwave │ │ │ │ └── loopwave.vcxproj │ │ │ ├── testatomic │ │ │ │ └── testatomic.vcxproj │ │ │ ├── testautomation │ │ │ │ └── testautomation.vcxproj │ │ │ ├── testdraw2 │ │ │ │ └── testdraw2.vcxproj │ │ │ ├── testfile │ │ │ │ └── testfile.vcxproj │ │ │ ├── testgamecontroller │ │ │ │ └── testgamecontroller.vcxproj │ │ │ ├── testgesture │ │ │ │ └── testgesture.vcxproj │ │ │ ├── testgl2 │ │ │ │ └── testgl2.vcxproj │ │ │ ├── testgles2 │ │ │ │ └── testgles2.vcxproj │ │ │ ├── testjoystick │ │ │ │ └── testjoystick.vcxproj │ │ │ ├── testoverlay2 │ │ │ │ └── testoverlay2.vcxproj │ │ │ ├── testplatform │ │ │ │ └── testplatform.vcxproj │ │ │ ├── testpower │ │ │ │ └── testpower.vcxproj │ │ │ ├── testrendertarget │ │ │ │ └── testrendertarget.vcxproj │ │ │ ├── testrumble │ │ │ │ └── testrumble.vcxproj │ │ │ ├── testscale │ │ │ │ └── testscale.vcxproj │ │ │ ├── testshape │ │ │ │ └── testshape.vcxproj │ │ │ ├── testsprite2 │ │ │ │ └── testsprite2.vcxproj │ │ │ ├── testvulkan │ │ │ │ └── testvulkan.vcxproj │ │ │ └── testyuv │ │ │ │ └── testyuv.vcxproj │ │ └── visualtest │ │ │ ├── unittest │ │ │ └── testquit │ │ │ │ └── testquit_VS2012.vcxproj │ │ │ └── visualtest_VS2012.vcxproj │ ├── WhatsNew.txt │ ├── Xcode-iOS │ │ ├── Demos │ │ │ ├── Default.png │ │ │ ├── Demos.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── Icon.png │ │ │ ├── Info.plist │ │ │ ├── README │ │ │ ├── data │ │ │ │ ├── bitmapfont │ │ │ │ │ ├── kromasky_16x16.bmp │ │ │ │ │ └── license.txt │ │ │ │ ├── drums │ │ │ │ │ ├── ds_brush_snare.wav │ │ │ │ │ ├── ds_china.wav │ │ │ │ │ ├── ds_kick_big_amb.wav │ │ │ │ │ └── ds_loose_skin_mute.wav │ │ │ │ ├── icon.bmp │ │ │ │ ├── ship.bmp │ │ │ │ ├── space.bmp │ │ │ │ └── stroke.bmp │ │ │ ├── iOS Launch Screen.storyboard │ │ │ └── src │ │ │ │ ├── accelerometer.c │ │ │ │ ├── common.c │ │ │ │ ├── common.h │ │ │ │ ├── fireworks.c │ │ │ │ ├── happy.c │ │ │ │ ├── keyboard.c │ │ │ │ ├── mixer.c │ │ │ │ ├── rectangles.c │ │ │ │ └── touch.c │ │ ├── SDL │ │ │ └── SDL.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── All-iOS.xcscheme │ │ │ │ ├── All-tvOS.xcscheme │ │ │ │ ├── PrepareXcodeProjectTemplate.xcscheme │ │ │ │ ├── libSDL-iOS-dylib.xcscheme │ │ │ │ ├── libSDL-iOS.xcscheme │ │ │ │ ├── libSDL-tvOS-dylib.xcscheme │ │ │ │ ├── libSDL-tvOS.xcscheme │ │ │ │ ├── libSDLmain-iOS.xcscheme │ │ │ │ └── libSDLmain-tvOS.xcscheme │ │ ├── SDLtest │ │ │ └── SDL2test.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── Template │ │ │ └── SDL iOS Application │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default.png │ │ │ │ ├── Icon.png │ │ │ │ ├── Info.plist │ │ │ │ ├── ___PROJECTNAME___.xcodeproj │ │ │ │ ├── TemplateIcon.icns │ │ │ │ ├── TemplateInfo.plist │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── main.c │ │ └── Test │ │ │ ├── Info.plist │ │ │ ├── README │ │ │ └── TestiPhoneOS.xcodeproj │ │ │ └── project.pbxproj │ ├── Xcode │ │ ├── SDL │ │ │ ├── Info-Framework.plist │ │ │ ├── SDL.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── hidapi │ │ │ │ └── Info.plist │ │ │ └── pkg-support │ │ │ │ ├── SDL.info │ │ │ │ ├── resources │ │ │ │ ├── License.txt │ │ │ │ ├── ReadMe.txt │ │ │ │ └── SDL_DS_Store │ │ │ │ └── sdl_logo.pdf │ │ ├── SDLTest │ │ │ ├── SDLTest.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── TestDropFile-Info.plist │ │ └── XcodeDocSet │ │ │ └── Doxyfile │ ├── acinclude │ │ ├── ac_check_define.m4 │ │ ├── alsa.m4 │ │ ├── ax_check_compiler_flags.m4 │ │ ├── ax_gcc_archflag.m4 │ │ ├── ax_gcc_x86_cpuid.m4 │ │ ├── esd.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ └── pkg_config.m4 │ ├── android-project │ │ ├── app │ │ │ ├── build.gradle │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ ├── Application.mk │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── src │ │ │ │ │ ├── Android.mk │ │ │ │ │ └── CMakeLists.txt │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── libsdl │ │ │ │ │ └── app │ │ │ │ │ ├── HIDDevice.java │ │ │ │ │ ├── HIDDeviceBLESteamController.java │ │ │ │ │ ├── HIDDeviceManager.java │ │ │ │ │ ├── HIDDeviceUSB.java │ │ │ │ │ ├── SDL.java │ │ │ │ │ ├── SDLActivity.java │ │ │ │ │ ├── SDLAudioManager.java │ │ │ │ │ └── SDLControllerManager.java │ │ │ │ └── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── autogen.sh │ ├── build-scripts │ │ ├── androidbuild.sh │ │ ├── androidbuildlibs.sh │ │ ├── checker-buildbot.sh │ │ ├── config.guess │ │ ├── config.sub │ │ ├── config.sub.patch │ │ ├── emscripten-buildbot.sh │ │ ├── g++-fat.sh │ │ ├── gcc-fat.sh │ │ ├── install-sh │ │ ├── iosbuild.sh │ │ ├── ltmain.sh │ │ ├── mkinstalldirs │ │ ├── nacl-buildbot.sh │ │ ├── naclbuild.sh │ │ ├── os2-buildbot.sh │ │ ├── raspberrypi-buildbot.sh │ │ ├── showrev.sh │ │ ├── strip_fPIC.sh │ │ ├── update-copyright.sh │ │ ├── updaterev.sh │ │ ├── windows-buildbot-zipper.bat │ │ ├── winrtbuild.bat │ │ └── winrtbuild.ps1 │ ├── cmake │ │ ├── macros.cmake │ │ └── sdlchecks.cmake │ ├── cmake_uninstall.cmake.in │ ├── configure │ ├── configure.ac │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── libsdl2-dev.install │ │ ├── libsdl2-dev.manpages │ │ ├── libsdl2.install │ │ ├── rules │ │ ├── sdl2-config.1 │ │ ├── source │ │ │ └── format │ │ └── watch │ ├── docs │ │ ├── README-android.md │ │ ├── README-cmake.md │ │ ├── README-directfb.md │ │ ├── README-dynapi.md │ │ ├── README-emscripten.md │ │ ├── README-gesture.md │ │ ├── README-hg.md │ │ ├── README-ios.md │ │ ├── README-linux.md │ │ ├── README-macosx.md │ │ ├── README-nacl.md │ │ ├── README-pandora.md │ │ ├── README-platforms.md │ │ ├── README-porting.md │ │ ├── README-psp.md │ │ ├── README-raspberrypi.md │ │ ├── README-touch.md │ │ ├── README-wince.md │ │ ├── README-windows.md │ │ ├── README-winrt.md │ │ ├── README.md │ │ └── doxyfile │ ├── include │ │ ├── SDL.h │ │ ├── SDL_assert.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_bits.h │ │ ├── SDL_blendmode.h │ │ ├── SDL_clipboard.h │ │ ├── SDL_config.h │ │ ├── SDL_config.h.cmake │ │ ├── SDL_config.h.in │ │ ├── SDL_config_android.h │ │ ├── SDL_config_iphoneos.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_config_minimal.h │ │ ├── SDL_config_os2.h │ │ ├── SDL_config_pandora.h │ │ ├── SDL_config_psp.h │ │ ├── SDL_config_windows.h │ │ ├── SDL_config_winrt.h │ │ ├── SDL_config_wiz.h │ │ ├── SDL_copying.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_egl.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_filesystem.h │ │ ├── SDL_gamecontroller.h │ │ ├── SDL_gesture.h │ │ ├── SDL_haptic.h │ │ ├── SDL_hints.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keycode.h │ │ ├── SDL_loadso.h │ │ ├── SDL_log.h │ │ ├── SDL_main.h │ │ ├── SDL_messagebox.h │ │ ├── SDL_metal.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_opengl_glext.h │ │ ├── SDL_opengles.h │ │ ├── SDL_opengles2.h │ │ ├── SDL_opengles2_gl2.h │ │ ├── SDL_opengles2_gl2ext.h │ │ ├── SDL_opengles2_gl2platform.h │ │ ├── SDL_opengles2_khrplatform.h │ │ ├── SDL_pixels.h │ │ ├── SDL_platform.h │ │ ├── SDL_power.h │ │ ├── SDL_quit.h │ │ ├── SDL_rect.h │ │ ├── SDL_render.h │ │ ├── SDL_revision.h │ │ ├── SDL_rwops.h │ │ ├── SDL_scancode.h │ │ ├── SDL_sensor.h │ │ ├── SDL_shape.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_surface.h │ │ ├── SDL_system.h │ │ ├── SDL_syswm.h │ │ ├── SDL_test.h │ │ ├── SDL_test_assert.h │ │ ├── SDL_test_common.h │ │ ├── SDL_test_compare.h │ │ ├── SDL_test_crc32.h │ │ ├── SDL_test_font.h │ │ ├── SDL_test_fuzzer.h │ │ ├── SDL_test_harness.h │ │ ├── SDL_test_images.h │ │ ├── SDL_test_log.h │ │ ├── SDL_test_md5.h │ │ ├── SDL_test_memory.h │ │ ├── SDL_test_random.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_touch.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── SDL_vulkan.h │ │ ├── begin_code.h │ │ └── close_code.h │ ├── sdl2-config-version.cmake.in │ ├── sdl2-config.cmake.in │ ├── sdl2-config.in │ ├── sdl2.m4 │ ├── sdl2.pc.in │ ├── src │ │ ├── SDL.c │ │ ├── SDL_assert.c │ │ ├── SDL_assert_c.h │ │ ├── SDL_dataqueue.c │ │ ├── SDL_dataqueue.h │ │ ├── SDL_error.c │ │ ├── SDL_error_c.h │ │ ├── SDL_hints.c │ │ ├── SDL_hints_c.h │ │ ├── SDL_internal.h │ │ ├── SDL_log.c │ │ ├── atomic │ │ │ ├── SDL_atomic.c │ │ │ └── SDL_spinlock.c │ │ ├── audio │ │ │ ├── SDL_audio.c │ │ │ ├── SDL_audio_c.h │ │ │ ├── SDL_audiocvt.c │ │ │ ├── SDL_audiodev.c │ │ │ ├── SDL_audiodev_c.h │ │ │ ├── SDL_audiotypecvt.c │ │ │ ├── SDL_mixer.c │ │ │ ├── SDL_sysaudio.h │ │ │ ├── SDL_wave.c │ │ │ ├── SDL_wave.h │ │ │ ├── alsa │ │ │ │ ├── SDL_alsa_audio.c │ │ │ │ └── SDL_alsa_audio.h │ │ │ ├── android │ │ │ │ ├── SDL_androidaudio.c │ │ │ │ └── SDL_androidaudio.h │ │ │ ├── arts │ │ │ │ ├── SDL_artsaudio.c │ │ │ │ └── SDL_artsaudio.h │ │ │ ├── coreaudio │ │ │ │ ├── SDL_coreaudio.h │ │ │ │ └── SDL_coreaudio.m │ │ │ ├── directsound │ │ │ │ ├── SDL_directsound.c │ │ │ │ └── SDL_directsound.h │ │ │ ├── disk │ │ │ │ ├── SDL_diskaudio.c │ │ │ │ └── SDL_diskaudio.h │ │ │ ├── dsp │ │ │ │ ├── SDL_dspaudio.c │ │ │ │ └── SDL_dspaudio.h │ │ │ ├── dummy │ │ │ │ ├── SDL_dummyaudio.c │ │ │ │ └── SDL_dummyaudio.h │ │ │ ├── emscripten │ │ │ │ ├── SDL_emscriptenaudio.c │ │ │ │ └── SDL_emscriptenaudio.h │ │ │ ├── esd │ │ │ │ ├── SDL_esdaudio.c │ │ │ │ └── SDL_esdaudio.h │ │ │ ├── fusionsound │ │ │ │ ├── SDL_fsaudio.c │ │ │ │ └── SDL_fsaudio.h │ │ │ ├── haiku │ │ │ │ ├── SDL_haikuaudio.cc │ │ │ │ └── SDL_haikuaudio.h │ │ │ ├── jack │ │ │ │ ├── SDL_jackaudio.c │ │ │ │ └── SDL_jackaudio.h │ │ │ ├── nacl │ │ │ │ ├── SDL_naclaudio.c │ │ │ │ └── SDL_naclaudio.h │ │ │ ├── nas │ │ │ │ ├── SDL_nasaudio.c │ │ │ │ └── SDL_nasaudio.h │ │ │ ├── netbsd │ │ │ │ ├── SDL_netbsdaudio.c │ │ │ │ └── SDL_netbsdaudio.h │ │ │ ├── openslES │ │ │ │ ├── SDL_openslES.c │ │ │ │ └── SDL_openslES.h │ │ │ ├── paudio │ │ │ │ ├── SDL_paudio.c │ │ │ │ └── SDL_paudio.h │ │ │ ├── psp │ │ │ │ ├── SDL_pspaudio.c │ │ │ │ └── SDL_pspaudio.h │ │ │ ├── pulseaudio │ │ │ │ ├── SDL_pulseaudio.c │ │ │ │ └── SDL_pulseaudio.h │ │ │ ├── qsa │ │ │ │ ├── SDL_qsa_audio.c │ │ │ │ └── SDL_qsa_audio.h │ │ │ ├── sndio │ │ │ │ ├── SDL_sndioaudio.c │ │ │ │ └── SDL_sndioaudio.h │ │ │ ├── sun │ │ │ │ ├── SDL_sunaudio.c │ │ │ │ └── SDL_sunaudio.h │ │ │ ├── wasapi │ │ │ │ ├── SDL_wasapi.c │ │ │ │ ├── SDL_wasapi.h │ │ │ │ ├── SDL_wasapi_win32.c │ │ │ │ └── SDL_wasapi_winrt.cpp │ │ │ └── winmm │ │ │ │ ├── SDL_winmm.c │ │ │ │ └── SDL_winmm.h │ │ ├── core │ │ │ ├── android │ │ │ │ ├── SDL_android.c │ │ │ │ ├── SDL_android.h │ │ │ │ └── keyinfotable.h │ │ │ ├── linux │ │ │ │ ├── SDL_dbus.c │ │ │ │ ├── SDL_dbus.h │ │ │ │ ├── SDL_evdev.c │ │ │ │ ├── SDL_evdev.h │ │ │ │ ├── SDL_evdev_kbd.c │ │ │ │ ├── SDL_evdev_kbd.h │ │ │ │ ├── SDL_evdev_kbd_default_accents.h │ │ │ │ ├── SDL_evdev_kbd_default_keymap.h │ │ │ │ ├── SDL_fcitx.c │ │ │ │ ├── SDL_fcitx.h │ │ │ │ ├── SDL_ibus.c │ │ │ │ ├── SDL_ibus.h │ │ │ │ ├── SDL_ime.c │ │ │ │ ├── SDL_ime.h │ │ │ │ ├── SDL_threadprio.c │ │ │ │ ├── SDL_udev.c │ │ │ │ └── SDL_udev.h │ │ │ ├── unix │ │ │ │ ├── SDL_poll.c │ │ │ │ └── SDL_poll.h │ │ │ ├── windows │ │ │ │ ├── SDL_directx.h │ │ │ │ ├── SDL_windows.c │ │ │ │ ├── SDL_windows.h │ │ │ │ ├── SDL_xinput.c │ │ │ │ └── SDL_xinput.h │ │ │ └── winrt │ │ │ │ ├── SDL_winrtapp_common.cpp │ │ │ │ ├── SDL_winrtapp_common.h │ │ │ │ ├── SDL_winrtapp_direct3d.cpp │ │ │ │ ├── SDL_winrtapp_direct3d.h │ │ │ │ ├── SDL_winrtapp_xaml.cpp │ │ │ │ └── SDL_winrtapp_xaml.h │ │ ├── cpuinfo │ │ │ └── SDL_cpuinfo.c │ │ ├── dynapi │ │ │ ├── SDL_dynapi.c │ │ │ ├── SDL_dynapi.h │ │ │ ├── SDL_dynapi_overrides.h │ │ │ ├── SDL_dynapi_procs.h │ │ │ └── gendynapi.pl │ │ ├── events │ │ │ ├── SDL_clipboardevents.c │ │ │ ├── SDL_clipboardevents_c.h │ │ │ ├── SDL_displayevents.c │ │ │ ├── SDL_displayevents_c.h │ │ │ ├── SDL_dropevents.c │ │ │ ├── SDL_dropevents_c.h │ │ │ ├── SDL_events.c │ │ │ ├── SDL_events_c.h │ │ │ ├── SDL_gesture.c │ │ │ ├── SDL_gesture_c.h │ │ │ ├── SDL_keyboard.c │ │ │ ├── SDL_keyboard_c.h │ │ │ ├── SDL_mouse.c │ │ │ ├── SDL_mouse_c.h │ │ │ ├── SDL_quit.c │ │ │ ├── SDL_sysevents.h │ │ │ ├── SDL_touch.c │ │ │ ├── SDL_touch_c.h │ │ │ ├── SDL_windowevents.c │ │ │ ├── SDL_windowevents_c.h │ │ │ ├── blank_cursor.h │ │ │ ├── default_cursor.h │ │ │ ├── scancodes_darwin.h │ │ │ ├── scancodes_linux.h │ │ │ ├── scancodes_windows.h │ │ │ └── scancodes_xfree86.h │ │ ├── file │ │ │ ├── SDL_rwops.c │ │ │ └── cocoa │ │ │ │ ├── SDL_rwopsbundlesupport.h │ │ │ │ └── SDL_rwopsbundlesupport.m │ │ ├── filesystem │ │ │ ├── android │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── cocoa │ │ │ │ └── SDL_sysfilesystem.m │ │ │ ├── dummy │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── emscripten │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── haiku │ │ │ │ └── SDL_sysfilesystem.cc │ │ │ ├── nacl │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── unix │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── windows │ │ │ │ └── SDL_sysfilesystem.c │ │ │ └── winrt │ │ │ │ └── SDL_sysfilesystem.cpp │ │ ├── haptic │ │ │ ├── SDL_haptic.c │ │ │ ├── SDL_haptic_c.h │ │ │ ├── SDL_syshaptic.h │ │ │ ├── android │ │ │ │ ├── SDL_syshaptic.c │ │ │ │ └── SDL_syshaptic_c.h │ │ │ ├── darwin │ │ │ │ ├── SDL_syshaptic.c │ │ │ │ └── SDL_syshaptic_c.h │ │ │ ├── dummy │ │ │ │ └── SDL_syshaptic.c │ │ │ ├── linux │ │ │ │ └── SDL_syshaptic.c │ │ │ └── windows │ │ │ │ ├── SDL_dinputhaptic.c │ │ │ │ ├── SDL_dinputhaptic_c.h │ │ │ │ ├── SDL_windowshaptic.c │ │ │ │ ├── SDL_windowshaptic_c.h │ │ │ │ ├── SDL_xinputhaptic.c │ │ │ │ └── SDL_xinputhaptic_c.h │ │ ├── hidapi │ │ │ ├── AUTHORS.txt │ │ │ ├── HACKING.txt │ │ │ ├── LICENSE-bsd.txt │ │ │ ├── LICENSE-gpl3.txt │ │ │ ├── LICENSE-orig.txt │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile.am │ │ │ ├── README.txt │ │ │ ├── SDL_hidapi.c │ │ │ ├── android │ │ │ │ ├── hid.cpp │ │ │ │ ├── jni │ │ │ │ │ ├── Android.mk │ │ │ │ │ └── Application.mk │ │ │ │ └── project.properties │ │ │ ├── bootstrap │ │ │ ├── configure.ac │ │ │ ├── doxygen │ │ │ │ └── Doxyfile │ │ │ ├── hidapi │ │ │ │ └── hidapi.h │ │ │ ├── hidtest │ │ │ │ ├── Makefile.am │ │ │ │ └── hidtest.cpp │ │ │ ├── ios │ │ │ │ ├── Makefile-manual │ │ │ │ ├── Makefile.am │ │ │ │ └── hid.m │ │ │ ├── libusb │ │ │ │ ├── Makefile-manual │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.freebsd │ │ │ │ ├── Makefile.linux │ │ │ │ ├── hid.c │ │ │ │ └── hidusb.cpp │ │ │ ├── linux │ │ │ │ ├── Makefile-manual │ │ │ │ ├── Makefile.am │ │ │ │ ├── README.txt │ │ │ │ ├── hid.c │ │ │ │ ├── hid.cpp │ │ │ │ └── hidraw.cpp │ │ │ ├── m4 │ │ │ │ ├── ax_pthread.m4 │ │ │ │ └── pkg.m4 │ │ │ ├── mac │ │ │ │ ├── Makefile-manual │ │ │ │ ├── Makefile.am │ │ │ │ └── hid.c │ │ │ ├── pc │ │ │ │ ├── hidapi-hidraw.pc.in │ │ │ │ ├── hidapi-libusb.pc.in │ │ │ │ └── hidapi.pc.in │ │ │ ├── testgui │ │ │ │ ├── Makefile-manual │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.freebsd │ │ │ │ ├── Makefile.linux │ │ │ │ ├── Makefile.mac │ │ │ │ ├── Makefile.mingw │ │ │ │ ├── TestGUI.app.in │ │ │ │ │ └── Contents │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── PkgInfo │ │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ └── Signal11.icns │ │ │ │ ├── copy_to_bundle.sh │ │ │ │ ├── mac_support.cpp │ │ │ │ ├── mac_support.h │ │ │ │ ├── mac_support_cocoa.m │ │ │ │ ├── start.sh │ │ │ │ ├── test.cpp │ │ │ │ ├── testgui.sln │ │ │ │ └── testgui.vcproj │ │ │ ├── udev │ │ │ │ └── 99-hid.rules │ │ │ └── windows │ │ │ │ ├── Makefile-manual │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.mingw │ │ │ │ ├── ddk_build │ │ │ │ ├── hidapi.def │ │ │ │ ├── makefile │ │ │ │ └── sources │ │ │ │ ├── hid.c │ │ │ │ ├── hidapi.sln │ │ │ │ ├── hidapi.vcproj │ │ │ │ └── hidtest.vcproj │ │ ├── joystick │ │ │ ├── SDL_gamecontroller.c │ │ │ ├── SDL_gamecontrollerdb.h │ │ │ ├── SDL_joystick.c │ │ │ ├── SDL_joystick_c.h │ │ │ ├── SDL_sysjoystick.h │ │ │ ├── android │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── bsd │ │ │ │ └── SDL_sysjoystick.c │ │ │ ├── controller_type.h │ │ │ ├── darwin │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── dummy │ │ │ │ └── SDL_sysjoystick.c │ │ │ ├── emscripten │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── haiku │ │ │ │ └── SDL_haikujoystick.cc │ │ │ ├── hidapi │ │ │ │ ├── SDL_hidapi_gamecube.c │ │ │ │ ├── SDL_hidapi_ps4.c │ │ │ │ ├── SDL_hidapi_rumble.c │ │ │ │ ├── SDL_hidapi_rumble.h │ │ │ │ ├── SDL_hidapi_steam.c │ │ │ │ ├── SDL_hidapi_switch.c │ │ │ │ ├── SDL_hidapi_xbox360.c │ │ │ │ ├── SDL_hidapi_xbox360w.c │ │ │ │ ├── SDL_hidapi_xboxone.c │ │ │ │ ├── SDL_hidapijoystick.c │ │ │ │ ├── SDL_hidapijoystick_c.h │ │ │ │ └── steam │ │ │ │ │ ├── controller_constants.h │ │ │ │ │ └── controller_structs.h │ │ │ ├── iphoneos │ │ │ │ ├── SDL_sysjoystick.m │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── linux │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── psp │ │ │ │ └── SDL_sysjoystick.c │ │ │ ├── sort_controllers.py │ │ │ ├── steam │ │ │ │ ├── SDL_steamcontroller.c │ │ │ │ └── SDL_steamcontroller.h │ │ │ ├── usb_ids.h │ │ │ └── windows │ │ │ │ ├── SDL_dinputjoystick.c │ │ │ │ ├── SDL_dinputjoystick_c.h │ │ │ │ ├── SDL_mmjoystick.c │ │ │ │ ├── SDL_windowsjoystick.c │ │ │ │ ├── SDL_windowsjoystick_c.h │ │ │ │ ├── SDL_xinputjoystick.c │ │ │ │ └── SDL_xinputjoystick_c.h │ │ ├── libm │ │ │ ├── e_atan2.c │ │ │ ├── e_exp.c │ │ │ ├── e_fmod.c │ │ │ ├── e_log.c │ │ │ ├── e_log10.c │ │ │ ├── e_pow.c │ │ │ ├── e_rem_pio2.c │ │ │ ├── e_sqrt.c │ │ │ ├── k_cos.c │ │ │ ├── k_rem_pio2.c │ │ │ ├── k_sin.c │ │ │ ├── k_tan.c │ │ │ ├── math_libm.h │ │ │ ├── math_private.h │ │ │ ├── s_atan.c │ │ │ ├── s_copysign.c │ │ │ ├── s_cos.c │ │ │ ├── s_fabs.c │ │ │ ├── s_floor.c │ │ │ ├── s_scalbn.c │ │ │ ├── s_sin.c │ │ │ └── s_tan.c │ │ ├── loadso │ │ │ ├── dlopen │ │ │ │ └── SDL_sysloadso.c │ │ │ ├── dummy │ │ │ │ └── SDL_sysloadso.c │ │ │ └── windows │ │ │ │ └── SDL_sysloadso.c │ │ ├── main │ │ │ ├── android │ │ │ │ └── SDL_android_main.c │ │ │ ├── dummy │ │ │ │ └── SDL_dummy_main.c │ │ │ ├── haiku │ │ │ │ ├── SDL_BApp.h │ │ │ │ ├── SDL_BeApp.cc │ │ │ │ └── SDL_BeApp.h │ │ │ ├── nacl │ │ │ │ └── SDL_nacl_main.c │ │ │ ├── psp │ │ │ │ └── SDL_psp_main.c │ │ │ ├── uikit │ │ │ │ └── SDL_uikit_main.c │ │ │ ├── windows │ │ │ │ ├── SDL_windows_main.c │ │ │ │ └── version.rc │ │ │ └── winrt │ │ │ │ ├── SDL2-WinRTResource_BlankCursor.cur │ │ │ │ ├── SDL2-WinRTResources.rc │ │ │ │ └── SDL_winrt_main_NonXAML.cpp │ │ ├── power │ │ │ ├── SDL_power.c │ │ │ ├── SDL_syspower.h │ │ │ ├── android │ │ │ │ └── SDL_syspower.c │ │ │ ├── emscripten │ │ │ │ └── SDL_syspower.c │ │ │ ├── haiku │ │ │ │ └── SDL_syspower.c │ │ │ ├── linux │ │ │ │ └── SDL_syspower.c │ │ │ ├── macosx │ │ │ │ └── SDL_syspower.c │ │ │ ├── psp │ │ │ │ └── SDL_syspower.c │ │ │ ├── uikit │ │ │ │ ├── SDL_syspower.h │ │ │ │ └── SDL_syspower.m │ │ │ ├── windows │ │ │ │ └── SDL_syspower.c │ │ │ └── winrt │ │ │ │ └── SDL_syspower.cpp │ │ ├── render │ │ │ ├── SDL_d3dmath.c │ │ │ ├── SDL_d3dmath.h │ │ │ ├── SDL_render.c │ │ │ ├── SDL_sysrender.h │ │ │ ├── SDL_yuv_sw.c │ │ │ ├── SDL_yuv_sw_c.h │ │ │ ├── direct3d │ │ │ │ ├── SDL_render_d3d.c │ │ │ │ ├── SDL_shaders_d3d.c │ │ │ │ └── SDL_shaders_d3d.h │ │ │ ├── direct3d11 │ │ │ │ ├── SDL_render_d3d11.c │ │ │ │ ├── SDL_render_winrt.cpp │ │ │ │ ├── SDL_render_winrt.h │ │ │ │ ├── SDL_shaders_d3d11.c │ │ │ │ └── SDL_shaders_d3d11.h │ │ │ ├── metal │ │ │ │ ├── SDL_render_metal.m │ │ │ │ ├── SDL_shaders_metal.metal │ │ │ │ ├── SDL_shaders_metal_ios.h │ │ │ │ ├── SDL_shaders_metal_osx.h │ │ │ │ ├── SDL_shaders_metal_tvos.h │ │ │ │ └── build-metal-shaders.sh │ │ │ ├── opengl │ │ │ │ ├── SDL_glfuncs.h │ │ │ │ ├── SDL_render_gl.c │ │ │ │ ├── SDL_shaders_gl.c │ │ │ │ └── SDL_shaders_gl.h │ │ │ ├── opengles │ │ │ │ ├── SDL_glesfuncs.h │ │ │ │ └── SDL_render_gles.c │ │ │ ├── opengles2 │ │ │ │ ├── SDL_gles2funcs.h │ │ │ │ ├── SDL_render_gles2.c │ │ │ │ ├── SDL_shaders_gles2.c │ │ │ │ └── SDL_shaders_gles2.h │ │ │ ├── psp │ │ │ │ └── SDL_render_psp.c │ │ │ └── software │ │ │ │ ├── SDL_blendfillrect.c │ │ │ │ ├── SDL_blendfillrect.h │ │ │ │ ├── SDL_blendline.c │ │ │ │ ├── SDL_blendline.h │ │ │ │ ├── SDL_blendpoint.c │ │ │ │ ├── SDL_blendpoint.h │ │ │ │ ├── SDL_draw.h │ │ │ │ ├── SDL_drawline.c │ │ │ │ ├── SDL_drawline.h │ │ │ │ ├── SDL_drawpoint.c │ │ │ │ ├── SDL_drawpoint.h │ │ │ │ ├── SDL_render_sw.c │ │ │ │ ├── SDL_render_sw_c.h │ │ │ │ ├── SDL_rotate.c │ │ │ │ └── SDL_rotate.h │ │ ├── sensor │ │ │ ├── SDL_sensor.c │ │ │ ├── SDL_sensor_c.h │ │ │ ├── SDL_syssensor.h │ │ │ ├── android │ │ │ │ ├── SDL_androidsensor.c │ │ │ │ └── SDL_androidsensor.h │ │ │ ├── coremotion │ │ │ │ ├── SDL_coremotionsensor.h │ │ │ │ └── SDL_coremotionsensor.m │ │ │ └── dummy │ │ │ │ ├── SDL_dummysensor.c │ │ │ │ └── SDL_dummysensor.h │ │ ├── stdlib │ │ │ ├── SDL_getenv.c │ │ │ ├── SDL_iconv.c │ │ │ ├── SDL_malloc.c │ │ │ ├── SDL_qsort.c │ │ │ ├── SDL_stdlib.c │ │ │ ├── SDL_string.c │ │ │ └── SDL_strtokr.c │ │ ├── test │ │ │ ├── SDL_test_assert.c │ │ │ ├── SDL_test_common.c │ │ │ ├── SDL_test_compare.c │ │ │ ├── SDL_test_crc32.c │ │ │ ├── SDL_test_font.c │ │ │ ├── SDL_test_fuzzer.c │ │ │ ├── SDL_test_harness.c │ │ │ ├── SDL_test_imageBlit.c │ │ │ ├── SDL_test_imageBlitBlend.c │ │ │ ├── SDL_test_imageFace.c │ │ │ ├── SDL_test_imagePrimitives.c │ │ │ ├── SDL_test_imagePrimitivesBlend.c │ │ │ ├── SDL_test_log.c │ │ │ ├── SDL_test_md5.c │ │ │ ├── SDL_test_memory.c │ │ │ └── SDL_test_random.c │ │ ├── thread │ │ │ ├── SDL_systhread.h │ │ │ ├── SDL_thread.c │ │ │ ├── SDL_thread_c.h │ │ │ ├── generic │ │ │ │ ├── SDL_syscond.c │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ └── SDL_systls.c │ │ │ ├── psp │ │ │ │ ├── SDL_syscond.c │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ └── SDL_systhread_c.h │ │ │ ├── pthread │ │ │ │ ├── SDL_syscond.c │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ └── SDL_systls.c │ │ │ ├── stdcpp │ │ │ │ ├── SDL_syscond.cpp │ │ │ │ ├── SDL_sysmutex.cpp │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_systhread.cpp │ │ │ │ └── SDL_systhread_c.h │ │ │ └── windows │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ └── SDL_systls.c │ │ ├── timer │ │ │ ├── SDL_timer.c │ │ │ ├── SDL_timer_c.h │ │ │ ├── dummy │ │ │ │ └── SDL_systimer.c │ │ │ ├── haiku │ │ │ │ └── SDL_systimer.c │ │ │ ├── psp │ │ │ │ └── SDL_systimer.c │ │ │ ├── unix │ │ │ │ └── SDL_systimer.c │ │ │ └── windows │ │ │ │ └── SDL_systimer.c │ │ └── video │ │ │ ├── SDL_RLEaccel.c │ │ │ ├── SDL_RLEaccel_c.h │ │ │ ├── SDL_blit.c │ │ │ ├── SDL_blit.h │ │ │ ├── SDL_blit_0.c │ │ │ ├── SDL_blit_1.c │ │ │ ├── SDL_blit_A.c │ │ │ ├── SDL_blit_N.c │ │ │ ├── SDL_blit_auto.c │ │ │ ├── SDL_blit_auto.h │ │ │ ├── SDL_blit_copy.c │ │ │ ├── SDL_blit_copy.h │ │ │ ├── SDL_blit_slow.c │ │ │ ├── SDL_blit_slow.h │ │ │ ├── SDL_bmp.c │ │ │ ├── SDL_clipboard.c │ │ │ ├── SDL_egl.c │ │ │ ├── SDL_egl_c.h │ │ │ ├── SDL_fillrect.c │ │ │ ├── SDL_pixels.c │ │ │ ├── SDL_pixels_c.h │ │ │ ├── SDL_rect.c │ │ │ ├── SDL_rect_c.h │ │ │ ├── SDL_shape.c │ │ │ ├── SDL_shape_internals.h │ │ │ ├── SDL_stretch.c │ │ │ ├── SDL_surface.c │ │ │ ├── SDL_sysvideo.h │ │ │ ├── SDL_video.c │ │ │ ├── SDL_vulkan_internal.h │ │ │ ├── SDL_vulkan_utils.c │ │ │ ├── SDL_yuv.c │ │ │ ├── SDL_yuv_c.h │ │ │ ├── android │ │ │ ├── SDL_androidclipboard.c │ │ │ ├── SDL_androidclipboard.h │ │ │ ├── SDL_androidevents.c │ │ │ ├── SDL_androidevents.h │ │ │ ├── SDL_androidgl.c │ │ │ ├── SDL_androidgl.h │ │ │ ├── SDL_androidkeyboard.c │ │ │ ├── SDL_androidkeyboard.h │ │ │ ├── SDL_androidmessagebox.c │ │ │ ├── SDL_androidmessagebox.h │ │ │ ├── SDL_androidmouse.c │ │ │ ├── SDL_androidmouse.h │ │ │ ├── SDL_androidtouch.c │ │ │ ├── SDL_androidtouch.h │ │ │ ├── SDL_androidvideo.c │ │ │ ├── SDL_androidvideo.h │ │ │ ├── SDL_androidvulkan.c │ │ │ ├── SDL_androidvulkan.h │ │ │ ├── SDL_androidwindow.c │ │ │ └── SDL_androidwindow.h │ │ │ ├── arm │ │ │ ├── pixman-arm-asm.h │ │ │ ├── pixman-arm-neon-asm.S │ │ │ ├── pixman-arm-neon-asm.h │ │ │ ├── pixman-arm-simd-asm.S │ │ │ └── pixman-arm-simd-asm.h │ │ │ ├── cocoa │ │ │ ├── SDL_cocoaclipboard.h │ │ │ ├── SDL_cocoaclipboard.m │ │ │ ├── SDL_cocoaevents.h │ │ │ ├── SDL_cocoaevents.m │ │ │ ├── SDL_cocoakeyboard.h │ │ │ ├── SDL_cocoakeyboard.m │ │ │ ├── SDL_cocoamessagebox.h │ │ │ ├── SDL_cocoamessagebox.m │ │ │ ├── SDL_cocoametalview.h │ │ │ ├── SDL_cocoametalview.m │ │ │ ├── SDL_cocoamodes.h │ │ │ ├── SDL_cocoamodes.m │ │ │ ├── SDL_cocoamouse.h │ │ │ ├── SDL_cocoamouse.m │ │ │ ├── SDL_cocoamousetap.h │ │ │ ├── SDL_cocoamousetap.m │ │ │ ├── SDL_cocoaopengl.h │ │ │ ├── SDL_cocoaopengl.m │ │ │ ├── SDL_cocoaopengles.h │ │ │ ├── SDL_cocoaopengles.m │ │ │ ├── SDL_cocoashape.h │ │ │ ├── SDL_cocoashape.m │ │ │ ├── SDL_cocoavideo.h │ │ │ ├── SDL_cocoavideo.m │ │ │ ├── SDL_cocoavulkan.h │ │ │ ├── SDL_cocoavulkan.m │ │ │ ├── SDL_cocoawindow.h │ │ │ └── SDL_cocoawindow.m │ │ │ ├── directfb │ │ │ ├── SDL_DirectFB_WM.c │ │ │ ├── SDL_DirectFB_WM.h │ │ │ ├── SDL_DirectFB_dyn.c │ │ │ ├── SDL_DirectFB_dyn.h │ │ │ ├── SDL_DirectFB_events.c │ │ │ ├── SDL_DirectFB_events.h │ │ │ ├── SDL_DirectFB_modes.c │ │ │ ├── SDL_DirectFB_modes.h │ │ │ ├── SDL_DirectFB_mouse.c │ │ │ ├── SDL_DirectFB_mouse.h │ │ │ ├── SDL_DirectFB_opengl.c │ │ │ ├── SDL_DirectFB_opengl.h │ │ │ ├── SDL_DirectFB_render.c │ │ │ ├── SDL_DirectFB_render.h │ │ │ ├── SDL_DirectFB_shape.c │ │ │ ├── SDL_DirectFB_shape.h │ │ │ ├── SDL_DirectFB_video.c │ │ │ ├── SDL_DirectFB_video.h │ │ │ ├── SDL_DirectFB_window.c │ │ │ └── SDL_DirectFB_window.h │ │ │ ├── dummy │ │ │ ├── SDL_nullevents.c │ │ │ ├── SDL_nullevents_c.h │ │ │ ├── SDL_nullframebuffer.c │ │ │ ├── SDL_nullframebuffer_c.h │ │ │ ├── SDL_nullvideo.c │ │ │ └── SDL_nullvideo.h │ │ │ ├── emscripten │ │ │ ├── SDL_emscriptenevents.c │ │ │ ├── SDL_emscriptenevents.h │ │ │ ├── SDL_emscriptenframebuffer.c │ │ │ ├── SDL_emscriptenframebuffer.h │ │ │ ├── SDL_emscriptenmouse.c │ │ │ ├── SDL_emscriptenmouse.h │ │ │ ├── SDL_emscriptenopengles.c │ │ │ ├── SDL_emscriptenopengles.h │ │ │ ├── SDL_emscriptenvideo.c │ │ │ └── SDL_emscriptenvideo.h │ │ │ ├── haiku │ │ │ ├── SDL_BWin.h │ │ │ ├── SDL_bclipboard.cc │ │ │ ├── SDL_bclipboard.h │ │ │ ├── SDL_bevents.cc │ │ │ ├── SDL_bevents.h │ │ │ ├── SDL_bframebuffer.cc │ │ │ ├── SDL_bframebuffer.h │ │ │ ├── SDL_bkeyboard.cc │ │ │ ├── SDL_bkeyboard.h │ │ │ ├── SDL_bmessagebox.cc │ │ │ ├── SDL_bmessagebox.h │ │ │ ├── SDL_bmodes.cc │ │ │ ├── SDL_bmodes.h │ │ │ ├── SDL_bopengl.cc │ │ │ ├── SDL_bopengl.h │ │ │ ├── SDL_bvideo.cc │ │ │ ├── SDL_bvideo.h │ │ │ ├── SDL_bwindow.cc │ │ │ └── SDL_bwindow.h │ │ │ ├── khronos │ │ │ ├── EGL │ │ │ │ ├── egl.h │ │ │ │ ├── eglext.h │ │ │ │ └── eglplatform.h │ │ │ ├── GLES2 │ │ │ │ ├── gl2.h │ │ │ │ ├── gl2ext.h │ │ │ │ └── gl2platform.h │ │ │ ├── KHR │ │ │ │ └── khrplatform.h │ │ │ └── vulkan │ │ │ │ ├── vk_icd.h │ │ │ │ ├── vk_layer.h │ │ │ │ ├── vk_platform.h │ │ │ │ ├── vk_sdk_platform.h │ │ │ │ ├── vulkan.h │ │ │ │ ├── vulkan.hpp │ │ │ │ ├── vulkan_android.h │ │ │ │ ├── vulkan_core.h │ │ │ │ ├── vulkan_fuchsia.h │ │ │ │ ├── vulkan_ios.h │ │ │ │ ├── vulkan_macos.h │ │ │ │ ├── vulkan_mir.h │ │ │ │ ├── vulkan_vi.h │ │ │ │ ├── vulkan_wayland.h │ │ │ │ ├── vulkan_win32.h │ │ │ │ ├── vulkan_xcb.h │ │ │ │ ├── vulkan_xlib.h │ │ │ │ └── vulkan_xlib_xrandr.h │ │ │ ├── kmsdrm │ │ │ ├── SDL_kmsdrmdyn.c │ │ │ ├── SDL_kmsdrmdyn.h │ │ │ ├── SDL_kmsdrmevents.c │ │ │ ├── SDL_kmsdrmevents.h │ │ │ ├── SDL_kmsdrmmouse.c │ │ │ ├── SDL_kmsdrmmouse.h │ │ │ ├── SDL_kmsdrmopengles.c │ │ │ ├── SDL_kmsdrmopengles.h │ │ │ ├── SDL_kmsdrmsym.h │ │ │ ├── SDL_kmsdrmvideo.c │ │ │ └── SDL_kmsdrmvideo.h │ │ │ ├── nacl │ │ │ ├── SDL_naclevents.c │ │ │ ├── SDL_naclevents_c.h │ │ │ ├── SDL_naclglue.c │ │ │ ├── SDL_naclopengles.c │ │ │ ├── SDL_naclopengles.h │ │ │ ├── SDL_naclvideo.c │ │ │ ├── SDL_naclvideo.h │ │ │ ├── SDL_naclwindow.c │ │ │ └── SDL_naclwindow.h │ │ │ ├── offscreen │ │ │ ├── SDL_offscreenevents.c │ │ │ ├── SDL_offscreenevents_c.h │ │ │ ├── SDL_offscreenframebuffer.c │ │ │ ├── SDL_offscreenframebuffer_c.h │ │ │ ├── SDL_offscreenopengl.c │ │ │ ├── SDL_offscreenopengl.h │ │ │ ├── SDL_offscreenvideo.c │ │ │ ├── SDL_offscreenvideo.h │ │ │ ├── SDL_offscreenwindow.c │ │ │ └── SDL_offscreenwindow.h │ │ │ ├── pandora │ │ │ ├── SDL_pandora.c │ │ │ ├── SDL_pandora.h │ │ │ ├── SDL_pandora_events.c │ │ │ └── SDL_pandora_events.h │ │ │ ├── psp │ │ │ ├── SDL_pspevents.c │ │ │ ├── SDL_pspevents_c.h │ │ │ ├── SDL_pspgl.c │ │ │ ├── SDL_pspgl_c.h │ │ │ ├── SDL_pspmouse.c │ │ │ ├── SDL_pspmouse_c.h │ │ │ ├── SDL_pspvideo.c │ │ │ └── SDL_pspvideo.h │ │ │ ├── qnx │ │ │ ├── gl.c │ │ │ ├── keyboard.c │ │ │ ├── sdl_qnx.h │ │ │ └── video.c │ │ │ ├── raspberry │ │ │ ├── SDL_rpievents.c │ │ │ ├── SDL_rpievents_c.h │ │ │ ├── SDL_rpimouse.c │ │ │ ├── SDL_rpimouse.h │ │ │ ├── SDL_rpiopengles.c │ │ │ ├── SDL_rpiopengles.h │ │ │ ├── SDL_rpivideo.c │ │ │ └── SDL_rpivideo.h │ │ │ ├── sdlgenblit.pl │ │ │ ├── uikit │ │ │ ├── SDL_uikitappdelegate.h │ │ │ ├── SDL_uikitappdelegate.m │ │ │ ├── SDL_uikitclipboard.h │ │ │ ├── SDL_uikitclipboard.m │ │ │ ├── SDL_uikitevents.h │ │ │ ├── SDL_uikitevents.m │ │ │ ├── SDL_uikitmessagebox.h │ │ │ ├── SDL_uikitmessagebox.m │ │ │ ├── SDL_uikitmetalview.h │ │ │ ├── SDL_uikitmetalview.m │ │ │ ├── SDL_uikitmodes.h │ │ │ ├── SDL_uikitmodes.m │ │ │ ├── SDL_uikitopengles.h │ │ │ ├── SDL_uikitopengles.m │ │ │ ├── SDL_uikitopenglview.h │ │ │ ├── SDL_uikitopenglview.m │ │ │ ├── SDL_uikitvideo.h │ │ │ ├── SDL_uikitvideo.m │ │ │ ├── SDL_uikitview.h │ │ │ ├── SDL_uikitview.m │ │ │ ├── SDL_uikitviewcontroller.h │ │ │ ├── SDL_uikitviewcontroller.m │ │ │ ├── SDL_uikitvulkan.h │ │ │ ├── SDL_uikitvulkan.m │ │ │ ├── SDL_uikitwindow.h │ │ │ ├── SDL_uikitwindow.m │ │ │ └── keyinfotable.h │ │ │ ├── vivante │ │ │ ├── SDL_vivanteopengles.c │ │ │ ├── SDL_vivanteopengles.h │ │ │ ├── SDL_vivanteplatform.c │ │ │ ├── SDL_vivanteplatform.h │ │ │ ├── SDL_vivantevideo.c │ │ │ ├── SDL_vivantevideo.h │ │ │ ├── SDL_vivantevulkan.c │ │ │ └── SDL_vivantevulkan.h │ │ │ ├── wayland │ │ │ ├── SDL_waylandclipboard.c │ │ │ ├── SDL_waylandclipboard.h │ │ │ ├── SDL_waylanddatamanager.c │ │ │ ├── SDL_waylanddatamanager.h │ │ │ ├── SDL_waylanddyn.c │ │ │ ├── SDL_waylanddyn.h │ │ │ ├── SDL_waylandevents.c │ │ │ ├── SDL_waylandevents_c.h │ │ │ ├── SDL_waylandmouse.c │ │ │ ├── SDL_waylandmouse.h │ │ │ ├── SDL_waylandopengles.c │ │ │ ├── SDL_waylandopengles.h │ │ │ ├── SDL_waylandsym.h │ │ │ ├── SDL_waylandtouch.c │ │ │ ├── SDL_waylandtouch.h │ │ │ ├── SDL_waylandvideo.c │ │ │ ├── SDL_waylandvideo.h │ │ │ ├── SDL_waylandvulkan.c │ │ │ ├── SDL_waylandvulkan.h │ │ │ ├── SDL_waylandwindow.c │ │ │ └── SDL_waylandwindow.h │ │ │ ├── windows │ │ │ ├── SDL_msctf.h │ │ │ ├── SDL_vkeys.h │ │ │ ├── SDL_windowsclipboard.c │ │ │ ├── SDL_windowsclipboard.h │ │ │ ├── SDL_windowsevents.c │ │ │ ├── SDL_windowsevents.h │ │ │ ├── SDL_windowsframebuffer.c │ │ │ ├── SDL_windowsframebuffer.h │ │ │ ├── SDL_windowskeyboard.c │ │ │ ├── SDL_windowskeyboard.h │ │ │ ├── SDL_windowsmessagebox.c │ │ │ ├── SDL_windowsmessagebox.h │ │ │ ├── SDL_windowsmodes.c │ │ │ ├── SDL_windowsmodes.h │ │ │ ├── SDL_windowsmouse.c │ │ │ ├── SDL_windowsmouse.h │ │ │ ├── SDL_windowsopengl.c │ │ │ ├── SDL_windowsopengl.h │ │ │ ├── SDL_windowsopengles.c │ │ │ ├── SDL_windowsopengles.h │ │ │ ├── SDL_windowsshape.c │ │ │ ├── SDL_windowsshape.h │ │ │ ├── SDL_windowstaskdialog.h │ │ │ ├── SDL_windowsvideo.c │ │ │ ├── SDL_windowsvideo.h │ │ │ ├── SDL_windowsvulkan.c │ │ │ ├── SDL_windowsvulkan.h │ │ │ ├── SDL_windowswindow.c │ │ │ ├── SDL_windowswindow.h │ │ │ └── wmmsg.h │ │ │ ├── winrt │ │ │ ├── SDL_winrtevents.cpp │ │ │ ├── SDL_winrtevents_c.h │ │ │ ├── SDL_winrtgamebar.cpp │ │ │ ├── SDL_winrtgamebar_cpp.h │ │ │ ├── SDL_winrtkeyboard.cpp │ │ │ ├── SDL_winrtmessagebox.cpp │ │ │ ├── SDL_winrtmessagebox.h │ │ │ ├── SDL_winrtmouse.cpp │ │ │ ├── SDL_winrtmouse_c.h │ │ │ ├── SDL_winrtopengles.cpp │ │ │ ├── SDL_winrtopengles.h │ │ │ ├── SDL_winrtpointerinput.cpp │ │ │ ├── SDL_winrtvideo.cpp │ │ │ └── SDL_winrtvideo_cpp.h │ │ │ ├── x11 │ │ │ ├── SDL_x11clipboard.c │ │ │ ├── SDL_x11clipboard.h │ │ │ ├── SDL_x11dyn.c │ │ │ ├── SDL_x11dyn.h │ │ │ ├── SDL_x11events.c │ │ │ ├── SDL_x11events.h │ │ │ ├── SDL_x11framebuffer.c │ │ │ ├── SDL_x11framebuffer.h │ │ │ ├── SDL_x11keyboard.c │ │ │ ├── SDL_x11keyboard.h │ │ │ ├── SDL_x11messagebox.c │ │ │ ├── SDL_x11messagebox.h │ │ │ ├── SDL_x11modes.c │ │ │ ├── SDL_x11modes.h │ │ │ ├── SDL_x11mouse.c │ │ │ ├── SDL_x11mouse.h │ │ │ ├── SDL_x11opengl.c │ │ │ ├── SDL_x11opengl.h │ │ │ ├── SDL_x11opengles.c │ │ │ ├── SDL_x11opengles.h │ │ │ ├── SDL_x11shape.c │ │ │ ├── SDL_x11shape.h │ │ │ ├── SDL_x11sym.h │ │ │ ├── SDL_x11touch.c │ │ │ ├── SDL_x11touch.h │ │ │ ├── SDL_x11video.c │ │ │ ├── SDL_x11video.h │ │ │ ├── SDL_x11vulkan.c │ │ │ ├── SDL_x11vulkan.h │ │ │ ├── SDL_x11window.c │ │ │ ├── SDL_x11window.h │ │ │ ├── SDL_x11xinput2.c │ │ │ ├── SDL_x11xinput2.h │ │ │ ├── edid-parse.c │ │ │ ├── edid.h │ │ │ ├── imKStoUCS.c │ │ │ └── imKStoUCS.h │ │ │ └── yuv2rgb │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── yuv_rgb.c │ │ │ ├── yuv_rgb.h │ │ │ ├── yuv_rgb_sse_func.h │ │ │ └── yuv_rgb_std_func.h │ ├── test │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── Makefile.in │ │ ├── Makefile.os2 │ │ ├── README │ │ ├── acinclude.m4 │ │ ├── autogen.sh │ │ ├── axis.bmp │ │ ├── button.bmp │ │ ├── checkkeys.c │ │ ├── configure │ │ ├── configure.ac │ │ ├── controllermap.bmp │ │ ├── controllermap.c │ │ ├── emscripten │ │ │ └── joystick-pre.js │ │ ├── gcc-fat.sh │ │ ├── icon.bmp │ │ ├── loopwave.c │ │ ├── loopwavequeue.c │ │ ├── moose.dat │ │ ├── nacl │ │ │ ├── Makefile │ │ │ ├── background.js │ │ │ ├── common.js │ │ │ ├── index.html │ │ │ └── manifest.json │ │ ├── picture.xbm │ │ ├── relative_mode.markdown │ │ ├── sample.bmp │ │ ├── sample.wav │ │ ├── shapes │ │ │ ├── p01_shape24.bmp │ │ │ ├── p01_shape32alpha.bmp │ │ │ ├── p01_shape8.bmp │ │ │ ├── p02_shape24.bmp │ │ │ ├── p02_shape32alpha.bmp │ │ │ ├── p02_shape8.bmp │ │ │ ├── p03_shape24.bmp │ │ │ ├── p03_shape8.bmp │ │ │ ├── p04_shape1.bmp │ │ │ ├── p04_shape24.bmp │ │ │ ├── p04_shape32alpha.bmp │ │ │ ├── p04_shape8.bmp │ │ │ ├── p05_shape8.bmp │ │ │ ├── p06_shape1alpha.bmp │ │ │ ├── p06_shape24.bmp │ │ │ ├── p06_shape32alpha.bmp │ │ │ ├── p06_shape8.bmp │ │ │ ├── p07_shape24.bmp │ │ │ ├── p07_shape32alpha.bmp │ │ │ ├── p07_shape8.bmp │ │ │ ├── p08_shape24.bmp │ │ │ ├── p08_shape32alpha.bmp │ │ │ ├── p08_shape8.bmp │ │ │ ├── p09_shape24.bmp │ │ │ ├── p09_shape32alpha.bmp │ │ │ ├── p09_shape8.bmp │ │ │ ├── p10_shape1.bmp │ │ │ ├── p10_shape24.bmp │ │ │ ├── p10_shape32alpha.bmp │ │ │ ├── p10_shape8.bmp │ │ │ ├── p11_shape24.bmp │ │ │ ├── p11_shape32alpha.bmp │ │ │ ├── p11_shape8.bmp │ │ │ ├── p12_shape24.bmp │ │ │ ├── p12_shape8.bmp │ │ │ ├── p13_shape24.bmp │ │ │ ├── p13_shape32alpha.bmp │ │ │ ├── p13_shape8.bmp │ │ │ ├── p14_shape24.bmp │ │ │ ├── p14_shape8.bmp │ │ │ ├── p15_shape24.bmp │ │ │ ├── p15_shape32alpha.bmp │ │ │ ├── p15_shape8.bmp │ │ │ ├── p16_shape1.bmp │ │ │ ├── p16_shape24.bmp │ │ │ ├── p16_shape8.bmp │ │ │ ├── trollface_24.bmp │ │ │ └── trollface_32alpha.bmp │ │ ├── testatomic.c │ │ ├── testaudiocapture.c │ │ ├── testaudiohotplug.c │ │ ├── testaudioinfo.c │ │ ├── testautomation.c │ │ ├── testautomation_audio.c │ │ ├── testautomation_clipboard.c │ │ ├── testautomation_events.c │ │ ├── testautomation_hints.c │ │ ├── testautomation_keyboard.c │ │ ├── testautomation_main.c │ │ ├── testautomation_mouse.c │ │ ├── testautomation_pixels.c │ │ ├── testautomation_platform.c │ │ ├── testautomation_rect.c │ │ ├── testautomation_render.c │ │ ├── testautomation_rwops.c │ │ ├── testautomation_sdltest.c │ │ ├── testautomation_stdlib.c │ │ ├── testautomation_suites.h │ │ ├── testautomation_surface.c │ │ ├── testautomation_syswm.c │ │ ├── testautomation_timer.c │ │ ├── testautomation_video.c │ │ ├── testbounds.c │ │ ├── testcustomcursor.c │ │ ├── testdisplayinfo.c │ │ ├── testdraw2.c │ │ ├── testdrawchessboard.c │ │ ├── testdropfile.c │ │ ├── testerror.c │ │ ├── testfile.c │ │ ├── testfilesystem.c │ │ ├── testgamecontroller.c │ │ ├── testgesture.c │ │ ├── testgl2.c │ │ ├── testgles.c │ │ ├── testgles2.c │ │ ├── testhaptic.c │ │ ├── testhittesting.c │ │ ├── testhotplug.c │ │ ├── testiconv.c │ │ ├── testime.c │ │ ├── testintersections.c │ │ ├── testjoystick.c │ │ ├── testkeys.c │ │ ├── testloadso.c │ │ ├── testlock.c │ │ ├── testmessage.c │ │ ├── testmultiaudio.c │ │ ├── testnative.c │ │ ├── testnative.h │ │ ├── testnativecocoa.m │ │ ├── testnativew32.c │ │ ├── testnativex11.c │ │ ├── testoffscreen.c │ │ ├── testoverlay2.c │ │ ├── testplatform.c │ │ ├── testpower.c │ │ ├── testqsort.c │ │ ├── testrelative.c │ │ ├── testrendercopyex.c │ │ ├── testrendertarget.c │ │ ├── testresample.c │ │ ├── testrumble.c │ │ ├── testscale.c │ │ ├── testsem.c │ │ ├── testsensor.c │ │ ├── testshader.c │ │ ├── testshape.c │ │ ├── testsprite2.c │ │ ├── testspriteminimal.c │ │ ├── teststreaming.c │ │ ├── testthread.c │ │ ├── testtimer.c │ │ ├── testver.c │ │ ├── testviewport.c │ │ ├── testvulkan.c │ │ ├── testwm2.c │ │ ├── testyuv.bmp │ │ ├── testyuv.c │ │ ├── testyuv_cvt.c │ │ ├── testyuv_cvt.h │ │ ├── torturethread.c │ │ └── utf8.txt │ └── wayland-protocols │ │ ├── org-kde-kwin-server-decoration-manager.xml │ │ ├── pointer-constraints-unstable-v1.xml │ │ ├── relative-pointer-unstable-v1.xml │ │ ├── wayland.xml │ │ ├── xdg-decoration-unstable-v1.xml │ │ ├── xdg-shell-unstable-v6.xml │ │ └── xdg-shell.xml ├── freetype │ ├── .clang-format │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── ChangeLog.20 │ ├── ChangeLog.21 │ ├── ChangeLog.22 │ ├── ChangeLog.23 │ ├── ChangeLog.24 │ ├── ChangeLog.25 │ ├── ChangeLog.26 │ ├── ChangeLog.27 │ ├── ChangeLog.28 │ ├── ChangeLog.29 │ ├── Makefile │ ├── README │ ├── README.git │ ├── autogen.sh │ ├── builds │ │ ├── amiga │ │ │ ├── README │ │ │ ├── include │ │ │ │ └── config │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ └── ftmodule.h │ │ │ ├── makefile │ │ │ ├── makefile.os4 │ │ │ ├── smakefile │ │ │ └── src │ │ │ │ └── base │ │ │ │ ├── ftdebug.c │ │ │ │ └── ftsystem.c │ │ ├── ansi │ │ │ ├── ansi-def.mk │ │ │ └── ansi.mk │ │ ├── atari │ │ │ ├── ATARI.H │ │ │ ├── FNames.SIC │ │ │ ├── FREETYPE.PRJ │ │ │ ├── README.TXT │ │ │ ├── deflinejoiner.awk │ │ │ └── gen-purec-patch.sh │ │ ├── beos │ │ │ ├── beos-def.mk │ │ │ ├── beos.mk │ │ │ └── detect.mk │ │ ├── cmake │ │ │ ├── FindBrotliDec.cmake │ │ │ ├── FindHarfBuzz.cmake │ │ │ ├── iOS.cmake │ │ │ └── testbuild.sh │ │ ├── compiler │ │ │ ├── ansi-cc.mk │ │ │ ├── bcc-dev.mk │ │ │ ├── bcc.mk │ │ │ ├── emx.mk │ │ │ ├── gcc-dev.mk │ │ │ ├── gcc.mk │ │ │ ├── intelc.mk │ │ │ ├── unix-lcc.mk │ │ │ ├── visualage.mk │ │ │ ├── visualc.mk │ │ │ ├── watcom.mk │ │ │ └── win-lcc.mk │ │ ├── detect.mk │ │ ├── dos │ │ │ ├── detect.mk │ │ │ ├── dos-def.mk │ │ │ ├── dos-emx.mk │ │ │ ├── dos-gcc.mk │ │ │ └── dos-wat.mk │ │ ├── exports.mk │ │ ├── freetype.mk │ │ ├── link_dos.mk │ │ ├── link_std.mk │ │ ├── mac │ │ │ ├── FreeType.m68k_cfm.make.txt │ │ │ ├── FreeType.m68k_far.make.txt │ │ │ ├── FreeType.ppc_carbon.make.txt │ │ │ ├── FreeType.ppc_classic.make.txt │ │ │ ├── README │ │ │ ├── ascii2mpw.py │ │ │ ├── freetype-Info.plist │ │ │ ├── ftlib.prj.xml │ │ │ └── ftmac.c │ │ ├── meson │ │ │ ├── extract_freetype_version.py │ │ │ ├── extract_libtool_version.py │ │ │ ├── generate_reference_docs.py │ │ │ ├── parse_modules_cfg.py │ │ │ └── process_ftoption_h.py │ │ ├── modules.mk │ │ ├── os2 │ │ │ ├── detect.mk │ │ │ ├── os2-def.mk │ │ │ ├── os2-dev.mk │ │ │ └── os2-gcc.mk │ │ ├── symbian │ │ │ ├── bld.inf │ │ │ └── freetype.mmp │ │ ├── toplevel.mk │ │ ├── unix │ │ │ ├── aclocal.m4 │ │ │ ├── ax_compare_version.m4 │ │ │ ├── ax_prog_python_version.m4 │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── configure.raw │ │ │ ├── detect.mk │ │ │ ├── freetype-config.in │ │ │ ├── freetype2.in │ │ │ ├── freetype2.m4 │ │ │ ├── ft-munmap.m4 │ │ │ ├── ftconfig.h.in │ │ │ ├── ftsystem.c │ │ │ ├── install-sh │ │ │ ├── install.mk │ │ │ ├── ltmain.sh │ │ │ ├── pkg.m4 │ │ │ ├── unix-cc.in │ │ │ ├── unix-def.in │ │ │ ├── unix-dev.mk │ │ │ ├── unix-lcc.mk │ │ │ ├── unix.mk │ │ │ └── unixddef.mk │ │ ├── vms │ │ │ ├── LIBS.OPT_IA64 │ │ │ ├── _LINK.OPT_IA64 │ │ │ ├── ftconfig.h │ │ │ ├── ftsystem.c │ │ │ └── vmslib.dat │ │ ├── wince │ │ │ ├── ftdebug.c │ │ │ ├── vc2005-ce │ │ │ │ ├── freetype.sln │ │ │ │ ├── freetype.vcproj │ │ │ │ └── index.html │ │ │ └── vc2008-ce │ │ │ │ ├── freetype.sln │ │ │ │ ├── freetype.vcproj │ │ │ │ └── index.html │ │ └── windows │ │ │ ├── detect.mk │ │ │ ├── ftdebug.c │ │ │ ├── vc2010 │ │ │ ├── freetype.sln │ │ │ ├── freetype.user.props │ │ │ ├── freetype.vcxproj │ │ │ ├── freetype.vcxproj.filters │ │ │ └── index.html │ │ │ ├── visualc │ │ │ ├── freetype.dsp │ │ │ ├── freetype.dsw │ │ │ ├── freetype.sln │ │ │ ├── freetype.vcproj │ │ │ └── index.html │ │ │ ├── visualce │ │ │ ├── freetype.dsp │ │ │ ├── freetype.dsw │ │ │ ├── freetype.vcproj │ │ │ └── index.html │ │ │ ├── w32-bcc.mk │ │ │ ├── w32-bccd.mk │ │ │ ├── w32-dev.mk │ │ │ ├── w32-gcc.mk │ │ │ ├── w32-icc.mk │ │ │ ├── w32-intl.mk │ │ │ ├── w32-lcc.mk │ │ │ ├── w32-mingw32.mk │ │ │ ├── w32-vcc.mk │ │ │ ├── w32-wat.mk │ │ │ └── win32-def.mk │ ├── configure │ ├── devel │ │ ├── ft2build.h │ │ └── ftoption.h │ ├── docs │ │ ├── CHANGES │ │ ├── CMAKE │ │ ├── CUSTOMIZE │ │ ├── DEBUG │ │ ├── DOCGUIDE │ │ ├── FTL.TXT │ │ ├── GPLv2.TXT │ │ ├── INSTALL │ │ ├── INSTALL.ANY │ │ ├── INSTALL.CROSS │ │ ├── INSTALL.GNU │ │ ├── INSTALL.MAC │ │ ├── INSTALL.UNIX │ │ ├── INSTALL.VMS │ │ ├── LICENSE.TXT │ │ ├── MAKEPP │ │ ├── PROBLEMS │ │ ├── README │ │ ├── TODO │ │ ├── VERSIONS.TXT │ │ ├── formats.txt │ │ ├── freetype-config.1 │ │ ├── raster.txt │ │ ├── reference │ │ │ ├── 404.html │ │ │ ├── assets │ │ │ │ ├── fonts │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ ├── material-icons.css │ │ │ │ │ └── specimen │ │ │ │ │ │ ├── FontAwesome.ttf │ │ │ │ │ │ ├── FontAwesome.woff │ │ │ │ │ │ ├── FontAwesome.woff2 │ │ │ │ │ │ ├── MaterialIcons-Regular.ttf │ │ │ │ │ │ ├── MaterialIcons-Regular.woff │ │ │ │ │ │ └── MaterialIcons-Regular.woff2 │ │ │ │ ├── images │ │ │ │ │ ├── favicon.png │ │ │ │ │ └── icons │ │ │ │ │ │ ├── bitbucket.1b09e088.svg │ │ │ │ │ │ ├── github.f0b8504a.svg │ │ │ │ │ │ └── gitlab.6dd19c00.svg │ │ │ │ ├── javascripts │ │ │ │ │ ├── application.c33a9706.js │ │ │ │ │ ├── lunr │ │ │ │ │ │ ├── lunr.ar.js │ │ │ │ │ │ ├── lunr.da.js │ │ │ │ │ │ ├── lunr.de.js │ │ │ │ │ │ ├── lunr.du.js │ │ │ │ │ │ ├── lunr.es.js │ │ │ │ │ │ ├── lunr.fi.js │ │ │ │ │ │ ├── lunr.fr.js │ │ │ │ │ │ ├── lunr.hu.js │ │ │ │ │ │ ├── lunr.it.js │ │ │ │ │ │ ├── lunr.ja.js │ │ │ │ │ │ ├── lunr.jp.js │ │ │ │ │ │ ├── lunr.multi.js │ │ │ │ │ │ ├── lunr.nl.js │ │ │ │ │ │ ├── lunr.no.js │ │ │ │ │ │ ├── lunr.pt.js │ │ │ │ │ │ ├── lunr.ro.js │ │ │ │ │ │ ├── lunr.ru.js │ │ │ │ │ │ ├── lunr.stemmer.support.js │ │ │ │ │ │ ├── lunr.sv.js │ │ │ │ │ │ ├── lunr.th.js │ │ │ │ │ │ ├── lunr.tr.js │ │ │ │ │ │ ├── lunr.vi.js │ │ │ │ │ │ ├── tinyseg.js │ │ │ │ │ │ └── wordcut.js │ │ │ │ │ └── modernizr.86422ebf.js │ │ │ │ └── stylesheets │ │ │ │ │ ├── application-palette.a8b3c06d.css │ │ │ │ │ └── application.adb8469c.css │ │ │ ├── ft2-auto_hinter.html │ │ │ ├── ft2-base_interface.html │ │ │ ├── ft2-basic_types.html │ │ │ ├── ft2-bdf_fonts.html │ │ │ ├── ft2-bitmap_handling.html │ │ │ ├── ft2-bzip2.html │ │ │ ├── ft2-cache_subsystem.html │ │ │ ├── ft2-cff_driver.html │ │ │ ├── ft2-cid_fonts.html │ │ │ ├── ft2-color_management.html │ │ │ ├── ft2-computations.html │ │ │ ├── ft2-error_code_values.html │ │ │ ├── ft2-error_enumerations.html │ │ │ ├── ft2-font_formats.html │ │ │ ├── ft2-gasp_table.html │ │ │ ├── ft2-glyph_management.html │ │ │ ├── ft2-glyph_stroker.html │ │ │ ├── ft2-glyph_variants.html │ │ │ ├── ft2-gx_validation.html │ │ │ ├── ft2-gzip.html │ │ │ ├── ft2-header_file_macros.html │ │ │ ├── ft2-header_inclusion.html │ │ │ ├── ft2-incremental.html │ │ │ ├── ft2-index.html │ │ │ ├── ft2-layer_management.html │ │ │ ├── ft2-lcd_rendering.html │ │ │ ├── ft2-list_processing.html │ │ │ ├── ft2-lzw.html │ │ │ ├── ft2-mac_specific.html │ │ │ ├── ft2-module_management.html │ │ │ ├── ft2-multiple_masters.html │ │ │ ├── ft2-ot_validation.html │ │ │ ├── ft2-outline_processing.html │ │ │ ├── ft2-parameter_tags.html │ │ │ ├── ft2-pcf_driver.html │ │ │ ├── ft2-pfr_fonts.html │ │ │ ├── ft2-properties.html │ │ │ ├── ft2-quick_advance.html │ │ │ ├── ft2-raster.html │ │ │ ├── ft2-sfnt_names.html │ │ │ ├── ft2-sizes_management.html │ │ │ ├── ft2-system_interface.html │ │ │ ├── ft2-t1_cid_driver.html │ │ │ ├── ft2-truetype_engine.html │ │ │ ├── ft2-truetype_tables.html │ │ │ ├── ft2-tt_driver.html │ │ │ ├── ft2-type1_tables.html │ │ │ ├── ft2-user_allocation.html │ │ │ ├── ft2-version.html │ │ │ ├── ft2-winfnt_fonts.html │ │ │ ├── images │ │ │ │ └── favico.ico │ │ │ ├── index.html │ │ │ ├── javascripts │ │ │ │ └── extra.js │ │ │ ├── search │ │ │ │ └── search_index.json │ │ │ ├── sitemap.xml │ │ │ ├── sitemap.xml.gz │ │ │ └── stylesheets │ │ │ │ └── extra.css │ │ └── release │ ├── include │ │ ├── freetype │ │ │ ├── config │ │ │ │ ├── ftconfig.h │ │ │ │ ├── ftheader.h │ │ │ │ ├── ftmodule.h │ │ │ │ ├── ftoption.h │ │ │ │ ├── ftstdlib.h │ │ │ │ ├── integer-types.h │ │ │ │ ├── mac-support.h │ │ │ │ └── public-macros.h │ │ │ ├── freetype.h │ │ │ ├── ftadvanc.h │ │ │ ├── ftbbox.h │ │ │ ├── ftbdf.h │ │ │ ├── ftbitmap.h │ │ │ ├── ftbzip2.h │ │ │ ├── ftcache.h │ │ │ ├── ftchapters.h │ │ │ ├── ftcid.h │ │ │ ├── ftcolor.h │ │ │ ├── ftdriver.h │ │ │ ├── fterrdef.h │ │ │ ├── fterrors.h │ │ │ ├── ftfntfmt.h │ │ │ ├── ftgasp.h │ │ │ ├── ftglyph.h │ │ │ ├── ftgxval.h │ │ │ ├── ftgzip.h │ │ │ ├── ftimage.h │ │ │ ├── ftincrem.h │ │ │ ├── ftlcdfil.h │ │ │ ├── ftlist.h │ │ │ ├── ftlzw.h │ │ │ ├── ftmac.h │ │ │ ├── ftmm.h │ │ │ ├── ftmodapi.h │ │ │ ├── ftmoderr.h │ │ │ ├── ftotval.h │ │ │ ├── ftoutln.h │ │ │ ├── ftparams.h │ │ │ ├── ftpfr.h │ │ │ ├── ftrender.h │ │ │ ├── ftsizes.h │ │ │ ├── ftsnames.h │ │ │ ├── ftstroke.h │ │ │ ├── ftsynth.h │ │ │ ├── ftsystem.h │ │ │ ├── fttrigon.h │ │ │ ├── fttypes.h │ │ │ ├── ftwinfnt.h │ │ │ ├── internal │ │ │ │ ├── autohint.h │ │ │ │ ├── cffotypes.h │ │ │ │ ├── cfftypes.h │ │ │ │ ├── compiler-macros.h │ │ │ │ ├── ftcalc.h │ │ │ │ ├── ftdebug.h │ │ │ │ ├── ftdrv.h │ │ │ │ ├── ftgloadr.h │ │ │ │ ├── fthash.h │ │ │ │ ├── ftmemory.h │ │ │ │ ├── ftobjs.h │ │ │ │ ├── ftpsprop.h │ │ │ │ ├── ftrfork.h │ │ │ │ ├── ftserv.h │ │ │ │ ├── ftstream.h │ │ │ │ ├── fttrace.h │ │ │ │ ├── ftvalid.h │ │ │ │ ├── psaux.h │ │ │ │ ├── pshints.h │ │ │ │ ├── services │ │ │ │ │ ├── svbdf.h │ │ │ │ │ ├── svcfftl.h │ │ │ │ │ ├── svcid.h │ │ │ │ │ ├── svfntfmt.h │ │ │ │ │ ├── svgldict.h │ │ │ │ │ ├── svgxval.h │ │ │ │ │ ├── svkern.h │ │ │ │ │ ├── svmetric.h │ │ │ │ │ ├── svmm.h │ │ │ │ │ ├── svotval.h │ │ │ │ │ ├── svpfr.h │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ ├── svprop.h │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ ├── svtteng.h │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ └── svwinfnt.h │ │ │ │ ├── sfnt.h │ │ │ │ ├── t1types.h │ │ │ │ ├── tttypes.h │ │ │ │ └── wofftypes.h │ │ │ ├── t1tables.h │ │ │ ├── ttnameid.h │ │ │ ├── tttables.h │ │ │ └── tttags.h │ │ └── ft2build.h │ ├── meson.build │ ├── meson_options.txt │ ├── modules.cfg │ ├── objs │ │ └── README │ ├── src │ │ ├── autofit │ │ │ ├── afangles.c │ │ │ ├── afangles.h │ │ │ ├── afblue.c │ │ │ ├── afblue.cin │ │ │ ├── afblue.dat │ │ │ ├── afblue.h │ │ │ ├── afblue.hin │ │ │ ├── afcjk.c │ │ │ ├── afcjk.h │ │ │ ├── afcover.h │ │ │ ├── afdummy.c │ │ │ ├── afdummy.h │ │ │ ├── aferrors.h │ │ │ ├── afglobal.c │ │ │ ├── afglobal.h │ │ │ ├── afhints.c │ │ │ ├── afhints.h │ │ │ ├── afindic.c │ │ │ ├── afindic.h │ │ │ ├── aflatin.c │ │ │ ├── aflatin.h │ │ │ ├── aflatin2.c │ │ │ ├── aflatin2.h │ │ │ ├── afloader.c │ │ │ ├── afloader.h │ │ │ ├── afmodule.c │ │ │ ├── afmodule.h │ │ │ ├── afranges.c │ │ │ ├── afranges.h │ │ │ ├── afscript.h │ │ │ ├── afshaper.c │ │ │ ├── afshaper.h │ │ │ ├── afstyles.h │ │ │ ├── aftypes.h │ │ │ ├── afwarp.c │ │ │ ├── afwarp.h │ │ │ ├── afwrtsys.h │ │ │ ├── autofit.c │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ ├── base │ │ │ ├── ftadvanc.c │ │ │ ├── ftbase.c │ │ │ ├── ftbase.h │ │ │ ├── ftbbox.c │ │ │ ├── ftbdf.c │ │ │ ├── ftbitmap.c │ │ │ ├── ftcalc.c │ │ │ ├── ftcid.c │ │ │ ├── ftcolor.c │ │ │ ├── ftdbgmem.c │ │ │ ├── ftdebug.c │ │ │ ├── fterrors.c │ │ │ ├── ftfntfmt.c │ │ │ ├── ftfstype.c │ │ │ ├── ftgasp.c │ │ │ ├── ftgloadr.c │ │ │ ├── ftglyph.c │ │ │ ├── ftgxval.c │ │ │ ├── fthash.c │ │ │ ├── ftinit.c │ │ │ ├── ftlcdfil.c │ │ │ ├── ftmac.c │ │ │ ├── ftmm.c │ │ │ ├── ftobjs.c │ │ │ ├── ftotval.c │ │ │ ├── ftoutln.c │ │ │ ├── ftpatent.c │ │ │ ├── ftpfr.c │ │ │ ├── ftpsprop.c │ │ │ ├── ftrfork.c │ │ │ ├── ftsnames.c │ │ │ ├── ftstream.c │ │ │ ├── ftstroke.c │ │ │ ├── ftsynth.c │ │ │ ├── ftsystem.c │ │ │ ├── fttrigon.c │ │ │ ├── fttype1.c │ │ │ ├── ftutil.c │ │ │ ├── ftver.rc │ │ │ ├── ftwinfnt.c │ │ │ ├── md5.c │ │ │ ├── md5.h │ │ │ └── rules.mk │ │ ├── bdf │ │ │ ├── README │ │ │ ├── bdf.c │ │ │ ├── bdf.h │ │ │ ├── bdfdrivr.c │ │ │ ├── bdfdrivr.h │ │ │ ├── bdferror.h │ │ │ ├── bdflib.c │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ ├── bzip2 │ │ │ ├── ftbzip2.c │ │ │ └── rules.mk │ │ ├── cache │ │ │ ├── ftcache.c │ │ │ ├── ftcbasic.c │ │ │ ├── ftccache.c │ │ │ ├── ftccache.h │ │ │ ├── ftccback.h │ │ │ ├── ftccmap.c │ │ │ ├── ftcerror.h │ │ │ ├── ftcglyph.c │ │ │ ├── ftcglyph.h │ │ │ ├── ftcimage.c │ │ │ ├── ftcimage.h │ │ │ ├── ftcmanag.c │ │ │ ├── ftcmanag.h │ │ │ ├── ftcmru.c │ │ │ ├── ftcmru.h │ │ │ ├── ftcsbits.c │ │ │ ├── ftcsbits.h │ │ │ └── rules.mk │ │ ├── cff │ │ │ ├── cff.c │ │ │ ├── cffcmap.c │ │ │ ├── cffcmap.h │ │ │ ├── cffdrivr.c │ │ │ ├── cffdrivr.h │ │ │ ├── cfferrs.h │ │ │ ├── cffgload.c │ │ │ ├── cffgload.h │ │ │ ├── cffload.c │ │ │ ├── cffload.h │ │ │ ├── cffobjs.c │ │ │ ├── cffobjs.h │ │ │ ├── cffparse.c │ │ │ ├── cffparse.h │ │ │ ├── cfftoken.h │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ ├── cid │ │ │ ├── ciderrs.h │ │ │ ├── cidgload.c │ │ │ ├── cidgload.h │ │ │ ├── cidload.c │ │ │ ├── cidload.h │ │ │ ├── cidobjs.c │ │ │ ├── cidobjs.h │ │ │ ├── cidparse.c │ │ │ ├── cidparse.h │ │ │ ├── cidriver.c │ │ │ ├── cidriver.h │ │ │ ├── cidtoken.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ └── type1cid.c │ │ ├── gxvalid │ │ │ ├── README │ │ │ ├── gxvalid.c │ │ │ ├── gxvalid.h │ │ │ ├── gxvbsln.c │ │ │ ├── gxvcommn.c │ │ │ ├── gxvcommn.h │ │ │ ├── gxverror.h │ │ │ ├── gxvfeat.c │ │ │ ├── gxvfeat.h │ │ │ ├── gxvfgen.c │ │ │ ├── gxvjust.c │ │ │ ├── gxvkern.c │ │ │ ├── gxvlcar.c │ │ │ ├── gxvmod.c │ │ │ ├── gxvmod.h │ │ │ ├── gxvmort.c │ │ │ ├── gxvmort.h │ │ │ ├── gxvmort0.c │ │ │ ├── gxvmort1.c │ │ │ ├── gxvmort2.c │ │ │ ├── gxvmort4.c │ │ │ ├── gxvmort5.c │ │ │ ├── gxvmorx.c │ │ │ ├── gxvmorx.h │ │ │ ├── gxvmorx0.c │ │ │ ├── gxvmorx1.c │ │ │ ├── gxvmorx2.c │ │ │ ├── gxvmorx4.c │ │ │ ├── gxvmorx5.c │ │ │ ├── gxvopbd.c │ │ │ ├── gxvprop.c │ │ │ ├── gxvtrak.c │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ ├── gzip │ │ │ ├── adler32.c │ │ │ ├── ftgzip.c │ │ │ ├── ftzconf.h │ │ │ ├── infblock.c │ │ │ ├── infblock.h │ │ │ ├── infcodes.c │ │ │ ├── infcodes.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── infutil.c │ │ │ ├── infutil.h │ │ │ ├── rules.mk │ │ │ ├── zlib.h │ │ │ ├── zutil.c │ │ │ └── zutil.h │ │ ├── lzw │ │ │ ├── ftlzw.c │ │ │ ├── ftzopen.c │ │ │ ├── ftzopen.h │ │ │ └── rules.mk │ │ ├── otvalid │ │ │ ├── module.mk │ │ │ ├── otvalid.c │ │ │ ├── otvalid.h │ │ │ ├── otvbase.c │ │ │ ├── otvcommn.c │ │ │ ├── otvcommn.h │ │ │ ├── otverror.h │ │ │ ├── otvgdef.c │ │ │ ├── otvgpos.c │ │ │ ├── otvgpos.h │ │ │ ├── otvgsub.c │ │ │ ├── otvjstf.c │ │ │ ├── otvmath.c │ │ │ ├── otvmod.c │ │ │ ├── otvmod.h │ │ │ └── rules.mk │ │ ├── pcf │ │ │ ├── README │ │ │ ├── module.mk │ │ │ ├── pcf.c │ │ │ ├── pcf.h │ │ │ ├── pcfdrivr.c │ │ │ ├── pcfdrivr.h │ │ │ ├── pcferror.h │ │ │ ├── pcfread.c │ │ │ ├── pcfread.h │ │ │ ├── pcfutil.c │ │ │ ├── pcfutil.h │ │ │ └── rules.mk │ │ ├── pfr │ │ │ ├── module.mk │ │ │ ├── pfr.c │ │ │ ├── pfrcmap.c │ │ │ ├── pfrcmap.h │ │ │ ├── pfrdrivr.c │ │ │ ├── pfrdrivr.h │ │ │ ├── pfrerror.h │ │ │ ├── pfrgload.c │ │ │ ├── pfrgload.h │ │ │ ├── pfrload.c │ │ │ ├── pfrload.h │ │ │ ├── pfrobjs.c │ │ │ ├── pfrobjs.h │ │ │ ├── pfrsbit.c │ │ │ ├── pfrsbit.h │ │ │ ├── pfrtypes.h │ │ │ └── rules.mk │ │ ├── psaux │ │ │ ├── afmparse.c │ │ │ ├── afmparse.h │ │ │ ├── cffdecode.c │ │ │ ├── cffdecode.h │ │ │ ├── module.mk │ │ │ ├── psarrst.c │ │ │ ├── psarrst.h │ │ │ ├── psaux.c │ │ │ ├── psauxerr.h │ │ │ ├── psauxmod.c │ │ │ ├── psauxmod.h │ │ │ ├── psblues.c │ │ │ ├── psblues.h │ │ │ ├── psconv.c │ │ │ ├── psconv.h │ │ │ ├── pserror.c │ │ │ ├── pserror.h │ │ │ ├── psfixed.h │ │ │ ├── psfont.c │ │ │ ├── psfont.h │ │ │ ├── psft.c │ │ │ ├── psft.h │ │ │ ├── psglue.h │ │ │ ├── pshints.c │ │ │ ├── pshints.h │ │ │ ├── psintrp.c │ │ │ ├── psintrp.h │ │ │ ├── psobjs.c │ │ │ ├── psobjs.h │ │ │ ├── psread.c │ │ │ ├── psread.h │ │ │ ├── psstack.c │ │ │ ├── psstack.h │ │ │ ├── pstypes.h │ │ │ ├── rules.mk │ │ │ ├── t1cmap.c │ │ │ ├── t1cmap.h │ │ │ ├── t1decode.c │ │ │ └── t1decode.h │ │ ├── pshinter │ │ │ ├── module.mk │ │ │ ├── pshalgo.c │ │ │ ├── pshalgo.h │ │ │ ├── pshglob.c │ │ │ ├── pshglob.h │ │ │ ├── pshinter.c │ │ │ ├── pshmod.c │ │ │ ├── pshmod.h │ │ │ ├── pshnterr.h │ │ │ ├── pshrec.c │ │ │ ├── pshrec.h │ │ │ └── rules.mk │ │ ├── psnames │ │ │ ├── module.mk │ │ │ ├── psmodule.c │ │ │ ├── psmodule.h │ │ │ ├── psnamerr.h │ │ │ ├── psnames.c │ │ │ ├── pstables.h │ │ │ └── rules.mk │ │ ├── raster │ │ │ ├── ftmisc.h │ │ │ ├── ftraster.c │ │ │ ├── ftraster.h │ │ │ ├── ftrend1.c │ │ │ ├── ftrend1.h │ │ │ ├── module.mk │ │ │ ├── raster.c │ │ │ ├── rasterrs.h │ │ │ └── rules.mk │ │ ├── sfnt │ │ │ ├── module.mk │ │ │ ├── pngshim.c │ │ │ ├── pngshim.h │ │ │ ├── rules.mk │ │ │ ├── sfdriver.c │ │ │ ├── sfdriver.h │ │ │ ├── sferrors.h │ │ │ ├── sfnt.c │ │ │ ├── sfobjs.c │ │ │ ├── sfobjs.h │ │ │ ├── sfwoff.c │ │ │ ├── sfwoff.h │ │ │ ├── sfwoff2.c │ │ │ ├── sfwoff2.h │ │ │ ├── ttbdf.c │ │ │ ├── ttbdf.h │ │ │ ├── ttcmap.c │ │ │ ├── ttcmap.h │ │ │ ├── ttcmapc.h │ │ │ ├── ttcolr.c │ │ │ ├── ttcolr.h │ │ │ ├── ttcpal.c │ │ │ ├── ttcpal.h │ │ │ ├── ttkern.c │ │ │ ├── ttkern.h │ │ │ ├── ttload.c │ │ │ ├── ttload.h │ │ │ ├── ttmtx.c │ │ │ ├── ttmtx.h │ │ │ ├── ttpost.c │ │ │ ├── ttpost.h │ │ │ ├── ttsbit.c │ │ │ ├── ttsbit.h │ │ │ ├── woff2tags.c │ │ │ └── woff2tags.h │ │ ├── smooth │ │ │ ├── ftgrays.c │ │ │ ├── ftgrays.h │ │ │ ├── ftsmerrs.h │ │ │ ├── ftsmooth.c │ │ │ ├── ftsmooth.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ └── smooth.c │ │ ├── tools │ │ │ ├── afblue.pl │ │ │ ├── apinames.c │ │ │ ├── chktrcmp.py │ │ │ ├── cordic.py │ │ │ ├── ftrandom │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── ftrandom.c │ │ │ ├── glnames.py │ │ │ ├── make_distribution_archives.py │ │ │ ├── no-copyright │ │ │ ├── test_afm.c │ │ │ ├── test_bbox.c │ │ │ ├── test_trig.c │ │ │ ├── update-copyright │ │ │ └── update-copyright-year │ │ ├── truetype │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── truetype.c │ │ │ ├── ttdriver.c │ │ │ ├── ttdriver.h │ │ │ ├── tterrors.h │ │ │ ├── ttgload.c │ │ │ ├── ttgload.h │ │ │ ├── ttgxvar.c │ │ │ ├── ttgxvar.h │ │ │ ├── ttinterp.c │ │ │ ├── ttinterp.h │ │ │ ├── ttobjs.c │ │ │ ├── ttobjs.h │ │ │ ├── ttpload.c │ │ │ ├── ttpload.h │ │ │ ├── ttsubpix.c │ │ │ └── ttsubpix.h │ │ ├── type1 │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── t1afm.c │ │ │ ├── t1afm.h │ │ │ ├── t1driver.c │ │ │ ├── t1driver.h │ │ │ ├── t1errors.h │ │ │ ├── t1gload.c │ │ │ ├── t1gload.h │ │ │ ├── t1load.c │ │ │ ├── t1load.h │ │ │ ├── t1objs.c │ │ │ ├── t1objs.h │ │ │ ├── t1parse.c │ │ │ ├── t1parse.h │ │ │ ├── t1tokens.h │ │ │ └── type1.c │ │ ├── type42 │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── t42drivr.c │ │ │ ├── t42drivr.h │ │ │ ├── t42error.h │ │ │ ├── t42objs.c │ │ │ ├── t42objs.h │ │ │ ├── t42parse.c │ │ │ ├── t42parse.h │ │ │ ├── t42types.h │ │ │ └── type42.c │ │ └── winfonts │ │ │ ├── fnterrs.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── winfnt.c │ │ │ └── winfnt.h │ ├── version.sed │ └── vms_make.com ├── glad │ ├── CMakeLists.txt │ ├── include │ │ ├── KHR │ │ │ └── khrplatform.h │ │ └── glad │ │ │ └── glad.h │ └── src │ │ └── glad.c ├── glfw │ ├── CMake │ │ ├── GenerateMappings.cmake │ │ ├── MacOSXBundleInfo.plist.in │ │ ├── i686-w64-mingw32-clang.cmake │ │ ├── i686-w64-mingw32.cmake │ │ ├── modules │ │ │ ├── FindEpollShim.cmake │ │ │ ├── FindOSMesa.cmake │ │ │ ├── FindWaylandProtocols.cmake │ │ │ └── FindXKBCommon.cmake │ │ ├── x86_64-w64-mingw32-clang.cmake │ │ └── x86_64-w64-mingw32.cmake │ ├── CMakeLists.txt │ ├── LICENSE.md │ ├── README.md │ ├── cmake_uninstall.cmake.in │ ├── deps │ │ ├── getopt.c │ │ ├── getopt.h │ │ ├── glad │ │ │ ├── gl.h │ │ │ ├── khrplatform.h │ │ │ ├── vk_platform.h │ │ │ └── vulkan.h │ │ ├── glad_gl.c │ │ ├── glad_vulkan.c │ │ ├── linmath.h │ │ ├── mingw │ │ │ ├── _mingw_dxhelper.h │ │ │ ├── dinput.h │ │ │ └── xinput.h │ │ ├── nuklear.h │ │ ├── nuklear_glfw_gl2.h │ │ ├── stb_image_write.h │ │ ├── tinycthread.c │ │ ├── tinycthread.h │ │ └── vs2008 │ │ │ └── stdint.h │ ├── docs │ │ ├── CMakeLists.txt │ │ ├── CODEOWNERS │ │ ├── CONTRIBUTING.md │ │ ├── Doxyfile.in │ │ ├── DoxygenLayout.xml │ │ ├── SUPPORT.md │ │ ├── build.dox │ │ ├── compat.dox │ │ ├── compile.dox │ │ ├── context.dox │ │ ├── extra.css │ │ ├── extra.less │ │ ├── footer.html │ │ ├── header.html │ │ ├── html │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── bug.html │ │ │ ├── build_8dox.html │ │ │ ├── build_guide.html │ │ │ ├── closed.png │ │ │ ├── compat_8dox.html │ │ │ ├── compat_guide.html │ │ │ ├── compile_8dox.html │ │ │ ├── compile_guide.html │ │ │ ├── context_8dox.html │ │ │ ├── context_guide.html │ │ │ ├── deprecated.html │ │ │ ├── dir_15a5176d7c9cc5c407ed4f611edf0684.html │ │ │ ├── dir_a58ef735c5cc5a9a31d321e1abe7c42e.html │ │ │ ├── dir_abae1f34c5d965773b98e3c915cdaeb5.html │ │ │ ├── dir_bc6505cac00d7a6291dbfd9af70666b7.html │ │ │ ├── doc.png │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── dynsections.js │ │ │ ├── extra.css │ │ │ ├── files.html │ │ │ ├── folderclosed.png │ │ │ ├── folderopen.png │ │ │ ├── glfw3_8h.html │ │ │ ├── glfw3_8h_source.html │ │ │ ├── glfw3native_8h.html │ │ │ ├── glfw3native_8h_source.html │ │ │ ├── group__buttons.html │ │ │ ├── group__context.html │ │ │ ├── group__errors.html │ │ │ ├── group__gamepad__axes.html │ │ │ ├── group__gamepad__buttons.html │ │ │ ├── group__hat__state.html │ │ │ ├── group__init.html │ │ │ ├── group__input.html │ │ │ ├── group__joysticks.html │ │ │ ├── group__keys.html │ │ │ ├── group__mods.html │ │ │ ├── group__monitor.html │ │ │ ├── group__native.html │ │ │ ├── group__shapes.html │ │ │ ├── group__vulkan.html │ │ │ ├── group__window.html │ │ │ ├── index.html │ │ │ ├── input_8dox.html │ │ │ ├── input_guide.html │ │ │ ├── internal_8dox.html │ │ │ ├── internals_guide.html │ │ │ ├── intro_8dox.html │ │ │ ├── intro_guide.html │ │ │ ├── jquery.js │ │ │ ├── main_8dox.html │ │ │ ├── menu.js │ │ │ ├── menudata.js │ │ │ ├── modules.html │ │ │ ├── monitor_8dox.html │ │ │ ├── monitor_guide.html │ │ │ ├── moving_8dox.html │ │ │ ├── moving_guide.html │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── news.html │ │ │ ├── news_8dox.html │ │ │ ├── open.png │ │ │ ├── pages.html │ │ │ ├── quick_8dox.html │ │ │ ├── quick_guide.html │ │ │ ├── search │ │ │ │ ├── all_0.html │ │ │ │ ├── all_0.js │ │ │ │ ├── all_1.html │ │ │ │ ├── all_1.js │ │ │ │ ├── all_10.html │ │ │ │ ├── all_10.js │ │ │ │ ├── all_11.html │ │ │ │ ├── all_11.js │ │ │ │ ├── all_2.html │ │ │ │ ├── all_2.js │ │ │ │ ├── all_3.html │ │ │ │ ├── all_3.js │ │ │ │ ├── all_4.html │ │ │ │ ├── all_4.js │ │ │ │ ├── all_5.html │ │ │ │ ├── all_5.js │ │ │ │ ├── all_6.html │ │ │ │ ├── all_6.js │ │ │ │ ├── all_7.html │ │ │ │ ├── all_7.js │ │ │ │ ├── all_8.html │ │ │ │ ├── all_8.js │ │ │ │ ├── all_9.html │ │ │ │ ├── all_9.js │ │ │ │ ├── all_a.html │ │ │ │ ├── all_a.js │ │ │ │ ├── all_b.html │ │ │ │ ├── all_b.js │ │ │ │ ├── all_c.html │ │ │ │ ├── all_c.js │ │ │ │ ├── all_d.html │ │ │ │ ├── all_d.js │ │ │ │ ├── all_e.html │ │ │ │ ├── all_e.js │ │ │ │ ├── all_f.html │ │ │ │ ├── all_f.js │ │ │ │ ├── classes_0.html │ │ │ │ ├── classes_0.js │ │ │ │ ├── close.png │ │ │ │ ├── defines_0.html │ │ │ │ ├── defines_0.js │ │ │ │ ├── files_0.html │ │ │ │ ├── files_0.js │ │ │ │ ├── files_1.html │ │ │ │ ├── files_1.js │ │ │ │ ├── files_2.html │ │ │ │ ├── files_2.js │ │ │ │ ├── files_3.html │ │ │ │ ├── files_3.js │ │ │ │ ├── files_4.html │ │ │ │ ├── files_4.js │ │ │ │ ├── files_5.html │ │ │ │ ├── files_5.js │ │ │ │ ├── files_6.html │ │ │ │ ├── files_6.js │ │ │ │ ├── files_7.html │ │ │ │ ├── files_7.js │ │ │ │ ├── files_8.html │ │ │ │ ├── files_8.js │ │ │ │ ├── functions_0.html │ │ │ │ ├── functions_0.js │ │ │ │ ├── groups_0.html │ │ │ │ ├── groups_0.js │ │ │ │ ├── groups_1.html │ │ │ │ ├── groups_1.js │ │ │ │ ├── groups_2.html │ │ │ │ ├── groups_2.js │ │ │ │ ├── groups_3.html │ │ │ │ ├── groups_3.js │ │ │ │ ├── groups_4.html │ │ │ │ ├── groups_4.js │ │ │ │ ├── groups_5.html │ │ │ │ ├── groups_5.js │ │ │ │ ├── groups_6.html │ │ │ │ ├── groups_6.js │ │ │ │ ├── groups_7.html │ │ │ │ ├── groups_7.js │ │ │ │ ├── groups_8.html │ │ │ │ ├── groups_8.js │ │ │ │ ├── groups_9.html │ │ │ │ ├── groups_9.js │ │ │ │ ├── groups_a.html │ │ │ │ ├── groups_a.js │ │ │ │ ├── mag_sel.png │ │ │ │ ├── nomatches.html │ │ │ │ ├── pages_0.html │ │ │ │ ├── pages_0.js │ │ │ │ ├── pages_1.html │ │ │ │ ├── pages_1.js │ │ │ │ ├── pages_2.html │ │ │ │ ├── pages_2.js │ │ │ │ ├── pages_3.html │ │ │ │ ├── pages_3.js │ │ │ │ ├── pages_4.html │ │ │ │ ├── pages_4.js │ │ │ │ ├── pages_5.html │ │ │ │ ├── pages_5.js │ │ │ │ ├── pages_6.html │ │ │ │ ├── pages_6.js │ │ │ │ ├── pages_7.html │ │ │ │ ├── pages_7.js │ │ │ │ ├── pages_8.html │ │ │ │ ├── pages_8.js │ │ │ │ ├── pages_9.html │ │ │ │ ├── pages_9.js │ │ │ │ ├── pages_a.html │ │ │ │ ├── pages_a.js │ │ │ │ ├── search.css │ │ │ │ ├── search.js │ │ │ │ ├── search_l.png │ │ │ │ ├── search_m.png │ │ │ │ ├── search_r.png │ │ │ │ ├── searchdata.js │ │ │ │ ├── typedefs_0.html │ │ │ │ ├── typedefs_0.js │ │ │ │ ├── variables_0.html │ │ │ │ ├── variables_0.js │ │ │ │ ├── variables_1.html │ │ │ │ ├── variables_1.js │ │ │ │ ├── variables_2.html │ │ │ │ ├── variables_2.js │ │ │ │ ├── variables_3.html │ │ │ │ ├── variables_3.js │ │ │ │ ├── variables_4.html │ │ │ │ ├── variables_4.js │ │ │ │ ├── variables_5.html │ │ │ │ ├── variables_5.js │ │ │ │ ├── variables_6.html │ │ │ │ ├── variables_6.js │ │ │ │ ├── variables_7.html │ │ │ │ └── variables_7.js │ │ │ ├── spaces.svg │ │ │ ├── splitbar.png │ │ │ ├── structGLFWgamepadstate.html │ │ │ ├── structGLFWgammaramp.html │ │ │ ├── structGLFWimage.html │ │ │ ├── structGLFWvidmode.html │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ ├── tabs.css │ │ │ ├── vulkan_8dox.html │ │ │ ├── vulkan_guide.html │ │ │ ├── window_8dox.html │ │ │ └── window_guide.html │ │ ├── input.dox │ │ ├── internal.dox │ │ ├── intro.dox │ │ ├── main.dox │ │ ├── monitor.dox │ │ ├── moving.dox │ │ ├── news.dox │ │ ├── quick.dox │ │ ├── spaces.svg │ │ ├── vulkan.dox │ │ └── window.dox │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── boing.c │ │ ├── gears.c │ │ ├── glfw.icns │ │ ├── glfw.ico │ │ ├── glfw.rc │ │ ├── heightmap.c │ │ ├── offscreen.c │ │ ├── particles.c │ │ ├── sharing.c │ │ ├── simple.c │ │ ├── splitview.c │ │ └── wave.c │ ├── include │ │ └── GLFW │ │ │ ├── glfw3.h │ │ │ └── glfw3native.h │ ├── src │ │ ├── CMakeLists.txt │ │ ├── cocoa_init.m │ │ ├── cocoa_joystick.h │ │ ├── cocoa_joystick.m │ │ ├── cocoa_monitor.m │ │ ├── cocoa_platform.h │ │ ├── cocoa_time.c │ │ ├── cocoa_window.m │ │ ├── context.c │ │ ├── egl_context.c │ │ ├── egl_context.h │ │ ├── glfw3.pc.in │ │ ├── glfw3Config.cmake.in │ │ ├── glfw_config.h.in │ │ ├── glx_context.c │ │ ├── glx_context.h │ │ ├── init.c │ │ ├── input.c │ │ ├── internal.h │ │ ├── linux_joystick.c │ │ ├── linux_joystick.h │ │ ├── mappings.h │ │ ├── mappings.h.in │ │ ├── monitor.c │ │ ├── nsgl_context.h │ │ ├── nsgl_context.m │ │ ├── null_init.c │ │ ├── null_joystick.c │ │ ├── null_joystick.h │ │ ├── null_monitor.c │ │ ├── null_platform.h │ │ ├── null_window.c │ │ ├── osmesa_context.c │ │ ├── osmesa_context.h │ │ ├── posix_thread.c │ │ ├── posix_thread.h │ │ ├── posix_time.c │ │ ├── posix_time.h │ │ ├── vulkan.c │ │ ├── wgl_context.c │ │ ├── wgl_context.h │ │ ├── win32_init.c │ │ ├── win32_joystick.c │ │ ├── win32_joystick.h │ │ ├── win32_monitor.c │ │ ├── win32_platform.h │ │ ├── win32_thread.c │ │ ├── win32_time.c │ │ ├── win32_window.c │ │ ├── window.c │ │ ├── wl_init.c │ │ ├── wl_monitor.c │ │ ├── wl_platform.h │ │ ├── wl_window.c │ │ ├── x11_init.c │ │ ├── x11_monitor.c │ │ ├── x11_platform.h │ │ ├── x11_window.c │ │ ├── xkb_unicode.c │ │ └── xkb_unicode.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── clipboard.c │ │ ├── cursor.c │ │ ├── empty.c │ │ ├── events.c │ │ ├── gamma.c │ │ ├── glfwinfo.c │ │ ├── icon.c │ │ ├── iconify.c │ │ ├── inputlag.c │ │ ├── joysticks.c │ │ ├── monitors.c │ │ ├── msaa.c │ │ ├── opacity.c │ │ ├── reopen.c │ │ ├── tearing.c │ │ ├── threads.c │ │ ├── timeout.c │ │ ├── title.c │ │ ├── triangle-vulkan.c │ │ └── windows.c ├── miniaudio.h └── stb_image.h ├── game_english ├── data │ ├── Arms.pbm │ ├── ArmsImage.pbm │ ├── ArmsItem.tsc │ ├── Bullet.pbm │ ├── Caret.pbm │ ├── Credit.tsc │ ├── Face.pbm │ ├── Fade.pbm │ ├── Font │ │ ├── LICENSE-dejavu.txt │ │ ├── font │ │ ├── font_bitmap_10x20.dat │ │ ├── font_bitmap_10x20.png │ │ ├── font_bitmap_6x12.dat │ │ └── font_bitmap_6x12.png │ ├── Head.tsc │ ├── ItemImage.pbm │ ├── Loading.pbm │ ├── MyChar.pbm │ ├── Npc │ │ ├── Npc0.pbm │ │ ├── NpcAlmo1.pbm │ │ ├── NpcAlmo2.pbm │ │ ├── NpcBallos.pbm │ │ ├── NpcBllg.pbm │ │ ├── NpcCemet.pbm │ │ ├── NpcCent.pbm │ │ ├── NpcCurly.pbm │ │ ├── NpcDark.pbm │ │ ├── NpcDr.pbm │ │ ├── NpcEggs1.pbm │ │ ├── NpcEggs2.pbm │ │ ├── NpcFrog.pbm │ │ ├── NpcGuest.pbm │ │ ├── NpcHell.pbm │ │ ├── NpcHeri.pbm │ │ ├── NpcIronH.pbm │ │ ├── NpcIsland.pbm │ │ ├── NpcKings.pbm │ │ ├── NpcMaze.pbm │ │ ├── NpcMiza.pbm │ │ ├── NpcMoon.pbm │ │ ├── NpcOmg.pbm │ │ ├── NpcPlant.pbm │ │ ├── NpcPress.pbm │ │ ├── NpcPriest.pbm │ │ ├── NpcRavil.pbm │ │ ├── NpcRed.pbm │ │ ├── NpcRegu.pbm │ │ ├── NpcSand.pbm │ │ ├── NpcStream.pbm │ │ ├── NpcSym.pbm │ │ ├── NpcToro.pbm │ │ ├── NpcTwinD.pbm │ │ ├── NpcWeed.pbm │ │ └── NpcX.pbm │ ├── Stage │ │ ├── 0.pxa │ │ ├── 0.pxe │ │ ├── 0.pxm │ │ ├── 0.tsc │ │ ├── 555.pxe │ │ ├── Almond.pxa │ │ ├── Almond.pxe │ │ ├── Almond.pxm │ │ ├── Almond.tsc │ │ ├── Ballo1.pxe │ │ ├── Ballo1.pxm │ │ ├── Ballo1.tsc │ │ ├── Ballo2.pxe │ │ ├── Ballo2.pxm │ │ ├── Ballo2.tsc │ │ ├── Barr.pxa │ │ ├── Barr.pxe │ │ ├── Barr.pxm │ │ ├── Barr.tsc │ │ ├── Blcny1.pxe │ │ ├── Blcny1.pxm │ │ ├── Blcny1.tsc │ │ ├── Blcny2.pxe │ │ ├── Blcny2.pxm │ │ ├── Blcny2.tsc │ │ ├── Cave.pxa │ │ ├── Cave.pxe │ │ ├── Cave.pxm │ │ ├── Cave.tsc │ │ ├── Cemet.pxe │ │ ├── Cemet.pxm │ │ ├── Cemet.tsc │ │ ├── Cent.pxa │ │ ├── Cent.pxe │ │ ├── Cent.pxm │ │ ├── Cent.tsc │ │ ├── CentW.pxe │ │ ├── CentW.pxm │ │ ├── CentW.tsc │ │ ├── Chako.pxe │ │ ├── Chako.pxm │ │ ├── Chako.tsc │ │ ├── Clock.pxe │ │ ├── Clock.pxm │ │ ├── Clock.tsc │ │ ├── Comu.pxe │ │ ├── Comu.pxm │ │ ├── Comu.tsc │ │ ├── Cook.pxm │ │ ├── Cthu.pxe │ │ ├── Cthu.pxm │ │ ├── Cthu.tsc │ │ ├── Cthu2.pxe │ │ ├── Cthu2.pxm │ │ ├── Cthu2.tsc │ │ ├── Curly.pxe │ │ ├── Curly.pxm │ │ ├── Curly.tsc │ │ ├── CurlyS.pxe │ │ ├── CurlyS.pxm │ │ ├── CurlyS.tsc │ │ ├── Dark.pxe │ │ ├── Dark.pxm │ │ ├── Dark.tsc │ │ ├── Drain.pxe │ │ ├── Drain.pxm │ │ ├── Drain.tsc │ │ ├── EgEnd1.pxe │ │ ├── EgEnd1.pxm │ │ ├── EgEnd1.tsc │ │ ├── EgEnd2.pxe │ │ ├── EgEnd2.pxm │ │ ├── EgEnd2.tsc │ │ ├── Egg1.pxe │ │ ├── Egg1.pxm │ │ ├── Egg1.tsc │ │ ├── Egg6.pxe │ │ ├── Egg6.pxm │ │ ├── Egg6.tsc │ │ ├── EggIn.pxa │ │ ├── EggR.pxe │ │ ├── EggR.pxm │ │ ├── EggR.tsc │ │ ├── EggR2.pxe │ │ ├── EggR2.pxm │ │ ├── EggR2.tsc │ │ ├── EggX.pxa │ │ ├── EggX.pxe │ │ ├── EggX.pxm │ │ ├── EggX.tsc │ │ ├── EggX2.pxe │ │ ├── EggX2.pxm │ │ ├── EggX2.tsc │ │ ├── Eggs.pxa │ │ ├── Eggs.pxe │ │ ├── Eggs.pxm │ │ ├── Eggs.tsc │ │ ├── Eggs2.pxe │ │ ├── Eggs2.pxm │ │ ├── Eggs2.tsc │ │ ├── Fall.pxa │ │ ├── Fall.pxe │ │ ├── Fall.pxm │ │ ├── Fall.tsc │ │ ├── Frog.pxe │ │ ├── Frog.pxm │ │ ├── Frog.tsc │ │ ├── Gard.pxa │ │ ├── Gard.pxe │ │ ├── Gard.pxm │ │ ├── Gard.tsc │ │ ├── Hell.pxa │ │ ├── Hell1.pxe │ │ ├── Hell1.pxm │ │ ├── Hell1.tsc │ │ ├── Hell2.pxe │ │ ├── Hell2.pxm │ │ ├── Hell2.tsc │ │ ├── Hell3.pxe │ │ ├── Hell3.pxm │ │ ├── Hell3.tsc │ │ ├── Hell4.pxe │ │ ├── Hell4.pxm │ │ ├── Hell4.tsc │ │ ├── Hell42.pxe │ │ ├── Hell42.pxm │ │ ├── Hell42.tsc │ │ ├── Island.pxe │ │ ├── Island.pxm │ │ ├── Island.tsc │ │ ├── Itoh.pxe │ │ ├── Itoh.pxm │ │ ├── Itoh.tsc │ │ ├── Jail.pxa │ │ ├── Jail1.pxe │ │ ├── Jail1.pxm │ │ ├── Jail1.tsc │ │ ├── Jail2.pxe │ │ ├── Jail2.pxm │ │ ├── Jail2.tsc │ │ ├── Jenka1.pxe │ │ ├── Jenka1.pxm │ │ ├── Jenka1.tsc │ │ ├── Jenka2.pxe │ │ ├── Jenka2.pxm │ │ ├── Jenka2.tsc │ │ ├── Kings.pxe │ │ ├── Kings.pxm │ │ ├── Kings.tsc │ │ ├── Labo.pxa │ │ ├── Little.pxe │ │ ├── Little.pxm │ │ ├── Little.tsc │ │ ├── Lounge.pxe │ │ ├── Lounge.pxm │ │ ├── Lounge.tsc │ │ ├── Malco.pxe │ │ ├── Malco.pxm │ │ ├── Malco.tsc │ │ ├── Mapi.pxe │ │ ├── Mapi.pxm │ │ ├── Mapi.tsc │ │ ├── Maze.pxa │ │ ├── MazeA.pxe │ │ ├── MazeA.pxm │ │ ├── MazeA.tsc │ │ ├── MazeB.pxe │ │ ├── MazeB.pxm │ │ ├── MazeB.tsc │ │ ├── MazeD.pxe │ │ ├── MazeD.pxm │ │ ├── MazeD.tsc │ │ ├── MazeH.pxe │ │ ├── MazeH.pxm │ │ ├── MazeH.tsc │ │ ├── MazeI.pxe │ │ ├── MazeI.pxm │ │ ├── MazeI.tsc │ │ ├── MazeM.pxe │ │ ├── MazeM.pxm │ │ ├── MazeM.tsc │ │ ├── MazeO.pxe │ │ ├── MazeO.pxm │ │ ├── MazeO.tsc │ │ ├── MazeS.pxe │ │ ├── MazeS.pxm │ │ ├── MazeS.tsc │ │ ├── MazeW.pxe │ │ ├── MazeW.pxm │ │ ├── MazeW.tsc │ │ ├── MiBox.pxe │ │ ├── MiBox.pxm │ │ ├── MiBox.tsc │ │ ├── Mimi.pxa │ │ ├── Mimi.pxe │ │ ├── Mimi.pxm │ │ ├── Mimi.tsc │ │ ├── Momo.pxe │ │ ├── Momo.pxm │ │ ├── Momo.tsc │ │ ├── New.pxe │ │ ├── Oside.pxa │ │ ├── Oside.pxe │ │ ├── Oside.pxm │ │ ├── Oside.tsc │ │ ├── Ostep.pxe │ │ ├── Ostep.pxm │ │ ├── Ostep.tsc │ │ ├── Pens.pxa │ │ ├── Pens1.pxe │ │ ├── Pens1.pxm │ │ ├── Pens1.tsc │ │ ├── Pens2.pxe │ │ ├── Pens2.pxm │ │ ├── Pens2.tsc │ │ ├── Pixel.pxe │ │ ├── Pixel.pxm │ │ ├── Pixel.tsc │ │ ├── Plant.pxe │ │ ├── Plant.pxm │ │ ├── Plant.tsc │ │ ├── Pole.pxe │ │ ├── Pole.pxm │ │ ├── Pole.tsc │ │ ├── Pool.pxe │ │ ├── Pool.pxm │ │ ├── Pool.tsc │ │ ├── Prefa1.pxe │ │ ├── Prefa1.pxm │ │ ├── Prefa1.tsc │ │ ├── Prefa2.pxe │ │ ├── Prefa2.pxm │ │ ├── Prefa2.tsc │ │ ├── Priso1.pxe │ │ ├── Priso1.pxm │ │ ├── Priso1.tsc │ │ ├── Priso2.pxe │ │ ├── Priso2.pxm │ │ ├── Priso2.tsc │ │ ├── Prt0.pbm │ │ ├── PrtAlmond.pbm │ │ ├── PrtBarr.pbm │ │ ├── PrtCave.pbm │ │ ├── PrtCent.pbm │ │ ├── PrtEggIn.pbm │ │ ├── PrtEggX.pbm │ │ ├── PrtEggs.pbm │ │ ├── PrtFall.pbm │ │ ├── PrtGard.pbm │ │ ├── PrtHell.pbm │ │ ├── PrtJail.pbm │ │ ├── PrtLabo.pbm │ │ ├── PrtMaze.pbm │ │ ├── PrtMimi.pbm │ │ ├── PrtOside.pbm │ │ ├── PrtPens.pbm │ │ ├── PrtRiver.pbm │ │ ├── PrtSand.pbm │ │ ├── PrtStore.pbm │ │ ├── PrtWeed.pbm │ │ ├── PrtWhite.pbm │ │ ├── Ring1.pxe │ │ ├── Ring1.pxm │ │ ├── Ring1.tsc │ │ ├── Ring2.pxe │ │ ├── Ring2.pxm │ │ ├── Ring2.tsc │ │ ├── Ring3.pxe │ │ ├── Ring3.pxm │ │ ├── Ring3.tsc │ │ ├── River.pxa │ │ ├── River.pxe │ │ ├── River.pxm │ │ ├── River.tsc │ │ ├── Sand.pxa │ │ ├── Sand.pxe │ │ ├── Sand.pxm │ │ ├── Sand.tsc │ │ ├── SandE.pxe │ │ ├── SandE.pxm │ │ ├── SandE.tsc │ │ ├── Santa.pxe │ │ ├── Santa.pxm │ │ ├── Santa.tsc │ │ ├── Shelt.pxa │ │ ├── Shelt.pxe │ │ ├── Shelt.pxm │ │ ├── Shelt.tsc │ │ ├── Start.pxe │ │ ├── Start.pxm │ │ ├── Start.tsc │ │ ├── Statue.pxe │ │ ├── Statue.pxm │ │ ├── Statue.tsc │ │ ├── Store.pxa │ │ ├── Stream.pxe │ │ ├── Stream.pxm │ │ ├── Stream.tsc │ │ ├── Weed.pxa │ │ ├── Weed.pxe │ │ ├── Weed.pxm │ │ ├── Weed.tsc │ │ ├── WeedB.pxe │ │ ├── WeedB.pxm │ │ ├── WeedB.tsc │ │ ├── WeedD.pxe │ │ ├── WeedD.pxm │ │ ├── WeedD.tsc │ │ ├── WeedS.pxe │ │ ├── WeedS.pxm │ │ ├── WeedS.tsc │ │ ├── White.pxa │ │ ├── e_Blcn.pxe │ │ ├── e_Blcn.pxm │ │ ├── e_Blcn.tsc │ │ ├── e_Ceme.pxe │ │ ├── e_Ceme.pxm │ │ ├── e_Ceme.tsc │ │ ├── e_Jenk.pxe │ │ ├── e_Jenk.pxm │ │ ├── e_Jenk.tsc │ │ ├── e_Labo.pxe │ │ ├── e_Labo.pxm │ │ ├── e_Labo.tsc │ │ ├── e_Malc.pxe │ │ ├── e_Malc.pxm │ │ ├── e_Malc.tsc │ │ ├── e_Maze.pxe │ │ ├── e_Maze.pxm │ │ ├── e_Maze.tsc │ │ ├── e_Sky.pxe │ │ ├── e_Sky.pxm │ │ └── e_Sky.tsc │ ├── StageImage.pbm │ ├── StageSelect.tsc │ ├── TextBox.pbm │ ├── Title.pbm │ ├── bk0.pbm │ ├── bkBlack.pbm │ ├── bkBlue.pbm │ ├── bkFall.pbm │ ├── bkFog.pbm │ ├── bkGard.pbm │ ├── bkGray.pbm │ ├── bkGreen.pbm │ ├── bkMaze.pbm │ ├── bkMoon.pbm │ ├── bkRed.pbm │ ├── bkWater.pbm │ ├── casts.pbm │ └── npc.tbl └── licence.txt ├── game_japanese ├── data │ ├── Arms.pbm │ ├── ArmsImage.pbm │ ├── ArmsItem.tsc │ ├── Bullet.pbm │ ├── Caret.pbm │ ├── Credit.tsc │ ├── Face.pbm │ ├── Fade.pbm │ ├── Font │ │ ├── LICENSE-Migu1M.txt │ │ ├── font │ │ ├── font_bitmap_10x20.dat │ │ ├── font_bitmap_10x20.png │ │ ├── font_bitmap_6x12.dat │ │ └── font_bitmap_6x12.png │ ├── Head.tsc │ ├── ItemImage.pbm │ ├── Loading.pbm │ ├── MyChar.pbm │ ├── Npc │ │ ├── Npc0.pbm │ │ ├── NpcAlmo1.pbm │ │ ├── NpcAlmo2.pbm │ │ ├── NpcBallos.pbm │ │ ├── NpcBllg.pbm │ │ ├── NpcCemet.pbm │ │ ├── NpcCent.pbm │ │ ├── NpcCurly.pbm │ │ ├── NpcDark.pbm │ │ ├── NpcDr.pbm │ │ ├── NpcEggs1.pbm │ │ ├── NpcEggs2.pbm │ │ ├── NpcFrog.pbm │ │ ├── NpcGuest.pbm │ │ ├── NpcHell.pbm │ │ ├── NpcHeri.pbm │ │ ├── NpcIronH.pbm │ │ ├── NpcIsland.pbm │ │ ├── NpcKings.pbm │ │ ├── NpcMaze.pbm │ │ ├── NpcMiza.pbm │ │ ├── NpcMoon.pbm │ │ ├── NpcOmg.pbm │ │ ├── NpcPlant.pbm │ │ ├── NpcPress.pbm │ │ ├── NpcPriest.pbm │ │ ├── NpcRavil.pbm │ │ ├── NpcRed.pbm │ │ ├── NpcRegu.pbm │ │ ├── NpcSand.pbm │ │ ├── NpcStream.pbm │ │ ├── NpcSym.pbm │ │ ├── NpcToro.pbm │ │ ├── NpcTwinD.pbm │ │ ├── NpcWeed.pbm │ │ └── NpcX.pbm │ ├── Stage │ │ ├── 0.pxa │ │ ├── 0.pxe │ │ ├── 0.pxm │ │ ├── 0.tsc │ │ ├── 555.pxe │ │ ├── Almond.pxa │ │ ├── Almond.pxe │ │ ├── Almond.pxm │ │ ├── Almond.tsc │ │ ├── Ballo1.pxe │ │ ├── Ballo1.pxm │ │ ├── Ballo1.tsc │ │ ├── Ballo2.pxe │ │ ├── Ballo2.pxm │ │ ├── Ballo2.tsc │ │ ├── Barr.pxa │ │ ├── Barr.pxe │ │ ├── Barr.pxm │ │ ├── Barr.tsc │ │ ├── Blcny1.pxe │ │ ├── Blcny1.pxm │ │ ├── Blcny1.tsc │ │ ├── Blcny2.pxe │ │ ├── Blcny2.pxm │ │ ├── Blcny2.tsc │ │ ├── Cave.pxa │ │ ├── Cave.pxe │ │ ├── Cave.pxm │ │ ├── Cave.tsc │ │ ├── Cemet.pxe │ │ ├── Cemet.pxm │ │ ├── Cemet.tsc │ │ ├── Cent.pxa │ │ ├── Cent.pxe │ │ ├── Cent.pxm │ │ ├── Cent.tsc │ │ ├── CentW.pxe │ │ ├── CentW.pxm │ │ ├── CentW.tsc │ │ ├── Chako.pxe │ │ ├── Chako.pxm │ │ ├── Chako.tsc │ │ ├── Clock.pxe │ │ ├── Clock.pxm │ │ ├── Clock.tsc │ │ ├── Comu.pxe │ │ ├── Comu.pxm │ │ ├── Comu.tsc │ │ ├── Cook.pxm │ │ ├── Cthu.pxe │ │ ├── Cthu.pxm │ │ ├── Cthu.tsc │ │ ├── Cthu2.pxe │ │ ├── Cthu2.pxm │ │ ├── Cthu2.tsc │ │ ├── Curly.pxe │ │ ├── Curly.pxm │ │ ├── Curly.tsc │ │ ├── CurlyS.pxe │ │ ├── CurlyS.pxm │ │ ├── CurlyS.tsc │ │ ├── Dark.pxe │ │ ├── Dark.pxm │ │ ├── Dark.tsc │ │ ├── Drain.pxe │ │ ├── Drain.pxm │ │ ├── Drain.tsc │ │ ├── EgEnd1.pxe │ │ ├── EgEnd1.pxm │ │ ├── EgEnd1.tsc │ │ ├── EgEnd2.pxe │ │ ├── EgEnd2.pxm │ │ ├── EgEnd2.tsc │ │ ├── Egg1.pxe │ │ ├── Egg1.pxm │ │ ├── Egg1.tsc │ │ ├── Egg6.pxe │ │ ├── Egg6.pxm │ │ ├── Egg6.tsc │ │ ├── EggIn.pxa │ │ ├── EggR.pxe │ │ ├── EggR.pxm │ │ ├── EggR.tsc │ │ ├── EggR2.pxe │ │ ├── EggR2.pxm │ │ ├── EggR2.tsc │ │ ├── EggX.pxa │ │ ├── EggX.pxe │ │ ├── EggX.pxm │ │ ├── EggX.tsc │ │ ├── EggX2.pxe │ │ ├── EggX2.pxm │ │ ├── EggX2.tsc │ │ ├── Eggs.pxa │ │ ├── Eggs.pxe │ │ ├── Eggs.pxm │ │ ├── Eggs.tsc │ │ ├── Eggs2.pxe │ │ ├── Eggs2.pxm │ │ ├── Eggs2.tsc │ │ ├── Fall.pxa │ │ ├── Fall.pxe │ │ ├── Fall.pxm │ │ ├── Fall.tsc │ │ ├── Frog.pxe │ │ ├── Frog.pxm │ │ ├── Frog.tsc │ │ ├── Gard.pxa │ │ ├── Gard.pxe │ │ ├── Gard.pxm │ │ ├── Gard.tsc │ │ ├── Hell.pxa │ │ ├── Hell1.pxe │ │ ├── Hell1.pxm │ │ ├── Hell1.tsc │ │ ├── Hell2.pxe │ │ ├── Hell2.pxm │ │ ├── Hell2.tsc │ │ ├── Hell3.pxe │ │ ├── Hell3.pxm │ │ ├── Hell3.tsc │ │ ├── Hell4.pxe │ │ ├── Hell4.pxm │ │ ├── Hell4.tsc │ │ ├── Hell42.pxe │ │ ├── Hell42.pxm │ │ ├── Hell42.tsc │ │ ├── Island.pxe │ │ ├── Island.pxm │ │ ├── Island.tsc │ │ ├── Itoh.pxe │ │ ├── Itoh.pxm │ │ ├── Itoh.tsc │ │ ├── Jail.pxa │ │ ├── Jail1.pxe │ │ ├── Jail1.pxm │ │ ├── Jail1.tsc │ │ ├── Jail2.pxe │ │ ├── Jail2.pxm │ │ ├── Jail2.tsc │ │ ├── Jenka1.pxe │ │ ├── Jenka1.pxm │ │ ├── Jenka1.tsc │ │ ├── Jenka2.pxe │ │ ├── Jenka2.pxm │ │ ├── Jenka2.tsc │ │ ├── Kings.pxe │ │ ├── Kings.pxm │ │ ├── Kings.tsc │ │ ├── Labo.pxa │ │ ├── Little.pxe │ │ ├── Little.pxm │ │ ├── Little.tsc │ │ ├── Lounge.pxe │ │ ├── Lounge.pxm │ │ ├── Lounge.tsc │ │ ├── Malco.pxe │ │ ├── Malco.pxm │ │ ├── Malco.tsc │ │ ├── Mapi.pxe │ │ ├── Mapi.pxm │ │ ├── Mapi.tsc │ │ ├── Maze.pxa │ │ ├── MazeA.pxe │ │ ├── MazeA.pxm │ │ ├── MazeA.tsc │ │ ├── MazeB.pxe │ │ ├── MazeB.pxm │ │ ├── MazeB.tsc │ │ ├── MazeD.pxe │ │ ├── MazeD.pxm │ │ ├── MazeD.tsc │ │ ├── MazeH.pxe │ │ ├── MazeH.pxm │ │ ├── MazeH.tsc │ │ ├── MazeI.pxe │ │ ├── MazeI.pxm │ │ ├── MazeI.tsc │ │ ├── MazeM.pxe │ │ ├── MazeM.pxm │ │ ├── MazeM.tsc │ │ ├── MazeO.pxe │ │ ├── MazeO.pxm │ │ ├── MazeO.tsc │ │ ├── MazeS.pxe │ │ ├── MazeS.pxm │ │ ├── MazeS.tsc │ │ ├── MazeW.pxe │ │ ├── MazeW.pxm │ │ ├── MazeW.tsc │ │ ├── MiBox.pxe │ │ ├── MiBox.pxm │ │ ├── MiBox.tsc │ │ ├── Mimi.pxa │ │ ├── Mimi.pxe │ │ ├── Mimi.pxm │ │ ├── Mimi.tsc │ │ ├── Momo.pxe │ │ ├── Momo.pxm │ │ ├── Momo.tsc │ │ ├── New.pxe │ │ ├── Oside.pxa │ │ ├── Oside.pxe │ │ ├── Oside.pxm │ │ ├── Oside.tsc │ │ ├── Ostep.pxe │ │ ├── Ostep.pxm │ │ ├── Ostep.tsc │ │ ├── Pens.pxa │ │ ├── Pens1.pxe │ │ ├── Pens1.pxm │ │ ├── Pens1.tsc │ │ ├── Pens2.pxe │ │ ├── Pens2.pxm │ │ ├── Pens2.tsc │ │ ├── Pixel.pxe │ │ ├── Pixel.pxm │ │ ├── Pixel.tsc │ │ ├── Plant.pxe │ │ ├── Plant.pxm │ │ ├── Plant.tsc │ │ ├── Pole.pxe │ │ ├── Pole.pxm │ │ ├── Pole.tsc │ │ ├── Pool.pxe │ │ ├── Pool.pxm │ │ ├── Pool.tsc │ │ ├── Prefa1.pxe │ │ ├── Prefa1.pxm │ │ ├── Prefa1.tsc │ │ ├── Prefa2.pxe │ │ ├── Prefa2.pxm │ │ ├── Prefa2.tsc │ │ ├── Priso1.pxe │ │ ├── Priso1.pxm │ │ ├── Priso1.tsc │ │ ├── Priso2.pxe │ │ ├── Priso2.pxm │ │ ├── Priso2.tsc │ │ ├── Prt0.pbm │ │ ├── PrtAlmond.pbm │ │ ├── PrtBarr.pbm │ │ ├── PrtCave.pbm │ │ ├── PrtCent.pbm │ │ ├── PrtEggIn.pbm │ │ ├── PrtEggX.pbm │ │ ├── PrtEggs.pbm │ │ ├── PrtFall.pbm │ │ ├── PrtGard.pbm │ │ ├── PrtHell.pbm │ │ ├── PrtJail.pbm │ │ ├── PrtLabo.pbm │ │ ├── PrtMaze.pbm │ │ ├── PrtMimi.pbm │ │ ├── PrtOside.pbm │ │ ├── PrtPens.pbm │ │ ├── PrtRiver.pbm │ │ ├── PrtSand.pbm │ │ ├── PrtStore.pbm │ │ ├── PrtWeed.pbm │ │ ├── PrtWhite.pbm │ │ ├── Ring1.pxe │ │ ├── Ring1.pxm │ │ ├── Ring1.tsc │ │ ├── Ring2.pxe │ │ ├── Ring2.pxm │ │ ├── Ring2.tsc │ │ ├── Ring3.pxe │ │ ├── Ring3.pxm │ │ ├── Ring3.tsc │ │ ├── River.pxa │ │ ├── River.pxe │ │ ├── River.pxm │ │ ├── River.tsc │ │ ├── Sand.pxa │ │ ├── Sand.pxe │ │ ├── Sand.pxm │ │ ├── Sand.tsc │ │ ├── SandE.pxe │ │ ├── SandE.pxm │ │ ├── SandE.tsc │ │ ├── Santa.pxe │ │ ├── Santa.pxm │ │ ├── Santa.tsc │ │ ├── Shelt.pxa │ │ ├── Shelt.pxe │ │ ├── Shelt.pxm │ │ ├── Shelt.tsc │ │ ├── Start.pxe │ │ ├── Start.pxm │ │ ├── Start.tsc │ │ ├── Statue.pxe │ │ ├── Statue.pxm │ │ ├── Statue.tsc │ │ ├── Store.pxa │ │ ├── Stream.pxe │ │ ├── Stream.pxm │ │ ├── Stream.tsc │ │ ├── Weed.pxa │ │ ├── Weed.pxe │ │ ├── Weed.pxm │ │ ├── Weed.tsc │ │ ├── WeedB.pxe │ │ ├── WeedB.pxm │ │ ├── WeedB.tsc │ │ ├── WeedD.pxe │ │ ├── WeedD.pxm │ │ ├── WeedD.tsc │ │ ├── WeedS.pxe │ │ ├── WeedS.pxm │ │ ├── WeedS.tsc │ │ ├── White.pxa │ │ ├── e_Blcn.pxe │ │ ├── e_Blcn.pxm │ │ ├── e_Blcn.tsc │ │ ├── e_Ceme.pxe │ │ ├── e_Ceme.pxm │ │ ├── e_Ceme.tsc │ │ ├── e_Jenk.pxe │ │ ├── e_Jenk.pxm │ │ ├── e_Jenk.tsc │ │ ├── e_Labo.pxe │ │ ├── e_Labo.pxm │ │ ├── e_Labo.tsc │ │ ├── e_Malc.pxe │ │ ├── e_Malc.pxm │ │ ├── e_Malc.tsc │ │ ├── e_Maze.pxe │ │ ├── e_Maze.pxm │ │ ├── e_Maze.tsc │ │ ├── e_Sky.pxe │ │ ├── e_Sky.pxm │ │ └── e_Sky.tsc │ ├── StageImage.pbm │ ├── StageSelect.tsc │ ├── TextBox.pbm │ ├── Title.pbm │ ├── bk0.pbm │ ├── bkBlack.pbm │ ├── bkBlue.pbm │ ├── bkFall.pbm │ ├── bkFog.pbm │ ├── bkGard.pbm │ ├── bkGray.pbm │ ├── bkGreen.pbm │ ├── bkMaze.pbm │ ├── bkMoon.pbm │ ├── bkRed.pbm │ ├── bkWater.pbm │ ├── casts.pbm │ └── npc.tbl └── licence.txt ├── screenshot.png └── src ├── ArmsItem.cpp ├── ArmsItem.h ├── Attributes.h ├── Back.cpp ├── Back.h ├── Backends ├── Audio.h ├── Audio │ ├── 3DS.cpp │ ├── Null.cpp │ ├── SoftwareMixer.cpp │ ├── SoftwareMixer │ │ ├── 3DS.cpp │ │ ├── Backend.h │ │ ├── Mixer.cpp │ │ ├── Mixer.h │ │ ├── SDL1.cpp │ │ ├── SDL2.cpp │ │ ├── WiiU.cpp │ │ └── miniaudio.cpp │ └── WiiU.cpp ├── Controller.h ├── Controller │ ├── GLFW3.cpp │ ├── Null.cpp │ └── SDL.cpp ├── Misc.h ├── Platform │ ├── 3DS.cpp │ ├── GLFW3.cpp │ ├── Null.cpp │ ├── SDL1.cpp │ ├── SDL2.cpp │ └── WiiU.cpp ├── Rendering.h ├── Rendering │ ├── 3DS.cpp │ ├── OpenGL3.cpp │ ├── OpenGLES2.cpp │ ├── SDLSurface.cpp │ ├── SDLTexture.cpp │ ├── Software.cpp │ ├── WiiU.cpp │ ├── WiiUShaders │ │ ├── colour_fill.gsh.h │ │ ├── glyph.gsh.h │ │ ├── shader sources │ │ │ ├── colour_fill.frag │ │ │ ├── colour_fill.gsh │ │ │ ├── colour_fill.psh │ │ │ ├── glyph.frag │ │ │ ├── glyph.gsh │ │ │ ├── glyph.psh │ │ │ ├── plain.vert │ │ │ ├── plain.vsh │ │ │ ├── texture.frag │ │ │ ├── texture.gsh │ │ │ ├── texture.psh │ │ │ ├── texture.vert │ │ │ ├── texture.vsh │ │ │ ├── texture_colour_key.frag │ │ │ ├── texture_colour_key.gsh │ │ │ ├── texture_colour_key.psh │ │ │ └── wtf is this.txt │ │ ├── texture.gsh.h │ │ └── texture_colour_key.gsh.h │ └── Window │ │ ├── OpenGL.h │ │ ├── OpenGL3 │ │ ├── GLFW3.cpp │ │ ├── SDL1.cpp │ │ └── SDL2.cpp │ │ ├── OpenGLES2 │ │ ├── GLFW3.cpp │ │ └── SDL2.cpp │ │ ├── Software.h │ │ └── Software │ │ ├── 3DS.cpp │ │ ├── GLFW3.cpp │ │ ├── Null.cpp │ │ ├── SDL1.cpp │ │ ├── SDL2.cpp │ │ └── WiiU.cpp └── Shared │ ├── GLFW3.h │ └── SDL.h ├── Bitmap.cpp ├── Bitmap.h ├── Boss.cpp ├── Boss.h ├── BossAlmo1.cpp ├── BossAlmo1.h ├── BossAlmo2.cpp ├── BossAlmo2.h ├── BossBallos.cpp ├── BossBallos.h ├── BossFrog.cpp ├── BossFrog.h ├── BossIronH.cpp ├── BossIronH.h ├── BossLife.cpp ├── BossLife.h ├── BossOhm.cpp ├── BossOhm.h ├── BossPress.cpp ├── BossPress.h ├── BossTwinD.cpp ├── BossTwinD.h ├── BossX.cpp ├── BossX.h ├── Bug Fixes.txt ├── BulHit.cpp ├── BulHit.h ├── Bullet.cpp ├── Bullet.h ├── Caret.cpp ├── Caret.h ├── CommonDefines.h ├── Config.cpp ├── Config.h ├── Draw.cpp ├── Draw.h ├── Ending.cpp ├── Ending.h ├── Escape.cpp ├── Escape.h ├── Fade.cpp ├── Fade.h ├── File.cpp ├── File.h ├── Flags.cpp ├── Flags.h ├── Flash.cpp ├── Flash.h ├── Font.cpp ├── Font.h ├── Frame.cpp ├── Frame.h ├── Game.cpp ├── Game.h ├── Generic.cpp ├── Generic.h ├── GenericLoad.cpp ├── GenericLoad.h ├── Input.cpp ├── Input.h ├── KeyControl.cpp ├── KeyControl.h ├── Main.cpp ├── Main.h ├── Map.cpp ├── Map.h ├── MapName.cpp ├── MapName.h ├── MiniMap.cpp ├── MiniMap.h ├── MyChar.cpp ├── MyChar.h ├── MycHit.cpp ├── MycHit.h ├── MycParam.cpp ├── MycParam.h ├── NpChar.cpp ├── NpChar.h ├── NpcAct.h ├── NpcAct000.cpp ├── NpcAct020.cpp ├── NpcAct040.cpp ├── NpcAct060.cpp ├── NpcAct080.cpp ├── NpcAct100.cpp ├── NpcAct120.cpp ├── NpcAct140.cpp ├── NpcAct160.cpp ├── NpcAct180.cpp ├── NpcAct200.cpp ├── NpcAct220.cpp ├── NpcAct240.cpp ├── NpcAct260.cpp ├── NpcAct280.cpp ├── NpcAct300.cpp ├── NpcAct320.cpp ├── NpcAct340.cpp ├── NpcHit.cpp ├── NpcHit.h ├── NpcTbl.cpp ├── NpcTbl.h ├── Organya.cpp ├── Organya.h ├── PixTone.cpp ├── PixTone.h ├── Profile.cpp ├── Profile.h ├── Random.cpp ├── Random.h ├── Resource.cpp ├── Resource.h ├── SelStage.cpp ├── SelStage.h ├── Shoot.cpp ├── Shoot.h ├── Sound.cpp ├── Sound.h ├── Stage.cpp ├── Stage.h ├── Star.cpp ├── Star.h ├── Tags.h ├── TextScr.cpp ├── TextScr.h ├── Triangle.cpp ├── Triangle.h ├── ValueView.cpp ├── ValueView.h └── WindowsWrapper.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /DoConfig/1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/DoConfig/1.ico -------------------------------------------------------------------------------- /DoConfig/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/DoConfig/CMakeLists.txt -------------------------------------------------------------------------------- /DoConfig/DoConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/DoConfig/DoConfig.cpp -------------------------------------------------------------------------------- /DoConfig/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/DoConfig/icon.rc -------------------------------------------------------------------------------- /DoConfig/imgui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/DoConfig/imgui/LICENSE.txt -------------------------------------------------------------------------------- /DoConfig/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/DoConfig/imgui/imconfig.h -------------------------------------------------------------------------------- /DoConfig/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/DoConfig/imgui/imgui.cpp -------------------------------------------------------------------------------- /DoConfig/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/DoConfig/imgui/imgui.h -------------------------------------------------------------------------------- /DoConfig/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/DoConfig/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /DoConfig/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/DoConfig/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /DoConfig/imgui/imgui_impl_glfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/DoConfig/imgui/imgui_impl_glfw.h -------------------------------------------------------------------------------- /DoConfig/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/DoConfig/imgui/imgui_internal.h -------------------------------------------------------------------------------- /DoConfig/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/DoConfig/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /DoConfig/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/DoConfig/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /DoConfig/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/DoConfig/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /DoConfig/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/DoConfig/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /PHILOSOPHY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/PHILOSOPHY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/README.md -------------------------------------------------------------------------------- /assets/resources/BITMAP/pixel.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/BITMAP/pixel.bmp -------------------------------------------------------------------------------- /assets/resources/CSE2.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/CSE2.manifest -------------------------------------------------------------------------------- /assets/resources/CSE2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/CSE2.rc -------------------------------------------------------------------------------- /assets/resources/ORG/Access.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Access.org -------------------------------------------------------------------------------- /assets/resources/ORG/Anzen.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Anzen.org -------------------------------------------------------------------------------- /assets/resources/ORG/Balcony.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Balcony.org -------------------------------------------------------------------------------- /assets/resources/ORG/Ballos.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Ballos.org -------------------------------------------------------------------------------- /assets/resources/ORG/Cemetery.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Cemetery.org -------------------------------------------------------------------------------- /assets/resources/ORG/Curly.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Curly.org -------------------------------------------------------------------------------- /assets/resources/ORG/Dr.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Dr.org -------------------------------------------------------------------------------- /assets/resources/ORG/Ending.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Ending.org -------------------------------------------------------------------------------- /assets/resources/ORG/Escape.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Escape.org -------------------------------------------------------------------------------- /assets/resources/ORG/Fanfale1.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Fanfale1.org -------------------------------------------------------------------------------- /assets/resources/ORG/Fanfale2.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Fanfale2.org -------------------------------------------------------------------------------- /assets/resources/ORG/Fanfale3.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Fanfale3.org -------------------------------------------------------------------------------- /assets/resources/ORG/FireEye.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/FireEye.org -------------------------------------------------------------------------------- /assets/resources/ORG/Gameover.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Gameover.org -------------------------------------------------------------------------------- /assets/resources/ORG/Ginsuke.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Ginsuke.org -------------------------------------------------------------------------------- /assets/resources/ORG/Grand.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Grand.org -------------------------------------------------------------------------------- /assets/resources/ORG/Gravity.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Gravity.org -------------------------------------------------------------------------------- /assets/resources/ORG/Hell.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Hell.org -------------------------------------------------------------------------------- /assets/resources/ORG/Jenka.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Jenka.org -------------------------------------------------------------------------------- /assets/resources/ORG/Jenka2.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Jenka2.org -------------------------------------------------------------------------------- /assets/resources/ORG/Kodou.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Kodou.org -------------------------------------------------------------------------------- /assets/resources/ORG/LastBtl.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/LastBtl.org -------------------------------------------------------------------------------- /assets/resources/ORG/LastBtl3.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/LastBtl3.org -------------------------------------------------------------------------------- /assets/resources/ORG/LastCave.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/LastCave.org -------------------------------------------------------------------------------- /assets/resources/ORG/MDown2.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/MDown2.org -------------------------------------------------------------------------------- /assets/resources/ORG/Marine.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Marine.org -------------------------------------------------------------------------------- /assets/resources/ORG/Maze.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Maze.org -------------------------------------------------------------------------------- /assets/resources/ORG/Mura.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Mura.org -------------------------------------------------------------------------------- /assets/resources/ORG/Oside.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Oside.org -------------------------------------------------------------------------------- /assets/resources/ORG/Plant.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Plant.org -------------------------------------------------------------------------------- /assets/resources/ORG/Requiem.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Requiem.org -------------------------------------------------------------------------------- /assets/resources/ORG/Toroko.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Toroko.org -------------------------------------------------------------------------------- /assets/resources/ORG/Vivi.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Vivi.org -------------------------------------------------------------------------------- /assets/resources/ORG/Wanpak2.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Wanpak2.org -------------------------------------------------------------------------------- /assets/resources/ORG/Wanpaku.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Wanpaku.org -------------------------------------------------------------------------------- /assets/resources/ORG/Weed.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Weed.org -------------------------------------------------------------------------------- /assets/resources/ORG/White.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/White.org -------------------------------------------------------------------------------- /assets/resources/ORG/XXXX.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/XXXX.org -------------------------------------------------------------------------------- /assets/resources/ORG/Zonbie.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/Zonbie.org -------------------------------------------------------------------------------- /assets/resources/ORG/ironH.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/ironH.org -------------------------------------------------------------------------------- /assets/resources/ORG/quiet.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/ORG/quiet.org -------------------------------------------------------------------------------- /assets/resources/WAVE/Wave.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/WAVE/Wave.dat -------------------------------------------------------------------------------- /assets/resources/afxres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/afxres.h -------------------------------------------------------------------------------- /assets/resources/resource1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/resources/resource1.h -------------------------------------------------------------------------------- /assets/riscos/!Boot,feb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/riscos/!Boot,feb -------------------------------------------------------------------------------- /assets/riscos/!Run,feb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/riscos/!Run,feb -------------------------------------------------------------------------------- /assets/riscos/!Sprites,ff9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/assets/riscos/!Sprites,ff9 -------------------------------------------------------------------------------- /bin2h/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/bin2h/CMakeLists.txt -------------------------------------------------------------------------------- /bin2h/bin2h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/bin2h/bin2h.c -------------------------------------------------------------------------------- /cmake/FindOpenGLES2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/cmake/FindOpenGLES2.cmake -------------------------------------------------------------------------------- /cmake/RISCOSApp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/cmake/RISCOSApp.cmake -------------------------------------------------------------------------------- /external/SDL2/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/Android.mk -------------------------------------------------------------------------------- /external/SDL2/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/BUGS.txt -------------------------------------------------------------------------------- /external/SDL2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/CMakeLists.txt -------------------------------------------------------------------------------- /external/SDL2/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/COPYING.txt -------------------------------------------------------------------------------- /external/SDL2/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/CREDITS.txt -------------------------------------------------------------------------------- /external/SDL2/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/INSTALL.txt -------------------------------------------------------------------------------- /external/SDL2/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/Makefile.in -------------------------------------------------------------------------------- /external/SDL2/Makefile.minimal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/Makefile.minimal -------------------------------------------------------------------------------- /external/SDL2/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/Makefile.os2 -------------------------------------------------------------------------------- /external/SDL2/Makefile.pandora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/Makefile.pandora -------------------------------------------------------------------------------- /external/SDL2/Makefile.psp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/Makefile.psp -------------------------------------------------------------------------------- /external/SDL2/Makefile.wiz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/Makefile.wiz -------------------------------------------------------------------------------- /external/SDL2/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/README-SDL.txt -------------------------------------------------------------------------------- /external/SDL2/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/README.txt -------------------------------------------------------------------------------- /external/SDL2/SDL2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/SDL2.spec -------------------------------------------------------------------------------- /external/SDL2/SDL2.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/SDL2.spec.in -------------------------------------------------------------------------------- /external/SDL2/SDL2Config.cmake: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/SDL2Targets.cmake") 2 | -------------------------------------------------------------------------------- /external/SDL2/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/TODO.txt -------------------------------------------------------------------------------- /external/SDL2/VisualC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/VisualC.html -------------------------------------------------------------------------------- /external/SDL2/VisualC/SDL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/VisualC/SDL.sln -------------------------------------------------------------------------------- /external/SDL2/VisualC/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/VisualC/clean.sh -------------------------------------------------------------------------------- /external/SDL2/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/WhatsNew.txt -------------------------------------------------------------------------------- /external/SDL2/acinclude/alsa.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/acinclude/alsa.m4 -------------------------------------------------------------------------------- /external/SDL2/acinclude/esd.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/acinclude/esd.m4 -------------------------------------------------------------------------------- /external/SDL2/android-project/app/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /external/SDL2/android-project/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /external/SDL2/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/autogen.sh -------------------------------------------------------------------------------- /external/SDL2/cmake/macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/cmake/macros.cmake -------------------------------------------------------------------------------- /external/SDL2/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/configure -------------------------------------------------------------------------------- /external/SDL2/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/configure.ac -------------------------------------------------------------------------------- /external/SDL2/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/debian/changelog -------------------------------------------------------------------------------- /external/SDL2/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /external/SDL2/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/debian/control -------------------------------------------------------------------------------- /external/SDL2/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/debian/copyright -------------------------------------------------------------------------------- /external/SDL2/debian/docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/debian/docs -------------------------------------------------------------------------------- /external/SDL2/debian/libsdl2-dev.manpages: -------------------------------------------------------------------------------- 1 | debian/sdl2-config.1 2 | -------------------------------------------------------------------------------- /external/SDL2/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/debian/rules -------------------------------------------------------------------------------- /external/SDL2/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /external/SDL2/debian/watch: -------------------------------------------------------------------------------- 1 | version=3 2 | http://www.libsdl.org/release/SDL-([\d.]+)\.tar\.gz 3 | -------------------------------------------------------------------------------- /external/SDL2/docs/README-hg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/docs/README-hg.md -------------------------------------------------------------------------------- /external/SDL2/docs/README-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/docs/README-ios.md -------------------------------------------------------------------------------- /external/SDL2/docs/README-nacl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/docs/README-nacl.md -------------------------------------------------------------------------------- /external/SDL2/docs/README-psp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/docs/README-psp.md -------------------------------------------------------------------------------- /external/SDL2/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/docs/README.md -------------------------------------------------------------------------------- /external/SDL2/docs/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/docs/doxyfile -------------------------------------------------------------------------------- /external/SDL2/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/include/SDL.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/include/SDL_audio.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/include/SDL_bits.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/include/SDL_egl.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/include/SDL_error.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/include/SDL_hints.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/include/SDL_log.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/include/SDL_main.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/include/SDL_metal.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/include/SDL_mouse.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/include/SDL_mutex.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/include/SDL_name.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/include/SDL_power.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/include/SDL_quit.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/include/SDL_rect.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/include/SDL_rwops.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/include/SDL_shape.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/include/SDL_syswm.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/include/SDL_test.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/include/SDL_timer.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/include/SDL_touch.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/include/SDL_types.h -------------------------------------------------------------------------------- /external/SDL2/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/include/SDL_video.h -------------------------------------------------------------------------------- /external/SDL2/sdl2-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/sdl2-config.in -------------------------------------------------------------------------------- /external/SDL2/sdl2.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/sdl2.m4 -------------------------------------------------------------------------------- /external/SDL2/sdl2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/sdl2.pc.in -------------------------------------------------------------------------------- /external/SDL2/src/SDL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/SDL.c -------------------------------------------------------------------------------- /external/SDL2/src/SDL_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/SDL_assert.c -------------------------------------------------------------------------------- /external/SDL2/src/SDL_assert_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/SDL_assert_c.h -------------------------------------------------------------------------------- /external/SDL2/src/SDL_dataqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/SDL_dataqueue.c -------------------------------------------------------------------------------- /external/SDL2/src/SDL_dataqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/SDL_dataqueue.h -------------------------------------------------------------------------------- /external/SDL2/src/SDL_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/SDL_error.c -------------------------------------------------------------------------------- /external/SDL2/src/SDL_error_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/SDL_error_c.h -------------------------------------------------------------------------------- /external/SDL2/src/SDL_hints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/SDL_hints.c -------------------------------------------------------------------------------- /external/SDL2/src/SDL_hints_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/SDL_hints_c.h -------------------------------------------------------------------------------- /external/SDL2/src/SDL_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/SDL_internal.h -------------------------------------------------------------------------------- /external/SDL2/src/SDL_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/SDL_log.c -------------------------------------------------------------------------------- /external/SDL2/src/hidapi/libusb/hidusb.cpp: -------------------------------------------------------------------------------- 1 | 2 | #define NAMESPACE HIDUSB 3 | #include "hid.c" 4 | -------------------------------------------------------------------------------- /external/SDL2/src/hidapi/linux/hidraw.cpp: -------------------------------------------------------------------------------- 1 | 2 | #define NAMESPACE HIDRAW 3 | #include "hid.c" 4 | -------------------------------------------------------------------------------- /external/SDL2/src/hidapi/testgui/TestGUI.app.in/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /external/SDL2/src/libm/e_atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/libm/e_atan2.c -------------------------------------------------------------------------------- /external/SDL2/src/libm/e_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/libm/e_exp.c -------------------------------------------------------------------------------- /external/SDL2/src/libm/e_fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/libm/e_fmod.c -------------------------------------------------------------------------------- /external/SDL2/src/libm/e_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/libm/e_log.c -------------------------------------------------------------------------------- /external/SDL2/src/libm/e_log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/libm/e_log10.c -------------------------------------------------------------------------------- /external/SDL2/src/libm/e_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/libm/e_pow.c -------------------------------------------------------------------------------- /external/SDL2/src/libm/e_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/libm/e_sqrt.c -------------------------------------------------------------------------------- /external/SDL2/src/libm/k_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/libm/k_cos.c -------------------------------------------------------------------------------- /external/SDL2/src/libm/k_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/libm/k_sin.c -------------------------------------------------------------------------------- /external/SDL2/src/libm/k_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/libm/k_tan.c -------------------------------------------------------------------------------- /external/SDL2/src/libm/s_atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/libm/s_atan.c -------------------------------------------------------------------------------- /external/SDL2/src/libm/s_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/libm/s_cos.c -------------------------------------------------------------------------------- /external/SDL2/src/libm/s_fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/libm/s_fabs.c -------------------------------------------------------------------------------- /external/SDL2/src/libm/s_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/libm/s_floor.c -------------------------------------------------------------------------------- /external/SDL2/src/libm/s_scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/libm/s_scalbn.c -------------------------------------------------------------------------------- /external/SDL2/src/libm/s_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/libm/s_sin.c -------------------------------------------------------------------------------- /external/SDL2/src/libm/s_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/libm/s_tan.c -------------------------------------------------------------------------------- /external/SDL2/src/video/SDL_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/video/SDL_bmp.c -------------------------------------------------------------------------------- /external/SDL2/src/video/SDL_egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/video/SDL_egl.c -------------------------------------------------------------------------------- /external/SDL2/src/video/SDL_yuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/video/SDL_yuv.c -------------------------------------------------------------------------------- /external/SDL2/src/video/qnx/gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/src/video/qnx/gl.c -------------------------------------------------------------------------------- /external/SDL2/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/CMakeLists.txt -------------------------------------------------------------------------------- /external/SDL2/test/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/COPYING -------------------------------------------------------------------------------- /external/SDL2/test/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/Makefile.in -------------------------------------------------------------------------------- /external/SDL2/test/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/Makefile.os2 -------------------------------------------------------------------------------- /external/SDL2/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/README -------------------------------------------------------------------------------- /external/SDL2/test/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/acinclude.m4 -------------------------------------------------------------------------------- /external/SDL2/test/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/autogen.sh -------------------------------------------------------------------------------- /external/SDL2/test/axis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/axis.bmp -------------------------------------------------------------------------------- /external/SDL2/test/button.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/button.bmp -------------------------------------------------------------------------------- /external/SDL2/test/checkkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/checkkeys.c -------------------------------------------------------------------------------- /external/SDL2/test/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/configure -------------------------------------------------------------------------------- /external/SDL2/test/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/configure.ac -------------------------------------------------------------------------------- /external/SDL2/test/gcc-fat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/gcc-fat.sh -------------------------------------------------------------------------------- /external/SDL2/test/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/icon.bmp -------------------------------------------------------------------------------- /external/SDL2/test/loopwave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/loopwave.c -------------------------------------------------------------------------------- /external/SDL2/test/moose.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/moose.dat -------------------------------------------------------------------------------- /external/SDL2/test/nacl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/nacl/Makefile -------------------------------------------------------------------------------- /external/SDL2/test/nacl/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/nacl/common.js -------------------------------------------------------------------------------- /external/SDL2/test/picture.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/picture.xbm -------------------------------------------------------------------------------- /external/SDL2/test/sample.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/sample.bmp -------------------------------------------------------------------------------- /external/SDL2/test/sample.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/sample.wav -------------------------------------------------------------------------------- /external/SDL2/test/testatomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testatomic.c -------------------------------------------------------------------------------- /external/SDL2/test/testbounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testbounds.c -------------------------------------------------------------------------------- /external/SDL2/test/testdraw2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testdraw2.c -------------------------------------------------------------------------------- /external/SDL2/test/testdropfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testdropfile.c -------------------------------------------------------------------------------- /external/SDL2/test/testerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testerror.c -------------------------------------------------------------------------------- /external/SDL2/test/testfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testfile.c -------------------------------------------------------------------------------- /external/SDL2/test/testgesture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testgesture.c -------------------------------------------------------------------------------- /external/SDL2/test/testgl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testgl2.c -------------------------------------------------------------------------------- /external/SDL2/test/testgles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testgles.c -------------------------------------------------------------------------------- /external/SDL2/test/testgles2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testgles2.c -------------------------------------------------------------------------------- /external/SDL2/test/testhaptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testhaptic.c -------------------------------------------------------------------------------- /external/SDL2/test/testhotplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testhotplug.c -------------------------------------------------------------------------------- /external/SDL2/test/testiconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testiconv.c -------------------------------------------------------------------------------- /external/SDL2/test/testime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testime.c -------------------------------------------------------------------------------- /external/SDL2/test/testjoystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testjoystick.c -------------------------------------------------------------------------------- /external/SDL2/test/testkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testkeys.c -------------------------------------------------------------------------------- /external/SDL2/test/testloadso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testloadso.c -------------------------------------------------------------------------------- /external/SDL2/test/testlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testlock.c -------------------------------------------------------------------------------- /external/SDL2/test/testmessage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testmessage.c -------------------------------------------------------------------------------- /external/SDL2/test/testnative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testnative.c -------------------------------------------------------------------------------- /external/SDL2/test/testnative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testnative.h -------------------------------------------------------------------------------- /external/SDL2/test/testoverlay2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testoverlay2.c -------------------------------------------------------------------------------- /external/SDL2/test/testplatform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testplatform.c -------------------------------------------------------------------------------- /external/SDL2/test/testpower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testpower.c -------------------------------------------------------------------------------- /external/SDL2/test/testqsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testqsort.c -------------------------------------------------------------------------------- /external/SDL2/test/testrelative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testrelative.c -------------------------------------------------------------------------------- /external/SDL2/test/testresample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testresample.c -------------------------------------------------------------------------------- /external/SDL2/test/testrumble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testrumble.c -------------------------------------------------------------------------------- /external/SDL2/test/testscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testscale.c -------------------------------------------------------------------------------- /external/SDL2/test/testsem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testsem.c -------------------------------------------------------------------------------- /external/SDL2/test/testsensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testsensor.c -------------------------------------------------------------------------------- /external/SDL2/test/testshader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testshader.c -------------------------------------------------------------------------------- /external/SDL2/test/testshape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testshape.c -------------------------------------------------------------------------------- /external/SDL2/test/testsprite2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testsprite2.c -------------------------------------------------------------------------------- /external/SDL2/test/testthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testthread.c -------------------------------------------------------------------------------- /external/SDL2/test/testtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testtimer.c -------------------------------------------------------------------------------- /external/SDL2/test/testver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testver.c -------------------------------------------------------------------------------- /external/SDL2/test/testviewport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testviewport.c -------------------------------------------------------------------------------- /external/SDL2/test/testvulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testvulkan.c -------------------------------------------------------------------------------- /external/SDL2/test/testwm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testwm2.c -------------------------------------------------------------------------------- /external/SDL2/test/testyuv.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testyuv.bmp -------------------------------------------------------------------------------- /external/SDL2/test/testyuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testyuv.c -------------------------------------------------------------------------------- /external/SDL2/test/testyuv_cvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testyuv_cvt.c -------------------------------------------------------------------------------- /external/SDL2/test/testyuv_cvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/testyuv_cvt.h -------------------------------------------------------------------------------- /external/SDL2/test/utf8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/SDL2/test/utf8.txt -------------------------------------------------------------------------------- /external/freetype/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/.clang-format -------------------------------------------------------------------------------- /external/freetype/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/CMakeLists.txt -------------------------------------------------------------------------------- /external/freetype/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/ChangeLog -------------------------------------------------------------------------------- /external/freetype/ChangeLog.20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/ChangeLog.20 -------------------------------------------------------------------------------- /external/freetype/ChangeLog.21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/ChangeLog.21 -------------------------------------------------------------------------------- /external/freetype/ChangeLog.22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/ChangeLog.22 -------------------------------------------------------------------------------- /external/freetype/ChangeLog.23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/ChangeLog.23 -------------------------------------------------------------------------------- /external/freetype/ChangeLog.24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/ChangeLog.24 -------------------------------------------------------------------------------- /external/freetype/ChangeLog.25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/ChangeLog.25 -------------------------------------------------------------------------------- /external/freetype/ChangeLog.26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/ChangeLog.26 -------------------------------------------------------------------------------- /external/freetype/ChangeLog.27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/ChangeLog.27 -------------------------------------------------------------------------------- /external/freetype/ChangeLog.28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/ChangeLog.28 -------------------------------------------------------------------------------- /external/freetype/ChangeLog.29: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/ChangeLog.29 -------------------------------------------------------------------------------- /external/freetype/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/Makefile -------------------------------------------------------------------------------- /external/freetype/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/README -------------------------------------------------------------------------------- /external/freetype/README.git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/README.git -------------------------------------------------------------------------------- /external/freetype/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/autogen.sh -------------------------------------------------------------------------------- /external/freetype/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/configure -------------------------------------------------------------------------------- /external/freetype/docs/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/docs/CHANGES -------------------------------------------------------------------------------- /external/freetype/docs/CMAKE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/docs/CMAKE -------------------------------------------------------------------------------- /external/freetype/docs/CUSTOMIZE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/docs/CUSTOMIZE -------------------------------------------------------------------------------- /external/freetype/docs/DEBUG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/docs/DEBUG -------------------------------------------------------------------------------- /external/freetype/docs/DOCGUIDE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/docs/DOCGUIDE -------------------------------------------------------------------------------- /external/freetype/docs/FTL.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/docs/FTL.TXT -------------------------------------------------------------------------------- /external/freetype/docs/GPLv2.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/docs/GPLv2.TXT -------------------------------------------------------------------------------- /external/freetype/docs/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/docs/INSTALL -------------------------------------------------------------------------------- /external/freetype/docs/MAKEPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/docs/MAKEPP -------------------------------------------------------------------------------- /external/freetype/docs/PROBLEMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/docs/PROBLEMS -------------------------------------------------------------------------------- /external/freetype/docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/docs/README -------------------------------------------------------------------------------- /external/freetype/docs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/docs/TODO -------------------------------------------------------------------------------- /external/freetype/docs/raster.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/docs/raster.txt -------------------------------------------------------------------------------- /external/freetype/docs/reference/assets/javascripts/lunr/lunr.jp.js: -------------------------------------------------------------------------------- 1 | module.exports=require("./lunr.ja"); -------------------------------------------------------------------------------- /external/freetype/docs/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/docs/release -------------------------------------------------------------------------------- /external/freetype/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/meson.build -------------------------------------------------------------------------------- /external/freetype/modules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/modules.cfg -------------------------------------------------------------------------------- /external/freetype/objs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/objs/README -------------------------------------------------------------------------------- /external/freetype/src/base/ftmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/src/base/ftmm.c -------------------------------------------------------------------------------- /external/freetype/src/base/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/src/base/md5.c -------------------------------------------------------------------------------- /external/freetype/src/base/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/src/base/md5.h -------------------------------------------------------------------------------- /external/freetype/src/bdf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/src/bdf/README -------------------------------------------------------------------------------- /external/freetype/src/bdf/bdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/src/bdf/bdf.c -------------------------------------------------------------------------------- /external/freetype/src/bdf/bdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/src/bdf/bdf.h -------------------------------------------------------------------------------- /external/freetype/src/cff/cff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/src/cff/cff.c -------------------------------------------------------------------------------- /external/freetype/src/gzip/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/src/gzip/zlib.h -------------------------------------------------------------------------------- /external/freetype/src/lzw/ftlzw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/src/lzw/ftlzw.c -------------------------------------------------------------------------------- /external/freetype/src/pcf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/src/pcf/README -------------------------------------------------------------------------------- /external/freetype/src/pcf/pcf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/src/pcf/pcf.c -------------------------------------------------------------------------------- /external/freetype/src/pcf/pcf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/src/pcf/pcf.h -------------------------------------------------------------------------------- /external/freetype/src/pfr/pfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/src/pfr/pfr.c -------------------------------------------------------------------------------- /external/freetype/src/sfnt/sfnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/src/sfnt/sfnt.c -------------------------------------------------------------------------------- /external/freetype/version.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/version.sed -------------------------------------------------------------------------------- /external/freetype/vms_make.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/freetype/vms_make.com -------------------------------------------------------------------------------- /external/glad/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glad/CMakeLists.txt -------------------------------------------------------------------------------- /external/glad/include/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glad/include/glad/glad.h -------------------------------------------------------------------------------- /external/glad/src/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glad/src/glad.c -------------------------------------------------------------------------------- /external/glfw/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/CMakeLists.txt -------------------------------------------------------------------------------- /external/glfw/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/LICENSE.md -------------------------------------------------------------------------------- /external/glfw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/README.md -------------------------------------------------------------------------------- /external/glfw/deps/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/deps/getopt.c -------------------------------------------------------------------------------- /external/glfw/deps/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/deps/getopt.h -------------------------------------------------------------------------------- /external/glfw/deps/glad/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/deps/glad/gl.h -------------------------------------------------------------------------------- /external/glfw/deps/glad/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/deps/glad/vulkan.h -------------------------------------------------------------------------------- /external/glfw/deps/glad_gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/deps/glad_gl.c -------------------------------------------------------------------------------- /external/glfw/deps/glad_vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/deps/glad_vulkan.c -------------------------------------------------------------------------------- /external/glfw/deps/linmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/deps/linmath.h -------------------------------------------------------------------------------- /external/glfw/deps/mingw/dinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/deps/mingw/dinput.h -------------------------------------------------------------------------------- /external/glfw/deps/mingw/xinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/deps/mingw/xinput.h -------------------------------------------------------------------------------- /external/glfw/deps/nuklear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/deps/nuklear.h -------------------------------------------------------------------------------- /external/glfw/deps/tinycthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/deps/tinycthread.c -------------------------------------------------------------------------------- /external/glfw/deps/tinycthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/deps/tinycthread.h -------------------------------------------------------------------------------- /external/glfw/docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/CMakeLists.txt -------------------------------------------------------------------------------- /external/glfw/docs/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/CODEOWNERS -------------------------------------------------------------------------------- /external/glfw/docs/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/Doxyfile.in -------------------------------------------------------------------------------- /external/glfw/docs/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/SUPPORT.md -------------------------------------------------------------------------------- /external/glfw/docs/build.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/build.dox -------------------------------------------------------------------------------- /external/glfw/docs/compat.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/compat.dox -------------------------------------------------------------------------------- /external/glfw/docs/compile.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/compile.dox -------------------------------------------------------------------------------- /external/glfw/docs/context.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/context.dox -------------------------------------------------------------------------------- /external/glfw/docs/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/extra.css -------------------------------------------------------------------------------- /external/glfw/docs/extra.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/extra.less -------------------------------------------------------------------------------- /external/glfw/docs/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/footer.html -------------------------------------------------------------------------------- /external/glfw/docs/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/header.html -------------------------------------------------------------------------------- /external/glfw/docs/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/html/bc_s.png -------------------------------------------------------------------------------- /external/glfw/docs/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/html/bdwn.png -------------------------------------------------------------------------------- /external/glfw/docs/html/bug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/html/bug.html -------------------------------------------------------------------------------- /external/glfw/docs/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/html/doc.png -------------------------------------------------------------------------------- /external/glfw/docs/html/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/html/extra.css -------------------------------------------------------------------------------- /external/glfw/docs/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/html/jquery.js -------------------------------------------------------------------------------- /external/glfw/docs/html/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/html/menu.js -------------------------------------------------------------------------------- /external/glfw/docs/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/html/nav_f.png -------------------------------------------------------------------------------- /external/glfw/docs/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/html/nav_g.png -------------------------------------------------------------------------------- /external/glfw/docs/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/html/nav_h.png -------------------------------------------------------------------------------- /external/glfw/docs/html/news.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/html/news.html -------------------------------------------------------------------------------- /external/glfw/docs/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/html/open.png -------------------------------------------------------------------------------- /external/glfw/docs/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/html/tab_a.png -------------------------------------------------------------------------------- /external/glfw/docs/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/html/tab_b.png -------------------------------------------------------------------------------- /external/glfw/docs/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/html/tab_h.png -------------------------------------------------------------------------------- /external/glfw/docs/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/html/tab_s.png -------------------------------------------------------------------------------- /external/glfw/docs/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/html/tabs.css -------------------------------------------------------------------------------- /external/glfw/docs/input.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/input.dox -------------------------------------------------------------------------------- /external/glfw/docs/internal.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/internal.dox -------------------------------------------------------------------------------- /external/glfw/docs/intro.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/intro.dox -------------------------------------------------------------------------------- /external/glfw/docs/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/main.dox -------------------------------------------------------------------------------- /external/glfw/docs/monitor.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/monitor.dox -------------------------------------------------------------------------------- /external/glfw/docs/moving.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/moving.dox -------------------------------------------------------------------------------- /external/glfw/docs/news.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/news.dox -------------------------------------------------------------------------------- /external/glfw/docs/quick.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/quick.dox -------------------------------------------------------------------------------- /external/glfw/docs/spaces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/spaces.svg -------------------------------------------------------------------------------- /external/glfw/docs/vulkan.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/vulkan.dox -------------------------------------------------------------------------------- /external/glfw/docs/window.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/docs/window.dox -------------------------------------------------------------------------------- /external/glfw/examples/boing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/examples/boing.c -------------------------------------------------------------------------------- /external/glfw/examples/gears.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/examples/gears.c -------------------------------------------------------------------------------- /external/glfw/examples/glfw.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/examples/glfw.icns -------------------------------------------------------------------------------- /external/glfw/examples/glfw.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/examples/glfw.ico -------------------------------------------------------------------------------- /external/glfw/examples/glfw.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/examples/glfw.rc -------------------------------------------------------------------------------- /external/glfw/examples/sharing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/examples/sharing.c -------------------------------------------------------------------------------- /external/glfw/examples/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/examples/simple.c -------------------------------------------------------------------------------- /external/glfw/examples/wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/examples/wave.c -------------------------------------------------------------------------------- /external/glfw/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/CMakeLists.txt -------------------------------------------------------------------------------- /external/glfw/src/cocoa_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/cocoa_init.m -------------------------------------------------------------------------------- /external/glfw/src/cocoa_monitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/cocoa_monitor.m -------------------------------------------------------------------------------- /external/glfw/src/cocoa_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/cocoa_time.c -------------------------------------------------------------------------------- /external/glfw/src/cocoa_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/cocoa_window.m -------------------------------------------------------------------------------- /external/glfw/src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/context.c -------------------------------------------------------------------------------- /external/glfw/src/egl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/egl_context.c -------------------------------------------------------------------------------- /external/glfw/src/egl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/egl_context.h -------------------------------------------------------------------------------- /external/glfw/src/glfw3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/glfw3.pc.in -------------------------------------------------------------------------------- /external/glfw/src/glfw3Config.cmake.in: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/glfw3Targets.cmake") 2 | -------------------------------------------------------------------------------- /external/glfw/src/glx_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/glx_context.c -------------------------------------------------------------------------------- /external/glfw/src/glx_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/glx_context.h -------------------------------------------------------------------------------- /external/glfw/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/init.c -------------------------------------------------------------------------------- /external/glfw/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/input.c -------------------------------------------------------------------------------- /external/glfw/src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/internal.h -------------------------------------------------------------------------------- /external/glfw/src/mappings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/mappings.h -------------------------------------------------------------------------------- /external/glfw/src/mappings.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/mappings.h.in -------------------------------------------------------------------------------- /external/glfw/src/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/monitor.c -------------------------------------------------------------------------------- /external/glfw/src/nsgl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/nsgl_context.h -------------------------------------------------------------------------------- /external/glfw/src/nsgl_context.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/nsgl_context.m -------------------------------------------------------------------------------- /external/glfw/src/null_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/null_init.c -------------------------------------------------------------------------------- /external/glfw/src/null_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/null_joystick.c -------------------------------------------------------------------------------- /external/glfw/src/null_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/null_joystick.h -------------------------------------------------------------------------------- /external/glfw/src/null_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/null_monitor.c -------------------------------------------------------------------------------- /external/glfw/src/null_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/null_platform.h -------------------------------------------------------------------------------- /external/glfw/src/null_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/null_window.c -------------------------------------------------------------------------------- /external/glfw/src/posix_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/posix_thread.c -------------------------------------------------------------------------------- /external/glfw/src/posix_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/posix_thread.h -------------------------------------------------------------------------------- /external/glfw/src/posix_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/posix_time.c -------------------------------------------------------------------------------- /external/glfw/src/posix_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/posix_time.h -------------------------------------------------------------------------------- /external/glfw/src/vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/vulkan.c -------------------------------------------------------------------------------- /external/glfw/src/wgl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/wgl_context.c -------------------------------------------------------------------------------- /external/glfw/src/wgl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/wgl_context.h -------------------------------------------------------------------------------- /external/glfw/src/win32_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/win32_init.c -------------------------------------------------------------------------------- /external/glfw/src/win32_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/win32_monitor.c -------------------------------------------------------------------------------- /external/glfw/src/win32_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/win32_thread.c -------------------------------------------------------------------------------- /external/glfw/src/win32_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/win32_time.c -------------------------------------------------------------------------------- /external/glfw/src/win32_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/win32_window.c -------------------------------------------------------------------------------- /external/glfw/src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/window.c -------------------------------------------------------------------------------- /external/glfw/src/wl_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/wl_init.c -------------------------------------------------------------------------------- /external/glfw/src/wl_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/wl_monitor.c -------------------------------------------------------------------------------- /external/glfw/src/wl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/wl_platform.h -------------------------------------------------------------------------------- /external/glfw/src/wl_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/wl_window.c -------------------------------------------------------------------------------- /external/glfw/src/x11_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/x11_init.c -------------------------------------------------------------------------------- /external/glfw/src/x11_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/x11_monitor.c -------------------------------------------------------------------------------- /external/glfw/src/x11_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/x11_platform.h -------------------------------------------------------------------------------- /external/glfw/src/x11_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/x11_window.c -------------------------------------------------------------------------------- /external/glfw/src/xkb_unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/xkb_unicode.c -------------------------------------------------------------------------------- /external/glfw/src/xkb_unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/src/xkb_unicode.h -------------------------------------------------------------------------------- /external/glfw/tests/clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/tests/clipboard.c -------------------------------------------------------------------------------- /external/glfw/tests/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/tests/cursor.c -------------------------------------------------------------------------------- /external/glfw/tests/empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/tests/empty.c -------------------------------------------------------------------------------- /external/glfw/tests/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/tests/events.c -------------------------------------------------------------------------------- /external/glfw/tests/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/tests/gamma.c -------------------------------------------------------------------------------- /external/glfw/tests/glfwinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/tests/glfwinfo.c -------------------------------------------------------------------------------- /external/glfw/tests/icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/tests/icon.c -------------------------------------------------------------------------------- /external/glfw/tests/iconify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/tests/iconify.c -------------------------------------------------------------------------------- /external/glfw/tests/inputlag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/tests/inputlag.c -------------------------------------------------------------------------------- /external/glfw/tests/joysticks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/tests/joysticks.c -------------------------------------------------------------------------------- /external/glfw/tests/monitors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/tests/monitors.c -------------------------------------------------------------------------------- /external/glfw/tests/msaa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/tests/msaa.c -------------------------------------------------------------------------------- /external/glfw/tests/opacity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/tests/opacity.c -------------------------------------------------------------------------------- /external/glfw/tests/reopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/tests/reopen.c -------------------------------------------------------------------------------- /external/glfw/tests/tearing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/tests/tearing.c -------------------------------------------------------------------------------- /external/glfw/tests/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/tests/threads.c -------------------------------------------------------------------------------- /external/glfw/tests/timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/tests/timeout.c -------------------------------------------------------------------------------- /external/glfw/tests/title.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/tests/title.c -------------------------------------------------------------------------------- /external/glfw/tests/windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/glfw/tests/windows.c -------------------------------------------------------------------------------- /external/miniaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/miniaudio.h -------------------------------------------------------------------------------- /external/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/external/stb_image.h -------------------------------------------------------------------------------- /game_english/data/Arms.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Arms.pbm -------------------------------------------------------------------------------- /game_english/data/ArmsImage.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/ArmsImage.pbm -------------------------------------------------------------------------------- /game_english/data/ArmsItem.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/ArmsItem.tsc -------------------------------------------------------------------------------- /game_english/data/Bullet.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Bullet.pbm -------------------------------------------------------------------------------- /game_english/data/Caret.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Caret.pbm -------------------------------------------------------------------------------- /game_english/data/Credit.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Credit.tsc -------------------------------------------------------------------------------- /game_english/data/Face.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Face.pbm -------------------------------------------------------------------------------- /game_english/data/Fade.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Fade.pbm -------------------------------------------------------------------------------- /game_english/data/Font/font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Font/font -------------------------------------------------------------------------------- /game_english/data/Head.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Head.tsc -------------------------------------------------------------------------------- /game_english/data/ItemImage.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/ItemImage.pbm -------------------------------------------------------------------------------- /game_english/data/Loading.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Loading.pbm -------------------------------------------------------------------------------- /game_english/data/MyChar.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/MyChar.pbm -------------------------------------------------------------------------------- /game_english/data/Npc/Npc0.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Npc/Npc0.pbm -------------------------------------------------------------------------------- /game_english/data/Npc/NpcBllg.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Npc/NpcBllg.pbm -------------------------------------------------------------------------------- /game_english/data/Npc/NpcCent.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Npc/NpcCent.pbm -------------------------------------------------------------------------------- /game_english/data/Npc/NpcDark.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Npc/NpcDark.pbm -------------------------------------------------------------------------------- /game_english/data/Npc/NpcDr.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Npc/NpcDr.pbm -------------------------------------------------------------------------------- /game_english/data/Npc/NpcFrog.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Npc/NpcFrog.pbm -------------------------------------------------------------------------------- /game_english/data/Npc/NpcHell.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Npc/NpcHell.pbm -------------------------------------------------------------------------------- /game_english/data/Npc/NpcHeri.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Npc/NpcHeri.pbm -------------------------------------------------------------------------------- /game_english/data/Npc/NpcMaze.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Npc/NpcMaze.pbm -------------------------------------------------------------------------------- /game_english/data/Npc/NpcMiza.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Npc/NpcMiza.pbm -------------------------------------------------------------------------------- /game_english/data/Npc/NpcMoon.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Npc/NpcMoon.pbm -------------------------------------------------------------------------------- /game_english/data/Npc/NpcOmg.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Npc/NpcOmg.pbm -------------------------------------------------------------------------------- /game_english/data/Npc/NpcRed.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Npc/NpcRed.pbm -------------------------------------------------------------------------------- /game_english/data/Npc/NpcRegu.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Npc/NpcRegu.pbm -------------------------------------------------------------------------------- /game_english/data/Npc/NpcSand.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Npc/NpcSand.pbm -------------------------------------------------------------------------------- /game_english/data/Npc/NpcSym.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Npc/NpcSym.pbm -------------------------------------------------------------------------------- /game_english/data/Npc/NpcToro.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Npc/NpcToro.pbm -------------------------------------------------------------------------------- /game_english/data/Npc/NpcWeed.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Npc/NpcWeed.pbm -------------------------------------------------------------------------------- /game_english/data/Npc/NpcX.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Npc/NpcX.pbm -------------------------------------------------------------------------------- /game_english/data/Stage/0.pxa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/0.pxa -------------------------------------------------------------------------------- /game_english/data/Stage/0.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/0.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/0.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/0.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/0.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/0.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/555.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/555.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Barr.pxa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Barr.pxa -------------------------------------------------------------------------------- /game_english/data/Stage/Barr.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Barr.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Barr.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Barr.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Barr.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Barr.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Cave.pxa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Cave.pxa -------------------------------------------------------------------------------- /game_english/data/Stage/Cave.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Cave.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Cave.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Cave.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Cave.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Cave.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Cemet.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Cemet.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Cemet.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Cemet.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Cemet.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Cemet.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Cent.pxa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Cent.pxa -------------------------------------------------------------------------------- /game_english/data/Stage/Cent.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Cent.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Cent.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Cent.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Cent.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Cent.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/CentW.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/CentW.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/CentW.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/CentW.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/CentW.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/CentW.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Chako.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Chako.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Chako.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Chako.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Chako.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Chako.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Clock.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Clock.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Clock.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Clock.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Clock.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Clock.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Comu.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Comu.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Comu.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Comu.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Comu.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Comu.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Cook.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Cook.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Cthu.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Cthu.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Cthu.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Cthu.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Cthu.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Cthu.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Cthu2.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Cthu2.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Cthu2.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Cthu2.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Cthu2.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Cthu2.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Curly.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Curly.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Curly.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Curly.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Curly.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Curly.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Dark.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Dark.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Dark.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Dark.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Dark.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Dark.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Drain.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Drain.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Drain.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Drain.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Drain.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Drain.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Egg1.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Egg1.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Egg1.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Egg1.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Egg1.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Egg1.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Egg6.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Egg6.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Egg6.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Egg6.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Egg6.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Egg6.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/EggIn.pxa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/EggIn.pxa -------------------------------------------------------------------------------- /game_english/data/Stage/EggR.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/EggR.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/EggR.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/EggR.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/EggR.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/EggR.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/EggR2.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/EggR2.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/EggR2.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/EggR2.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/EggR2.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/EggR2.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/EggX.pxa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/EggX.pxa -------------------------------------------------------------------------------- /game_english/data/Stage/EggX.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/EggX.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/EggX.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/EggX.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/EggX.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/EggX.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/EggX2.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/EggX2.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/EggX2.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/EggX2.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/EggX2.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/EggX2.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Eggs.pxa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Eggs.pxa -------------------------------------------------------------------------------- /game_english/data/Stage/Eggs.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Eggs.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Eggs.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Eggs.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Eggs.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Eggs.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Eggs2.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Eggs2.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Eggs2.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Eggs2.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Eggs2.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Eggs2.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Fall.pxa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Fall.pxa -------------------------------------------------------------------------------- /game_english/data/Stage/Fall.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Fall.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Fall.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Fall.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Fall.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Fall.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Frog.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Frog.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Frog.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Frog.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Frog.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Frog.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Gard.pxa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Gard.pxa -------------------------------------------------------------------------------- /game_english/data/Stage/Gard.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Gard.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Gard.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Gard.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Gard.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Gard.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Hell.pxa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Hell.pxa -------------------------------------------------------------------------------- /game_english/data/Stage/Hell1.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Hell1.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Hell1.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Hell1.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Hell1.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Hell1.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Hell2.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Hell2.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Hell2.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Hell2.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Hell2.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Hell2.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Hell3.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Hell3.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Hell3.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Hell3.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Hell3.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Hell3.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Hell4.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Hell4.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Hell4.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Hell4.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Hell4.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Hell4.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Itoh.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Itoh.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Itoh.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Itoh.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Itoh.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Itoh.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Jail.pxa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Jail.pxa -------------------------------------------------------------------------------- /game_english/data/Stage/Jail1.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Jail1.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Jail1.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Jail1.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Jail1.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Jail1.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Jail2.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Jail2.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Jail2.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Jail2.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Jail2.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Jail2.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Kings.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Kings.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Kings.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Kings.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Kings.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Kings.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Labo.pxa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Labo.pxa -------------------------------------------------------------------------------- /game_english/data/Stage/Malco.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Malco.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Malco.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Malco.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Malco.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Malco.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Mapi.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Mapi.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Mapi.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Mapi.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Mapi.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Mapi.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Maze.pxa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Maze.pxa -------------------------------------------------------------------------------- /game_english/data/Stage/MazeA.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MazeA.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/MazeA.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MazeA.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/MazeA.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MazeA.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/MazeB.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MazeB.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/MazeB.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MazeB.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/MazeB.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MazeB.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/MazeD.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MazeD.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/MazeD.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MazeD.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/MazeD.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MazeD.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/MazeH.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MazeH.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/MazeH.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MazeH.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/MazeH.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MazeH.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/MazeI.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MazeI.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/MazeI.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MazeI.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/MazeI.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MazeI.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/MazeM.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MazeM.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/MazeM.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MazeM.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/MazeM.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MazeM.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/MazeO.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MazeO.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/MazeO.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MazeO.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/MazeO.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MazeO.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/MazeS.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MazeS.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/MazeS.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MazeS.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/MazeS.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MazeS.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/MazeW.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MazeW.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/MazeW.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MazeW.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/MazeW.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MazeW.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/MiBox.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MiBox.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/MiBox.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MiBox.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/MiBox.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/MiBox.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Mimi.pxa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Mimi.pxa -------------------------------------------------------------------------------- /game_english/data/Stage/Mimi.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Mimi.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Mimi.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Mimi.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Mimi.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Mimi.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Momo.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Momo.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Momo.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Momo.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Momo.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Momo.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/New.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/New.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Oside.pxa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Oside.pxa -------------------------------------------------------------------------------- /game_english/data/Stage/Oside.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Oside.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Oside.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Oside.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Oside.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Oside.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Ostep.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Ostep.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Ostep.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Ostep.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Ostep.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Ostep.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Pens.pxa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Pens.pxa -------------------------------------------------------------------------------- /game_english/data/Stage/Pens1.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Pens1.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Pens1.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Pens1.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Pens1.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Pens1.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Pens2.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Pens2.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Pens2.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Pens2.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Pens2.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Pens2.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Pixel.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Pixel.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Pixel.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Pixel.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Pixel.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Pixel.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Plant.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Plant.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Plant.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Plant.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Plant.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Plant.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Pole.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Pole.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Pole.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Pole.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Pole.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Pole.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Pool.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Pool.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Pool.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Pool.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Pool.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Pool.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Prt0.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Prt0.pbm -------------------------------------------------------------------------------- /game_english/data/Stage/Ring1.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Ring1.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Ring1.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Ring1.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Ring1.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Ring1.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Ring2.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Ring2.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Ring2.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Ring2.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Ring2.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Ring2.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Ring3.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Ring3.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Ring3.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Ring3.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Ring3.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Ring3.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/River.pxa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/River.pxa -------------------------------------------------------------------------------- /game_english/data/Stage/River.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/River.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/River.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/River.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/River.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/River.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Sand.pxa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Sand.pxa -------------------------------------------------------------------------------- /game_english/data/Stage/Sand.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Sand.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Sand.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Sand.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Sand.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Sand.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/SandE.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/SandE.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/SandE.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/SandE.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/SandE.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/SandE.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Santa.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Santa.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Santa.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Santa.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Santa.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Santa.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Shelt.pxa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Shelt.pxa -------------------------------------------------------------------------------- /game_english/data/Stage/Shelt.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Shelt.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Shelt.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Shelt.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Shelt.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Shelt.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Start.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Start.pxe -------------------------------------------------------------------------------- /game_english/data/Stage/Start.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Start.pxm -------------------------------------------------------------------------------- /game_english/data/Stage/Start.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Start.tsc -------------------------------------------------------------------------------- /game_english/data/Stage/Store.pxa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Store.pxa -------------------------------------------------------------------------------- /game_english/data/Stage/Weed.pxa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Stage/Weed.pxa -------------------------------------------------------------------------------- /game_english/data/TextBox.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/TextBox.pbm -------------------------------------------------------------------------------- /game_english/data/Title.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/Title.pbm -------------------------------------------------------------------------------- /game_english/data/bk0.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/bk0.pbm -------------------------------------------------------------------------------- /game_english/data/bkBlack.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/bkBlack.pbm -------------------------------------------------------------------------------- /game_english/data/bkBlue.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/bkBlue.pbm -------------------------------------------------------------------------------- /game_english/data/bkFall.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/bkFall.pbm -------------------------------------------------------------------------------- /game_english/data/bkFog.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/bkFog.pbm -------------------------------------------------------------------------------- /game_english/data/bkGard.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/bkGard.pbm -------------------------------------------------------------------------------- /game_english/data/bkGray.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/bkGray.pbm -------------------------------------------------------------------------------- /game_english/data/bkGreen.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/bkGreen.pbm -------------------------------------------------------------------------------- /game_english/data/bkMaze.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/bkMaze.pbm -------------------------------------------------------------------------------- /game_english/data/bkMoon.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/bkMoon.pbm -------------------------------------------------------------------------------- /game_english/data/bkRed.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/bkRed.pbm -------------------------------------------------------------------------------- /game_english/data/bkWater.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/bkWater.pbm -------------------------------------------------------------------------------- /game_english/data/casts.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/casts.pbm -------------------------------------------------------------------------------- /game_english/data/npc.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/data/npc.tbl -------------------------------------------------------------------------------- /game_english/licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_english/licence.txt -------------------------------------------------------------------------------- /game_japanese/data/Arms.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/Arms.pbm -------------------------------------------------------------------------------- /game_japanese/data/ArmsItem.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/ArmsItem.tsc -------------------------------------------------------------------------------- /game_japanese/data/Bullet.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/Bullet.pbm -------------------------------------------------------------------------------- /game_japanese/data/Caret.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/Caret.pbm -------------------------------------------------------------------------------- /game_japanese/data/Credit.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/Credit.tsc -------------------------------------------------------------------------------- /game_japanese/data/Face.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/Face.pbm -------------------------------------------------------------------------------- /game_japanese/data/Fade.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/Fade.pbm -------------------------------------------------------------------------------- /game_japanese/data/Font/font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/Font/font -------------------------------------------------------------------------------- /game_japanese/data/Head.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/Head.tsc -------------------------------------------------------------------------------- /game_japanese/data/Loading.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/Loading.pbm -------------------------------------------------------------------------------- /game_japanese/data/MyChar.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/MyChar.pbm -------------------------------------------------------------------------------- /game_japanese/data/Npc/Npc0.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/Npc/Npc0.pbm -------------------------------------------------------------------------------- /game_japanese/data/Npc/NpcX.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/Npc/NpcX.pbm -------------------------------------------------------------------------------- /game_japanese/data/Stage/0.pxa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/Stage/0.pxa -------------------------------------------------------------------------------- /game_japanese/data/Stage/0.pxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/Stage/0.pxe -------------------------------------------------------------------------------- /game_japanese/data/Stage/0.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/Stage/0.pxm -------------------------------------------------------------------------------- /game_japanese/data/Stage/0.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/Stage/0.tsc -------------------------------------------------------------------------------- /game_japanese/data/TextBox.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/TextBox.pbm -------------------------------------------------------------------------------- /game_japanese/data/Title.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/Title.pbm -------------------------------------------------------------------------------- /game_japanese/data/bk0.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/bk0.pbm -------------------------------------------------------------------------------- /game_japanese/data/bkBlack.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/bkBlack.pbm -------------------------------------------------------------------------------- /game_japanese/data/bkBlue.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/bkBlue.pbm -------------------------------------------------------------------------------- /game_japanese/data/bkFall.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/bkFall.pbm -------------------------------------------------------------------------------- /game_japanese/data/bkFog.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/bkFog.pbm -------------------------------------------------------------------------------- /game_japanese/data/bkGard.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/bkGard.pbm -------------------------------------------------------------------------------- /game_japanese/data/bkGray.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/bkGray.pbm -------------------------------------------------------------------------------- /game_japanese/data/bkGreen.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/bkGreen.pbm -------------------------------------------------------------------------------- /game_japanese/data/bkMaze.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/bkMaze.pbm -------------------------------------------------------------------------------- /game_japanese/data/bkMoon.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/bkMoon.pbm -------------------------------------------------------------------------------- /game_japanese/data/bkRed.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/bkRed.pbm -------------------------------------------------------------------------------- /game_japanese/data/bkWater.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/bkWater.pbm -------------------------------------------------------------------------------- /game_japanese/data/casts.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/casts.pbm -------------------------------------------------------------------------------- /game_japanese/data/npc.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/data/npc.tbl -------------------------------------------------------------------------------- /game_japanese/licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/game_japanese/licence.txt -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/ArmsItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/ArmsItem.cpp -------------------------------------------------------------------------------- /src/ArmsItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/ArmsItem.h -------------------------------------------------------------------------------- /src/Attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Attributes.h -------------------------------------------------------------------------------- /src/Back.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Back.cpp -------------------------------------------------------------------------------- /src/Back.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Back.h -------------------------------------------------------------------------------- /src/Backends/Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Backends/Audio.h -------------------------------------------------------------------------------- /src/Backends/Audio/3DS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Backends/Audio/3DS.cpp -------------------------------------------------------------------------------- /src/Backends/Audio/Null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Backends/Audio/Null.cpp -------------------------------------------------------------------------------- /src/Backends/Audio/WiiU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Backends/Audio/WiiU.cpp -------------------------------------------------------------------------------- /src/Backends/Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Backends/Controller.h -------------------------------------------------------------------------------- /src/Backends/Controller/SDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Backends/Controller/SDL.cpp -------------------------------------------------------------------------------- /src/Backends/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Backends/Misc.h -------------------------------------------------------------------------------- /src/Backends/Platform/3DS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Backends/Platform/3DS.cpp -------------------------------------------------------------------------------- /src/Backends/Platform/GLFW3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Backends/Platform/GLFW3.cpp -------------------------------------------------------------------------------- /src/Backends/Platform/Null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Backends/Platform/Null.cpp -------------------------------------------------------------------------------- /src/Backends/Platform/SDL1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Backends/Platform/SDL1.cpp -------------------------------------------------------------------------------- /src/Backends/Platform/SDL2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Backends/Platform/SDL2.cpp -------------------------------------------------------------------------------- /src/Backends/Platform/WiiU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Backends/Platform/WiiU.cpp -------------------------------------------------------------------------------- /src/Backends/Rendering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Backends/Rendering.h -------------------------------------------------------------------------------- /src/Backends/Rendering/3DS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Backends/Rendering/3DS.cpp -------------------------------------------------------------------------------- /src/Backends/Rendering/WiiU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Backends/Rendering/WiiU.cpp -------------------------------------------------------------------------------- /src/Backends/Rendering/Window/OpenGLES2/GLFW3.cpp: -------------------------------------------------------------------------------- 1 | #define USE_OPENGLES2 2 | #include "../OpenGL3/GLFW3.cpp" 3 | -------------------------------------------------------------------------------- /src/Backends/Rendering/Window/OpenGLES2/SDL2.cpp: -------------------------------------------------------------------------------- 1 | #define USE_OPENGLES2 2 | #include "../OpenGL3/SDL2.cpp" 3 | -------------------------------------------------------------------------------- /src/Backends/Shared/GLFW3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Backends/Shared/GLFW3.h -------------------------------------------------------------------------------- /src/Backends/Shared/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Backends/Shared/SDL.h -------------------------------------------------------------------------------- /src/Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Bitmap.cpp -------------------------------------------------------------------------------- /src/Bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Bitmap.h -------------------------------------------------------------------------------- /src/Boss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Boss.cpp -------------------------------------------------------------------------------- /src/Boss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Boss.h -------------------------------------------------------------------------------- /src/BossAlmo1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/BossAlmo1.cpp -------------------------------------------------------------------------------- /src/BossAlmo1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/BossAlmo1.h -------------------------------------------------------------------------------- /src/BossAlmo2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/BossAlmo2.cpp -------------------------------------------------------------------------------- /src/BossAlmo2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/BossAlmo2.h -------------------------------------------------------------------------------- /src/BossBallos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/BossBallos.cpp -------------------------------------------------------------------------------- /src/BossBallos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/BossBallos.h -------------------------------------------------------------------------------- /src/BossFrog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/BossFrog.cpp -------------------------------------------------------------------------------- /src/BossFrog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/BossFrog.h -------------------------------------------------------------------------------- /src/BossIronH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/BossIronH.cpp -------------------------------------------------------------------------------- /src/BossIronH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/BossIronH.h -------------------------------------------------------------------------------- /src/BossLife.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/BossLife.cpp -------------------------------------------------------------------------------- /src/BossLife.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/BossLife.h -------------------------------------------------------------------------------- /src/BossOhm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/BossOhm.cpp -------------------------------------------------------------------------------- /src/BossOhm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/BossOhm.h -------------------------------------------------------------------------------- /src/BossPress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/BossPress.cpp -------------------------------------------------------------------------------- /src/BossPress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/BossPress.h -------------------------------------------------------------------------------- /src/BossTwinD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/BossTwinD.cpp -------------------------------------------------------------------------------- /src/BossTwinD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/BossTwinD.h -------------------------------------------------------------------------------- /src/BossX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/BossX.cpp -------------------------------------------------------------------------------- /src/BossX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/BossX.h -------------------------------------------------------------------------------- /src/Bug Fixes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Bug Fixes.txt -------------------------------------------------------------------------------- /src/BulHit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/BulHit.cpp -------------------------------------------------------------------------------- /src/BulHit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/BulHit.h -------------------------------------------------------------------------------- /src/Bullet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Bullet.cpp -------------------------------------------------------------------------------- /src/Bullet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Bullet.h -------------------------------------------------------------------------------- /src/Caret.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Caret.cpp -------------------------------------------------------------------------------- /src/Caret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Caret.h -------------------------------------------------------------------------------- /src/CommonDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/CommonDefines.h -------------------------------------------------------------------------------- /src/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Config.cpp -------------------------------------------------------------------------------- /src/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Config.h -------------------------------------------------------------------------------- /src/Draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Draw.cpp -------------------------------------------------------------------------------- /src/Draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Draw.h -------------------------------------------------------------------------------- /src/Ending.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Ending.cpp -------------------------------------------------------------------------------- /src/Ending.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Ending.h -------------------------------------------------------------------------------- /src/Escape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Escape.cpp -------------------------------------------------------------------------------- /src/Escape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Escape.h -------------------------------------------------------------------------------- /src/Fade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Fade.cpp -------------------------------------------------------------------------------- /src/Fade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Fade.h -------------------------------------------------------------------------------- /src/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/File.cpp -------------------------------------------------------------------------------- /src/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/File.h -------------------------------------------------------------------------------- /src/Flags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Flags.cpp -------------------------------------------------------------------------------- /src/Flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Flags.h -------------------------------------------------------------------------------- /src/Flash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Flash.cpp -------------------------------------------------------------------------------- /src/Flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Flash.h -------------------------------------------------------------------------------- /src/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Font.cpp -------------------------------------------------------------------------------- /src/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Font.h -------------------------------------------------------------------------------- /src/Frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Frame.cpp -------------------------------------------------------------------------------- /src/Frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Frame.h -------------------------------------------------------------------------------- /src/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Game.cpp -------------------------------------------------------------------------------- /src/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Game.h -------------------------------------------------------------------------------- /src/Generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Generic.cpp -------------------------------------------------------------------------------- /src/Generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Generic.h -------------------------------------------------------------------------------- /src/GenericLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/GenericLoad.cpp -------------------------------------------------------------------------------- /src/GenericLoad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/GenericLoad.h -------------------------------------------------------------------------------- /src/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Input.cpp -------------------------------------------------------------------------------- /src/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Input.h -------------------------------------------------------------------------------- /src/KeyControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/KeyControl.cpp -------------------------------------------------------------------------------- /src/KeyControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/KeyControl.h -------------------------------------------------------------------------------- /src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Main.cpp -------------------------------------------------------------------------------- /src/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Main.h -------------------------------------------------------------------------------- /src/Map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Map.cpp -------------------------------------------------------------------------------- /src/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Map.h -------------------------------------------------------------------------------- /src/MapName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/MapName.cpp -------------------------------------------------------------------------------- /src/MapName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/MapName.h -------------------------------------------------------------------------------- /src/MiniMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/MiniMap.cpp -------------------------------------------------------------------------------- /src/MiniMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/MiniMap.h -------------------------------------------------------------------------------- /src/MyChar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/MyChar.cpp -------------------------------------------------------------------------------- /src/MyChar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/MyChar.h -------------------------------------------------------------------------------- /src/MycHit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/MycHit.cpp -------------------------------------------------------------------------------- /src/MycHit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/MycHit.h -------------------------------------------------------------------------------- /src/MycParam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/MycParam.cpp -------------------------------------------------------------------------------- /src/MycParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/MycParam.h -------------------------------------------------------------------------------- /src/NpChar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/NpChar.cpp -------------------------------------------------------------------------------- /src/NpChar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/NpChar.h -------------------------------------------------------------------------------- /src/NpcAct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/NpcAct.h -------------------------------------------------------------------------------- /src/NpcAct000.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/NpcAct000.cpp -------------------------------------------------------------------------------- /src/NpcAct020.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/NpcAct020.cpp -------------------------------------------------------------------------------- /src/NpcAct040.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/NpcAct040.cpp -------------------------------------------------------------------------------- /src/NpcAct060.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/NpcAct060.cpp -------------------------------------------------------------------------------- /src/NpcAct080.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/NpcAct080.cpp -------------------------------------------------------------------------------- /src/NpcAct100.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/NpcAct100.cpp -------------------------------------------------------------------------------- /src/NpcAct120.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/NpcAct120.cpp -------------------------------------------------------------------------------- /src/NpcAct140.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/NpcAct140.cpp -------------------------------------------------------------------------------- /src/NpcAct160.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/NpcAct160.cpp -------------------------------------------------------------------------------- /src/NpcAct180.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/NpcAct180.cpp -------------------------------------------------------------------------------- /src/NpcAct200.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/NpcAct200.cpp -------------------------------------------------------------------------------- /src/NpcAct220.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/NpcAct220.cpp -------------------------------------------------------------------------------- /src/NpcAct240.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/NpcAct240.cpp -------------------------------------------------------------------------------- /src/NpcAct260.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/NpcAct260.cpp -------------------------------------------------------------------------------- /src/NpcAct280.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/NpcAct280.cpp -------------------------------------------------------------------------------- /src/NpcAct300.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/NpcAct300.cpp -------------------------------------------------------------------------------- /src/NpcAct320.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/NpcAct320.cpp -------------------------------------------------------------------------------- /src/NpcAct340.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/NpcAct340.cpp -------------------------------------------------------------------------------- /src/NpcHit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/NpcHit.cpp -------------------------------------------------------------------------------- /src/NpcHit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/NpcHit.h -------------------------------------------------------------------------------- /src/NpcTbl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/NpcTbl.cpp -------------------------------------------------------------------------------- /src/NpcTbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/NpcTbl.h -------------------------------------------------------------------------------- /src/Organya.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Organya.cpp -------------------------------------------------------------------------------- /src/Organya.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Organya.h -------------------------------------------------------------------------------- /src/PixTone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/PixTone.cpp -------------------------------------------------------------------------------- /src/PixTone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/PixTone.h -------------------------------------------------------------------------------- /src/Profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Profile.cpp -------------------------------------------------------------------------------- /src/Profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Profile.h -------------------------------------------------------------------------------- /src/Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Random.cpp -------------------------------------------------------------------------------- /src/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Random.h -------------------------------------------------------------------------------- /src/Resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Resource.cpp -------------------------------------------------------------------------------- /src/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Resource.h -------------------------------------------------------------------------------- /src/SelStage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/SelStage.cpp -------------------------------------------------------------------------------- /src/SelStage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/SelStage.h -------------------------------------------------------------------------------- /src/Shoot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Shoot.cpp -------------------------------------------------------------------------------- /src/Shoot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Shoot.h -------------------------------------------------------------------------------- /src/Sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Sound.cpp -------------------------------------------------------------------------------- /src/Sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Sound.h -------------------------------------------------------------------------------- /src/Stage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Stage.cpp -------------------------------------------------------------------------------- /src/Stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Stage.h -------------------------------------------------------------------------------- /src/Star.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Star.cpp -------------------------------------------------------------------------------- /src/Star.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Star.h -------------------------------------------------------------------------------- /src/Tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Tags.h -------------------------------------------------------------------------------- /src/TextScr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/TextScr.cpp -------------------------------------------------------------------------------- /src/TextScr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/TextScr.h -------------------------------------------------------------------------------- /src/Triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Triangle.cpp -------------------------------------------------------------------------------- /src/Triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/Triangle.h -------------------------------------------------------------------------------- /src/ValueView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/ValueView.cpp -------------------------------------------------------------------------------- /src/ValueView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/ValueView.h -------------------------------------------------------------------------------- /src/WindowsWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gameblabla/CSE2/HEAD/src/WindowsWrapper.h --------------------------------------------------------------------------------