├── .gitignore ├── Android-Project - Copy ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── config.ini │ │ ├── java │ │ ├── org │ │ │ └── libsdl │ │ │ │ └── app │ │ │ │ ├── SDL.java │ │ │ │ ├── SDLActivity.java │ │ │ │ ├── SDLAudioManager.java │ │ │ │ └── SDLControllerManager.java │ │ └── vg │ │ │ └── aurum │ │ │ └── HatchGameEngine │ │ │ └── HatchActivity.java │ │ ├── jni │ │ ├── Android.mk │ │ ├── Application.mk │ │ └── src │ │ │ ├── Android.mk │ │ │ └── Android_static.mk │ │ └── res │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ │ ├── layout │ │ └── main.xml │ │ └── values │ │ └── strings.xml ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── import-summary.txt └── settings.gradle ├── Android-Project ├── .idea │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── workspace.xml ├── _LINK_SDL2.bat ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── config.ini │ │ ├── java │ │ ├── org │ │ │ └── libsdl │ │ │ │ └── app │ │ │ │ ├── SDL.java │ │ │ │ ├── SDLActivity.java │ │ │ │ ├── SDLAudioManager.java │ │ │ │ └── SDLControllerManager.java │ │ └── vg │ │ │ └── aurum │ │ │ └── HatchGameEngine │ │ │ └── HatchActivity.java │ │ ├── jni │ │ ├── Android.mk │ │ ├── Application.mk │ │ ├── SDL2 │ │ ├── SDL2_image │ │ └── src │ │ │ ├── Android.mk │ │ │ └── Android_static.mk │ │ └── res │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ │ ├── layout │ │ └── main.xml │ │ └── values │ │ └── strings.xml ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── import-summary.txt └── settings.gradle ├── CMakeLists.txt ├── LICENSE.txt ├── MAKE_NX.bat ├── Makefile ├── Makefile.nx ├── README.md ├── VisualC ├── HatchGameEngine.sln ├── HatchGameEngine.vcxproj ├── HatchGameEngine.vcxproj.filters └── SDL2.dll ├── Xcode-iOS ├── Hatch Game Engine.xcodeproj │ ├── TemplateIcon.icns │ ├── TemplateInfo.plist │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── justin.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── justin.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── Info.plist ├── SDL2-2.0.10 │ ├── Xcode-iOS │ │ └── 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 │ │ │ └── xcuserdata │ │ │ └── justin.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── 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 │ ├── configure │ ├── 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_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 │ └── 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_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 │ │ ├── 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_ps4.c │ │ │ ├── SDL_hidapi_switch.c │ │ │ ├── SDL_hidapi_xbox360.c │ │ │ ├── SDL_hidapi_xboxone.c │ │ │ ├── SDL_hidapijoystick.c │ │ │ └── SDL_hidapijoystick_c.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 │ │ └── 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 │ │ │ └── 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 │ │ ├── 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 │ │ ├── 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_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 │ │ ├── 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 ├── iOS Launch Screen.storyboard └── libraries │ ├── asm_arm.h │ ├── backends.h │ ├── bitwise.c │ ├── codebook.c │ ├── codebook.h │ ├── codec_internal.h │ ├── config_types.h │ ├── floor0.c │ ├── floor1.c │ ├── framing.c │ ├── info.c │ ├── ivorbiscodec.h │ ├── ivorbisfile.h │ ├── lsp_lookup.h │ ├── mapping0.c │ ├── mdct.c │ ├── mdct.h │ ├── mdct_lookup.h │ ├── misc.h │ ├── os.h │ ├── registry.c │ ├── registry.h │ ├── res012.c │ ├── sharedbook.c │ ├── synthesis.c │ ├── v_block.c │ ├── v_block.h │ ├── vorbisfile.c │ ├── window.c │ ├── window.h │ └── window_lookup.h ├── Xcode └── HatchGameEngine │ ├── HatchGameEngine.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── justin.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── HatchGameEngine.xcscheme │ └── xcuserdata │ │ └── justin.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist │ └── HatchGameEngine │ └── main.cpp ├── cmake ├── Modules │ ├── FindOgg.cmake │ ├── FindSDL2.cmake │ ├── FindVorbis.cmake │ └── FindVorbisFile.cmake ├── WindowsToolchain.cmake └── cross_compile.sh ├── guides ├── Documentation - Copy.htm ├── Documentation.htm └── Setup Guides │ ├── Important Android Build Files.txt │ └── MacOSX │ ├── Android Exporting.txt │ └── Nintendo Switch Exporting.txt ├── include └── Engine │ ├── Application.h │ ├── Audio │ └── AudioManager.h │ ├── Bytecode │ ├── BytecodeObject.h │ ├── BytecodeObjectManager.h │ ├── Compiler.h │ ├── GarbageCollector.h │ ├── SourceFileMap.h │ ├── StandardLibrary.h │ ├── VMThread.h │ └── Values.h │ ├── Diagnostics │ ├── Clock.h │ ├── Log.h │ ├── Memory.h │ ├── PerformanceMeasure.h │ └── RemoteDebug.h │ ├── Extensions │ └── Discord.h │ ├── Filesystem │ ├── Directory.h │ └── File.h │ ├── FontFace.h │ ├── Graphics.h │ ├── Hashing │ ├── CRC32.h │ ├── CombinedHash.h │ ├── FNV1A.h │ ├── MD5.h │ └── Murmur.h │ ├── IO │ ├── Compression │ │ ├── Huffman.h │ │ ├── LZ11.h │ │ ├── LZSS.h │ │ ├── RunLength.h │ │ └── ZLibStream.h │ ├── FileStream.h │ ├── MemoryStream.h │ ├── NetworkStream.h │ ├── ResourceStream.h │ ├── SDLStream.h │ └── Stream.h │ ├── InputManager.h │ ├── Math │ ├── Ease.h │ ├── IMath.h │ ├── Math.h │ └── Matrix4x4.h │ ├── Media │ ├── Decoder.h │ ├── Decoders │ │ ├── AudioDecoder.h │ │ └── VideoDecoder.h │ ├── MediaPlayer.h │ ├── MediaSource.h │ └── Utils │ │ ├── MediaPlayerState.h │ │ ├── PtrBuffer.h │ │ └── RingBuffer.h │ ├── Network │ ├── HTTP.h │ └── WebSocketClient.h │ ├── Rendering │ ├── D3D │ │ └── D3DRenderer.h │ ├── GL │ │ ├── GLRenderer.h │ │ └── GLShader.h │ ├── Metal │ │ └── MetalRenderer.h │ ├── SDL2 │ │ └── SDL2Renderer.h │ ├── Shader.h │ ├── Software │ │ └── SoftwareRenderer.h │ └── Texture.h │ ├── ResourceTypes │ ├── IModel.h │ ├── ISound.h │ ├── ISprite.h │ ├── Image.h │ ├── ImageFormats │ │ ├── GIF.h │ │ ├── ImageFormat.h │ │ ├── JPEG.h │ │ └── PNG.h │ ├── ModelFormats │ │ └── COLLADAReader.h │ ├── ResourceManager.h │ ├── SceneFormats │ │ ├── HatchSceneReader.h │ │ ├── RSDKSceneReader.h │ │ └── TiledMapReader.h │ └── SoundFormats │ │ ├── OGG.h │ │ ├── SoundFormat.h │ │ └── WAV.h │ ├── Scene.h │ ├── Scene │ ├── SceneLayer.h │ ├── ScrollingIndex.h │ ├── ScrollingInfo.h │ ├── TileConfig.h │ ├── TileSpriteInfo.h │ └── View.h │ ├── TextFormats │ ├── INI.h │ └── XML │ │ └── XMLParser.h │ ├── Types │ ├── DrawGroupList.h │ ├── Entity.h │ └── ObjectList.h │ └── Utilities │ └── StringUtils.h ├── makeheaders.bin ├── meta ├── android │ └── app │ │ └── src │ │ └── libs │ │ ├── Android.mk │ │ ├── curl │ │ ├── CMakeLists.txt │ │ ├── Makefile.Watcom │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Makefile.inc │ │ ├── Makefile.m32 │ │ ├── Makefile.netware │ │ ├── Makefile.vxworks │ │ ├── altsvc.c │ │ ├── altsvc.h │ │ ├── amigaos.c │ │ ├── amigaos.h │ │ ├── arpa_telnet.h │ │ ├── asyn-ares.c │ │ ├── asyn-thread.c │ │ ├── asyn.h │ │ ├── base64.c │ │ ├── checksrc.pl │ │ ├── config-amigaos.h │ │ ├── config-dos.h │ │ ├── config-mac.h │ │ ├── config-os400.h │ │ ├── config-plan9.h │ │ ├── config-riscos.h │ │ ├── config-symbian.h │ │ ├── config-tpf.h │ │ ├── config-vxworks.h │ │ ├── config-win32.h │ │ ├── config-win32ce.h │ │ ├── conncache.c │ │ ├── conncache.h │ │ ├── connect.c │ │ ├── connect.h │ │ ├── content_encoding.c │ │ ├── content_encoding.h │ │ ├── cookie.c │ │ ├── cookie.h │ │ ├── curl_addrinfo.c │ │ ├── curl_addrinfo.h │ │ ├── curl_base64.h │ │ ├── curl_config.h.cmake │ │ ├── curl_config.h.in │ │ ├── curl_ctype.c │ │ ├── curl_ctype.h │ │ ├── curl_des.c │ │ ├── curl_des.h │ │ ├── curl_endian.c │ │ ├── curl_endian.h │ │ ├── curl_fnmatch.c │ │ ├── curl_fnmatch.h │ │ ├── curl_get_line.c │ │ ├── curl_get_line.h │ │ ├── curl_gethostname.c │ │ ├── curl_gethostname.h │ │ ├── curl_gssapi.c │ │ ├── curl_gssapi.h │ │ ├── curl_hmac.h │ │ ├── curl_ldap.h │ │ ├── curl_md4.h │ │ ├── curl_md5.h │ │ ├── curl_memory.h │ │ ├── curl_memrchr.c │ │ ├── curl_memrchr.h │ │ ├── curl_multibyte.c │ │ ├── curl_multibyte.h │ │ ├── curl_ntlm_core.c │ │ ├── curl_ntlm_core.h │ │ ├── curl_ntlm_wb.c │ │ ├── curl_ntlm_wb.h │ │ ├── curl_path.c │ │ ├── curl_path.h │ │ ├── curl_printf.h │ │ ├── curl_range.c │ │ ├── curl_range.h │ │ ├── curl_rtmp.c │ │ ├── curl_rtmp.h │ │ ├── curl_sasl.c │ │ ├── curl_sasl.h │ │ ├── curl_sec.h │ │ ├── curl_setup.h │ │ ├── curl_setup_once.h │ │ ├── curl_sha256.h │ │ ├── curl_sspi.c │ │ ├── curl_sspi.h │ │ ├── curl_threads.c │ │ ├── curl_threads.h │ │ ├── curlx.h │ │ ├── dict.c │ │ ├── dict.h │ │ ├── doh.c │ │ ├── doh.h │ │ ├── dotdot.c │ │ ├── dotdot.h │ │ ├── easy.c │ │ ├── easyif.h │ │ ├── escape.c │ │ ├── escape.h │ │ ├── file.c │ │ ├── file.h │ │ ├── fileinfo.c │ │ ├── fileinfo.h │ │ ├── firefox-db2pem.sh │ │ ├── formdata.c │ │ ├── formdata.h │ │ ├── ftp.c │ │ ├── ftp.h │ │ ├── ftplistparser.c │ │ ├── ftplistparser.h │ │ ├── getenv.c │ │ ├── getinfo.c │ │ ├── getinfo.h │ │ ├── gopher.c │ │ ├── gopher.h │ │ ├── hash.c │ │ ├── hash.h │ │ ├── hmac.c │ │ ├── hostasyn.c │ │ ├── hostcheck.c │ │ ├── hostcheck.h │ │ ├── hostip.c │ │ ├── hostip.h │ │ ├── hostip4.c │ │ ├── hostip6.c │ │ ├── hostsyn.c │ │ ├── http.c │ │ ├── http.h │ │ ├── http2.c │ │ ├── http2.h │ │ ├── http_chunks.c │ │ ├── http_chunks.h │ │ ├── http_digest.c │ │ ├── http_digest.h │ │ ├── http_negotiate.c │ │ ├── http_negotiate.h │ │ ├── http_ntlm.c │ │ ├── http_ntlm.h │ │ ├── http_proxy.c │ │ ├── http_proxy.h │ │ ├── idn_win32.c │ │ ├── if2ip.c │ │ ├── if2ip.h │ │ ├── imap.c │ │ ├── imap.h │ │ ├── inet_ntop.c │ │ ├── inet_ntop.h │ │ ├── inet_pton.c │ │ ├── inet_pton.h │ │ ├── krb5.c │ │ ├── ldap.c │ │ ├── libcurl.plist │ │ ├── libcurl.rc │ │ ├── libcurl.vers.in │ │ ├── llist.c │ │ ├── llist.h │ │ ├── makefile.amiga │ │ ├── makefile.dj │ │ ├── md4.c │ │ ├── md5.c │ │ ├── memdebug.c │ │ ├── memdebug.h │ │ ├── mime.c │ │ ├── mime.h │ │ ├── mk-ca-bundle.pl │ │ ├── mk-ca-bundle.vbs │ │ ├── mprintf.c │ │ ├── multi.c │ │ ├── multihandle.h │ │ ├── multiif.h │ │ ├── netrc.c │ │ ├── netrc.h │ │ ├── non-ascii.c │ │ ├── non-ascii.h │ │ ├── nonblock.c │ │ ├── nonblock.h │ │ ├── nwlib.c │ │ ├── nwos.c │ │ ├── openldap.c │ │ ├── parsedate.c │ │ ├── parsedate.h │ │ ├── pingpong.c │ │ ├── pingpong.h │ │ ├── pop3.c │ │ ├── pop3.h │ │ ├── progress.c │ │ ├── progress.h │ │ ├── psl.c │ │ ├── psl.h │ │ ├── quic.h │ │ ├── rand.c │ │ ├── rand.h │ │ ├── rtsp.c │ │ ├── rtsp.h │ │ ├── security.c │ │ ├── select.c │ │ ├── select.h │ │ ├── sendf.c │ │ ├── sendf.h │ │ ├── setopt.c │ │ ├── setopt.h │ │ ├── setup-os400.h │ │ ├── setup-vms.h │ │ ├── sha256.c │ │ ├── share.c │ │ ├── share.h │ │ ├── sigpipe.h │ │ ├── slist.c │ │ ├── slist.h │ │ ├── smb.c │ │ ├── smb.h │ │ ├── smtp.c │ │ ├── smtp.h │ │ ├── sockaddr.h │ │ ├── socketpair.c │ │ ├── socketpair.h │ │ ├── socks.c │ │ ├── socks.h │ │ ├── socks_gssapi.c │ │ ├── socks_sspi.c │ │ ├── speedcheck.c │ │ ├── speedcheck.h │ │ ├── splay.c │ │ ├── splay.h │ │ ├── ssh.h │ │ ├── strcase.c │ │ ├── strcase.h │ │ ├── strdup.c │ │ ├── strdup.h │ │ ├── strerror.c │ │ ├── strerror.h │ │ ├── strtok.c │ │ ├── strtok.h │ │ ├── strtoofft.c │ │ ├── strtoofft.h │ │ ├── system_win32.c │ │ ├── system_win32.h │ │ ├── telnet.c │ │ ├── telnet.h │ │ ├── tftp.c │ │ ├── tftp.h │ │ ├── timeval.c │ │ ├── timeval.h │ │ ├── transfer.c │ │ ├── transfer.h │ │ ├── url.c │ │ ├── url.h │ │ ├── urlapi-int.h │ │ ├── urlapi.c │ │ ├── urldata.h │ │ ├── vauth │ │ │ ├── cleartext.c │ │ │ ├── cram.c │ │ │ ├── digest.c │ │ │ ├── digest.h │ │ │ ├── digest_sspi.c │ │ │ ├── krb5_gssapi.c │ │ │ ├── krb5_sspi.c │ │ │ ├── ntlm.c │ │ │ ├── ntlm.h │ │ │ ├── ntlm_sspi.c │ │ │ ├── oauth2.c │ │ │ ├── spnego_gssapi.c │ │ │ ├── spnego_sspi.c │ │ │ ├── vauth.c │ │ │ └── vauth.h │ │ ├── version.c │ │ ├── vquic │ │ │ ├── ngtcp2.c │ │ │ ├── ngtcp2.h │ │ │ ├── quiche.c │ │ │ └── quiche.h │ │ ├── vssh │ │ │ ├── libssh.c │ │ │ └── libssh2.c │ │ ├── vtls │ │ │ ├── gskit.c │ │ │ ├── gskit.h │ │ │ ├── gtls.c │ │ │ ├── gtls.h │ │ │ ├── mbedtls.c │ │ │ ├── mbedtls.h │ │ │ ├── mesalink.c │ │ │ ├── mesalink.h │ │ │ ├── nss.c │ │ │ ├── nssg.h │ │ │ ├── openssl.c │ │ │ ├── openssl.h │ │ │ ├── polarssl.c │ │ │ ├── polarssl.h │ │ │ ├── polarssl_threadlock.c │ │ │ ├── polarssl_threadlock.h │ │ │ ├── schannel.c │ │ │ ├── schannel.h │ │ │ ├── schannel_verify.c │ │ │ ├── sectransp.c │ │ │ ├── sectransp.h │ │ │ ├── vtls.c │ │ │ ├── vtls.h │ │ │ ├── wolfssl.c │ │ │ └── wolfssl.h │ │ ├── warnless.c │ │ ├── warnless.h │ │ ├── wildcard.c │ │ ├── wildcard.h │ │ ├── x509asn1.c │ │ └── x509asn1.h │ │ ├── freetype │ │ ├── Jamfile │ │ ├── autofit │ │ │ ├── Jamfile │ │ │ ├── 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 │ │ │ ├── Jamfile │ │ │ ├── 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 │ │ │ ├── Jamfile │ │ │ ├── README │ │ │ ├── bdf.c │ │ │ ├── bdf.h │ │ │ ├── bdfdrivr.c │ │ │ ├── bdfdrivr.h │ │ │ ├── bdferror.h │ │ │ ├── bdflib.c │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ ├── bzip2 │ │ │ ├── Jamfile │ │ │ ├── ftbzip2.c │ │ │ └── rules.mk │ │ ├── cache │ │ │ ├── Jamfile │ │ │ ├── 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 │ │ │ ├── Jamfile │ │ │ ├── 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 │ │ │ ├── Jamfile │ │ │ ├── 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 │ │ ├── ftdebug.c │ │ ├── gxvalid │ │ │ ├── Jamfile │ │ │ ├── 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 │ │ │ ├── Jamfile │ │ │ ├── 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 │ │ │ ├── Jamfile │ │ │ ├── ftlzw.c │ │ │ ├── ftzopen.c │ │ │ ├── ftzopen.h │ │ │ └── rules.mk │ │ ├── otvalid │ │ │ ├── Jamfile │ │ │ ├── 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 │ │ │ ├── Jamfile │ │ │ ├── README │ │ │ ├── module.mk │ │ │ ├── pcf.c │ │ │ ├── pcf.h │ │ │ ├── pcfdrivr.c │ │ │ ├── pcfdrivr.h │ │ │ ├── pcferror.h │ │ │ ├── pcfread.c │ │ │ ├── pcfread.h │ │ │ ├── pcfutil.c │ │ │ ├── pcfutil.h │ │ │ └── rules.mk │ │ ├── pfr │ │ │ ├── Jamfile │ │ │ ├── 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 │ │ │ ├── Jamfile │ │ │ ├── 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 │ │ │ ├── Jamfile │ │ │ ├── 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 │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── psmodule.c │ │ │ ├── psmodule.h │ │ │ ├── psnamerr.h │ │ │ ├── psnames.c │ │ │ ├── pstables.h │ │ │ └── rules.mk │ │ ├── raster │ │ │ ├── Jamfile │ │ │ ├── ftmisc.h │ │ │ ├── ftraster.c │ │ │ ├── ftraster.h │ │ │ ├── ftrend1.c │ │ │ ├── ftrend1.h │ │ │ ├── module.mk │ │ │ ├── raster.c │ │ │ ├── rasterrs.h │ │ │ └── rules.mk │ │ ├── sfnt │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── pngshim.c │ │ │ ├── pngshim.h │ │ │ ├── rules.mk │ │ │ ├── sfdriver.c │ │ │ ├── sfdriver.h │ │ │ ├── sferrors.h │ │ │ ├── sfnt.c │ │ │ ├── sfobjs.c │ │ │ ├── sfobjs.h │ │ │ ├── sfwoff.c │ │ │ ├── sfwoff.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 │ │ ├── smooth │ │ │ ├── Jamfile │ │ │ ├── ftgrays.c │ │ │ ├── ftgrays.h │ │ │ ├── ftsmerrs.h │ │ │ ├── ftsmooth.c │ │ │ ├── ftsmooth.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ └── smooth.c │ │ ├── tools │ │ │ ├── Jamfile │ │ │ ├── afblue.pl │ │ │ ├── apinames.c │ │ │ ├── chktrcmp.py │ │ │ ├── cordic.py │ │ │ ├── ftrandom │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── ftrandom.c │ │ │ ├── glnames.py │ │ │ ├── no-copyright │ │ │ ├── test_afm.c │ │ │ ├── test_bbox.c │ │ │ ├── test_trig.c │ │ │ ├── update-copyright │ │ │ └── update-copyright-year │ │ ├── truetype │ │ │ ├── Jamfile │ │ │ ├── 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 │ │ │ ├── Jamfile │ │ │ ├── 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 │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── t42drivr.c │ │ │ ├── t42drivr.h │ │ │ ├── t42error.h │ │ │ ├── t42objs.c │ │ │ ├── t42objs.h │ │ │ ├── t42parse.c │ │ │ ├── t42parse.h │ │ │ ├── t42types.h │ │ │ └── type42.c │ │ └── winfonts │ │ │ ├── Jamfile │ │ │ ├── fnterrs.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── winfnt.c │ │ │ └── winfnt.h │ │ ├── include │ │ ├── curl │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── curl.h │ │ │ ├── curlver.h │ │ │ ├── easy.h │ │ │ ├── mprintf.h │ │ │ ├── multi.h │ │ │ ├── stdcheaders.h │ │ │ ├── system.h │ │ │ ├── typecheck-gcc.h │ │ │ └── urlapi.h │ │ ├── freetype │ │ │ ├── config │ │ │ │ ├── ftconfig.h │ │ │ │ ├── ftheader.h │ │ │ │ ├── ftmodule.h │ │ │ │ ├── ftoption.h │ │ │ │ └── ftstdlib.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 │ │ │ │ ├── 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 │ │ │ │ ├── internal.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 │ │ ├── jpeg │ │ │ ├── jchuff.h │ │ │ ├── jconfig.h │ │ │ ├── jdct.h │ │ │ ├── jdhuff.h │ │ │ ├── jerror.h │ │ │ ├── jinclude.h │ │ │ ├── jmemsys.h │ │ │ ├── jmorecfg.h │ │ │ ├── jpegint.h │ │ │ ├── jpeglib.h │ │ │ └── jversion.h │ │ ├── libpng16 │ │ │ ├── png.h │ │ │ ├── pngconf.h │ │ │ ├── pngdebug.h │ │ │ ├── pnginfo.h │ │ │ ├── pnglibconf.h │ │ │ ├── pngpriv.h │ │ │ └── pngstruct.h │ │ ├── ogg │ │ │ ├── config_types.h │ │ │ ├── ogg.h │ │ │ └── os_types.h │ │ └── vorbis │ │ │ ├── codec.h │ │ │ ├── vorbisenc.h │ │ │ └── vorbisfile.h │ │ ├── libjpeg.a │ │ ├── libogg │ │ ├── bitwise.c │ │ └── framing.c │ │ ├── libpng16 │ │ ├── png.c │ │ ├── png.h │ │ ├── pngconf.h │ │ ├── pngdebug.h │ │ ├── pngerror.c │ │ ├── pngget.c │ │ ├── pnginfo.h │ │ ├── pnglibconf.h │ │ ├── pngmem.c │ │ ├── pngpread.c │ │ ├── pngpriv.h │ │ ├── pngread.c │ │ ├── pngrio.c │ │ ├── pngrtran.c │ │ ├── pngrutil.c │ │ ├── pngset.c │ │ ├── pngstruct.h │ │ ├── pngtrans.c │ │ ├── pngwio.c │ │ ├── pngwrite.c │ │ ├── pngwtran.c │ │ └── pngwutil.c │ │ └── libvorbis │ │ ├── Android.mk │ │ ├── CMakeLists.txt │ │ ├── analysis.c │ │ ├── backends.h │ │ ├── barkmel.c │ │ ├── bitrate.c │ │ ├── bitrate.h │ │ ├── block.c │ │ ├── books │ │ ├── coupled │ │ │ ├── res_books_51.h │ │ │ └── res_books_stereo.h │ │ ├── floor │ │ │ └── floor_books.h │ │ └── uncoupled │ │ │ └── res_books_uncoupled.h │ │ ├── codebook.c │ │ ├── codebook.h │ │ ├── codec_internal.h │ │ ├── envelope.c │ │ ├── envelope.h │ │ ├── floor0.c │ │ ├── floor1.c │ │ ├── highlevel.h │ │ ├── info.c │ │ ├── lookup.c │ │ ├── lookup.h │ │ ├── lookup_data.h │ │ ├── lookups.pl │ │ ├── lpc.c │ │ ├── lpc.h │ │ ├── lsp.c │ │ ├── lsp.h │ │ ├── mapping0.c │ │ ├── masking.h │ │ ├── mdct.c │ │ ├── mdct.h │ │ ├── misc.c │ │ ├── misc.h │ │ ├── modes │ │ ├── floor_all.h │ │ ├── psych_11.h │ │ ├── psych_16.h │ │ ├── psych_44.h │ │ ├── psych_8.h │ │ ├── residue_16.h │ │ ├── residue_44.h │ │ ├── residue_44p51.h │ │ ├── residue_44u.h │ │ ├── residue_8.h │ │ ├── setup_11.h │ │ ├── setup_16.h │ │ ├── setup_22.h │ │ ├── setup_32.h │ │ ├── setup_44.h │ │ ├── setup_44p51.h │ │ ├── setup_44u.h │ │ ├── setup_8.h │ │ └── setup_X.h │ │ ├── os.h │ │ ├── psy.c │ │ ├── psy.h │ │ ├── registry.c │ │ ├── registry.h │ │ ├── res0.c │ │ ├── scales.h │ │ ├── sharedbook.c │ │ ├── smallft.c │ │ ├── smallft.h │ │ ├── synthesis.c │ │ ├── vorbisenc.c │ │ ├── vorbisfile.c │ │ ├── window.c │ │ └── window.h ├── ios │ ├── OpenManiaSplash.png │ ├── iOS Launch Screen.storyboard │ ├── libogg-1.3.2 │ │ ├── AUTHORS │ │ ├── Android.mk │ │ ├── CHANGES │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── android │ │ │ └── ogg │ │ │ │ └── config_types.h │ │ ├── compile │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.in │ │ ├── depcomp │ │ ├── doc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── fish_xiph_org.png │ │ │ ├── framing.html │ │ │ ├── index.html │ │ │ ├── libogg │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── bitpacking.html │ │ │ │ ├── datastructures.html │ │ │ │ ├── decoding.html │ │ │ │ ├── encoding.html │ │ │ │ ├── general.html │ │ │ │ ├── index.html │ │ │ │ ├── ogg_iovec_t.html │ │ │ │ ├── ogg_packet.html │ │ │ │ ├── ogg_packet_clear.html │ │ │ │ ├── ogg_page.html │ │ │ │ ├── ogg_page_bos.html │ │ │ │ ├── ogg_page_checksum_set.html │ │ │ │ ├── ogg_page_continued.html │ │ │ │ ├── ogg_page_eos.html │ │ │ │ ├── ogg_page_granulepos.html │ │ │ │ ├── ogg_page_packets.html │ │ │ │ ├── ogg_page_pageno.html │ │ │ │ ├── ogg_page_serialno.html │ │ │ │ ├── ogg_page_version.html │ │ │ │ ├── ogg_stream_check.html │ │ │ │ ├── ogg_stream_clear.html │ │ │ │ ├── ogg_stream_destroy.html │ │ │ │ ├── ogg_stream_eos.html │ │ │ │ ├── ogg_stream_flush.html │ │ │ │ ├── ogg_stream_flush_fill.html │ │ │ │ ├── ogg_stream_init.html │ │ │ │ ├── ogg_stream_iovecin.html │ │ │ │ ├── ogg_stream_packetin.html │ │ │ │ ├── ogg_stream_packetout.html │ │ │ │ ├── ogg_stream_packetpeek.html │ │ │ │ ├── ogg_stream_pagein.html │ │ │ │ ├── ogg_stream_pageout.html │ │ │ │ ├── ogg_stream_pageout_fill.html │ │ │ │ ├── ogg_stream_reset.html │ │ │ │ ├── ogg_stream_reset_serialno.html │ │ │ │ ├── ogg_stream_state.html │ │ │ │ ├── ogg_sync_buffer.html │ │ │ │ ├── ogg_sync_check.html │ │ │ │ ├── ogg_sync_clear.html │ │ │ │ ├── ogg_sync_destroy.html │ │ │ │ ├── ogg_sync_init.html │ │ │ │ ├── ogg_sync_pageout.html │ │ │ │ ├── ogg_sync_pageseek.html │ │ │ │ ├── ogg_sync_reset.html │ │ │ │ ├── ogg_sync_state.html │ │ │ │ ├── ogg_sync_wrote.html │ │ │ │ ├── oggpack_adv.html │ │ │ │ ├── oggpack_adv1.html │ │ │ │ ├── oggpack_bits.html │ │ │ │ ├── oggpack_buffer.html │ │ │ │ ├── oggpack_bytes.html │ │ │ │ ├── oggpack_get_buffer.html │ │ │ │ ├── oggpack_look.html │ │ │ │ ├── oggpack_look1.html │ │ │ │ ├── oggpack_read.html │ │ │ │ ├── oggpack_read1.html │ │ │ │ ├── oggpack_readinit.html │ │ │ │ ├── oggpack_reset.html │ │ │ │ ├── oggpack_write.html │ │ │ │ ├── oggpack_writealign.html │ │ │ │ ├── oggpack_writecheck.html │ │ │ │ ├── oggpack_writeclear.html │ │ │ │ ├── oggpack_writecopy.html │ │ │ │ ├── oggpack_writeinit.html │ │ │ │ ├── oggpack_writetrunc.html │ │ │ │ ├── overview.html │ │ │ │ ├── reference.html │ │ │ │ └── style.css │ │ │ ├── multiplex1.png │ │ │ ├── ogg-multiplex.html │ │ │ ├── oggstream.html │ │ │ ├── packets.png │ │ │ ├── pages.png │ │ │ ├── rfc3533.txt │ │ │ ├── rfc5334.txt │ │ │ ├── skeleton.html │ │ │ ├── stream.png │ │ │ ├── vorbisword2.png │ │ │ ├── white-ogg.png │ │ │ └── white-xifish.png │ │ ├── include │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── ogg │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── config_types.h.in │ │ │ │ ├── ogg.h │ │ │ │ └── os_types.h │ │ ├── install-sh │ │ ├── libogg.spec │ │ ├── libogg.spec.in │ │ ├── ltmain.sh │ │ ├── macosx │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ ├── Info.plist │ │ │ ├── Ogg.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── Ogg_Prefix.pch │ │ ├── missing │ │ ├── ogg-uninstalled.pc.in │ │ ├── ogg.m4 │ │ ├── ogg.pc.in │ │ ├── src │ │ │ ├── Makefile.am │ │ │ └── Makefile.in │ │ └── win32 │ │ │ ├── VS2003 │ │ │ ├── libogg │ │ │ │ └── libogg.vcproj │ │ │ └── ogg.sln │ │ │ ├── VS2005 │ │ │ ├── libogg_dynamic.sln │ │ │ ├── libogg_dynamic.vcproj │ │ │ ├── libogg_static.sln │ │ │ └── libogg_static.vcproj │ │ │ ├── VS2008 │ │ │ ├── libogg_dynamic.sln │ │ │ ├── libogg_dynamic.vcproj │ │ │ ├── libogg_static.sln │ │ │ └── libogg_static.vcproj │ │ │ ├── VS2010 │ │ │ ├── libogg_dynamic.sln │ │ │ ├── libogg_dynamic.vcxproj │ │ │ ├── libogg_static.sln │ │ │ └── libogg_static.vcxproj │ │ │ ├── VS6 │ │ │ ├── build_ogg_dynamic.bat │ │ │ ├── build_ogg_dynamic_debug.bat │ │ │ ├── build_ogg_static.bat │ │ │ ├── build_ogg_static_debug.bat │ │ │ ├── ogg.dsw │ │ │ ├── ogg_dynamic.dsp │ │ │ └── ogg_static.dsp │ │ │ └── ogg.def │ ├── libvorbis-1.3.5 │ │ ├── AUTHORS │ │ ├── CHANGES │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── autogen.sh │ │ ├── compile │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── depcomp │ │ ├── doc │ │ │ ├── 01-introduction.tex │ │ │ ├── 02-bitpacking.tex │ │ │ ├── 03-codebook.tex │ │ │ ├── 04-codec.tex │ │ │ ├── 05-comment.tex │ │ │ ├── 06-floor0.tex │ │ │ ├── 07-floor1.tex │ │ │ ├── 08-residue.tex │ │ │ ├── 09-helper.tex │ │ │ ├── 10-tables.tex │ │ │ ├── Doxyfile.in │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Vorbis_I_spec.cfg │ │ │ ├── Vorbis_I_spec.css │ │ │ ├── Vorbis_I_spec.html │ │ │ ├── Vorbis_I_spec.pdf │ │ │ ├── Vorbis_I_spec.tex │ │ │ ├── a1-encapsulation-ogg.tex │ │ │ ├── a2-encapsulation-rtp.tex │ │ │ ├── components.png │ │ │ ├── eightphase.png │ │ │ ├── fish_xiph_org.png │ │ │ ├── floor1-1.png │ │ │ ├── floor1-2.png │ │ │ ├── floor1-3.png │ │ │ ├── floor1-4.png │ │ │ ├── floor1_inverse_dB_table.html │ │ │ ├── floorval.png │ │ │ ├── footer.tex │ │ │ ├── fourphase.png │ │ │ ├── framing.html │ │ │ ├── helper.html │ │ │ ├── hufftree-under.png │ │ │ ├── hufftree.png │ │ │ ├── index.html │ │ │ ├── libvorbis │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── index.html │ │ │ │ ├── overview.html │ │ │ │ ├── reference.html │ │ │ │ ├── return.html │ │ │ │ ├── style.css │ │ │ │ ├── vorbis_analysis.html │ │ │ │ ├── vorbis_analysis_blockout.html │ │ │ │ ├── vorbis_analysis_buffer.html │ │ │ │ ├── vorbis_analysis_headerout.html │ │ │ │ ├── vorbis_analysis_init.html │ │ │ │ ├── vorbis_analysis_wrote.html │ │ │ │ ├── vorbis_bitrate_addblock.html │ │ │ │ ├── vorbis_bitrate_flushpacket.html │ │ │ │ ├── vorbis_block.html │ │ │ │ ├── vorbis_block_clear.html │ │ │ │ ├── vorbis_block_init.html │ │ │ │ ├── vorbis_comment.html │ │ │ │ ├── vorbis_comment_add.html │ │ │ │ ├── vorbis_comment_add_tag.html │ │ │ │ ├── vorbis_comment_clear.html │ │ │ │ ├── vorbis_comment_init.html │ │ │ │ ├── vorbis_comment_query.html │ │ │ │ ├── vorbis_comment_query_count.html │ │ │ │ ├── vorbis_commentheader_out.html │ │ │ │ ├── vorbis_dsp_clear.html │ │ │ │ ├── vorbis_dsp_state.html │ │ │ │ ├── vorbis_granule_time.html │ │ │ │ ├── vorbis_info.html │ │ │ │ ├── vorbis_info_blocksize.html │ │ │ │ ├── vorbis_info_clear.html │ │ │ │ ├── vorbis_info_init.html │ │ │ │ ├── vorbis_packet_blocksize.html │ │ │ │ ├── vorbis_synthesis.html │ │ │ │ ├── vorbis_synthesis_blockin.html │ │ │ │ ├── vorbis_synthesis_halfrate.html │ │ │ │ ├── vorbis_synthesis_halfrate_p.html │ │ │ │ ├── vorbis_synthesis_headerin.html │ │ │ │ ├── vorbis_synthesis_idheader.html │ │ │ │ ├── vorbis_synthesis_init.html │ │ │ │ ├── vorbis_synthesis_lapout.html │ │ │ │ ├── vorbis_synthesis_pcmout.html │ │ │ │ ├── vorbis_synthesis_read.html │ │ │ │ ├── vorbis_synthesis_restart.html │ │ │ │ ├── vorbis_synthesis_trackonly.html │ │ │ │ └── vorbis_version_string.html │ │ │ ├── oggstream.html │ │ │ ├── programming.html │ │ │ ├── residue-pack.png │ │ │ ├── residue2.png │ │ │ ├── rfc5215.txt │ │ │ ├── rfc5215.xml │ │ │ ├── squarepolar.png │ │ │ ├── stereo.html │ │ │ ├── stream.png │ │ │ ├── v-comment.html │ │ │ ├── vorbis-clip.txt │ │ │ ├── vorbis-errors.txt │ │ │ ├── vorbis-fidelity.html │ │ │ ├── vorbisenc │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── changes.html │ │ │ │ ├── examples.html │ │ │ │ ├── index.html │ │ │ │ ├── ovectl_ratemanage2_arg.html │ │ │ │ ├── ovectl_ratemanage_arg.html │ │ │ │ ├── overview.html │ │ │ │ ├── reference.html │ │ │ │ ├── style.css │ │ │ │ ├── vorbis_encode_ctl.html │ │ │ │ ├── vorbis_encode_init.html │ │ │ │ ├── vorbis_encode_init_vbr.html │ │ │ │ ├── vorbis_encode_setup_init.html │ │ │ │ ├── vorbis_encode_setup_managed.html │ │ │ │ └── vorbis_encode_setup_vbr.html │ │ │ ├── vorbisfile │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── OggVorbis_File.html │ │ │ │ ├── callbacks.html │ │ │ │ ├── chaining_example_c.html │ │ │ │ ├── chainingexample.html │ │ │ │ ├── crosslap.html │ │ │ │ ├── datastructures.html │ │ │ │ ├── decoding.html │ │ │ │ ├── example.html │ │ │ │ ├── exampleindex.html │ │ │ │ ├── fileinfo.html │ │ │ │ ├── index.html │ │ │ │ ├── initialization.html │ │ │ │ ├── ov_bitrate.html │ │ │ │ ├── ov_bitrate_instant.html │ │ │ │ ├── ov_callbacks.html │ │ │ │ ├── ov_clear.html │ │ │ │ ├── ov_comment.html │ │ │ │ ├── ov_crosslap.html │ │ │ │ ├── ov_fopen.html │ │ │ │ ├── ov_info.html │ │ │ │ ├── ov_open.html │ │ │ │ ├── ov_open_callbacks.html │ │ │ │ ├── ov_pcm_seek.html │ │ │ │ ├── ov_pcm_seek_lap.html │ │ │ │ ├── ov_pcm_seek_page.html │ │ │ │ ├── ov_pcm_seek_page_lap.html │ │ │ │ ├── ov_pcm_tell.html │ │ │ │ ├── ov_pcm_total.html │ │ │ │ ├── ov_raw_seek.html │ │ │ │ ├── ov_raw_seek_lap.html │ │ │ │ ├── ov_raw_tell.html │ │ │ │ ├── ov_raw_total.html │ │ │ │ ├── ov_read.html │ │ │ │ ├── ov_read_filter.html │ │ │ │ ├── ov_read_float.html │ │ │ │ ├── ov_seekable.html │ │ │ │ ├── ov_serialnumber.html │ │ │ │ ├── ov_streams.html │ │ │ │ ├── ov_test.html │ │ │ │ ├── ov_test_callbacks.html │ │ │ │ ├── ov_test_open.html │ │ │ │ ├── ov_time_seek.html │ │ │ │ ├── ov_time_seek_lap.html │ │ │ │ ├── ov_time_seek_page.html │ │ │ │ ├── ov_time_seek_page_lap.html │ │ │ │ ├── ov_time_tell.html │ │ │ │ ├── ov_time_total.html │ │ │ │ ├── overview.html │ │ │ │ ├── reference.html │ │ │ │ ├── seekexample.html │ │ │ │ ├── seeking.html │ │ │ │ ├── seeking_example_c.html │ │ │ │ ├── seeking_test_c.html │ │ │ │ ├── seekingexample.html │ │ │ │ ├── style.css │ │ │ │ ├── threads.html │ │ │ │ └── vorbisfile_example_c.html │ │ │ ├── window1.png │ │ │ └── window2.png │ │ ├── examples │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── chaining_example.c │ │ │ ├── decoder_example.c │ │ │ ├── encoder_example.c │ │ │ ├── frameview.pl │ │ │ ├── seeking_example.c │ │ │ └── vorbisfile_example.c │ │ ├── include │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── vorbis │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── codec.h │ │ │ │ ├── vorbisenc.h │ │ │ │ └── vorbisfile.h │ │ ├── install-sh │ │ ├── lib │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── analysis.c │ │ │ ├── backends.h │ │ │ ├── barkmel.c │ │ │ ├── bitrate.c │ │ │ ├── bitrate.h │ │ │ ├── block.c │ │ │ ├── books │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── coupled │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── res_books_51.h │ │ │ │ │ └── res_books_stereo.h │ │ │ │ ├── floor │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── floor_books.h │ │ │ │ └── uncoupled │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── res_books_uncoupled.h │ │ │ ├── codebook.c │ │ │ ├── codebook.h │ │ │ ├── codec_internal.h │ │ │ ├── envelope.c │ │ │ ├── envelope.h │ │ │ ├── floor0.c │ │ │ ├── floor1.c │ │ │ ├── highlevel.h │ │ │ ├── info.c │ │ │ ├── lookup.c │ │ │ ├── lookup.h │ │ │ ├── lookup_data.h │ │ │ ├── lookups.pl │ │ │ ├── lpc.c │ │ │ ├── lpc.h │ │ │ ├── lsp.c │ │ │ ├── lsp.h │ │ │ ├── mapping0.c │ │ │ ├── masking.h │ │ │ ├── mdct.c │ │ │ ├── mdct.h │ │ │ ├── misc.h │ │ │ ├── modes │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── floor_all.h │ │ │ │ ├── psych_11.h │ │ │ │ ├── psych_16.h │ │ │ │ ├── psych_44.h │ │ │ │ ├── psych_8.h │ │ │ │ ├── residue_16.h │ │ │ │ ├── residue_44.h │ │ │ │ ├── residue_44p51.h │ │ │ │ ├── residue_44u.h │ │ │ │ ├── residue_8.h │ │ │ │ ├── setup_11.h │ │ │ │ ├── setup_16.h │ │ │ │ ├── setup_22.h │ │ │ │ ├── setup_32.h │ │ │ │ ├── setup_44.h │ │ │ │ ├── setup_44p51.h │ │ │ │ ├── setup_44u.h │ │ │ │ ├── setup_8.h │ │ │ │ └── setup_X.h │ │ │ ├── os.h │ │ │ ├── psy.c │ │ │ ├── psy.h │ │ │ ├── psytune.c │ │ │ ├── registry.c │ │ │ ├── registry.h │ │ │ ├── res0.c │ │ │ ├── scales.h │ │ │ ├── sharedbook.c │ │ │ ├── smallft.c │ │ │ ├── smallft.h │ │ │ ├── synthesis.c │ │ │ ├── tone.c │ │ │ ├── vorbisenc.c │ │ │ ├── vorbisfile.c │ │ │ ├── window.c │ │ │ └── window.h │ │ ├── libvorbis.spec │ │ ├── libvorbis.spec.in │ │ ├── ltmain.sh │ │ ├── m4 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── add_cflags.m4 │ │ │ ├── ogg.m4 │ │ │ └── pkg.m4 │ │ ├── macos │ │ │ ├── compat │ │ │ │ ├── strdup.c │ │ │ │ └── sys │ │ │ │ │ └── types.h │ │ │ ├── decoder_example.mcp │ │ │ ├── encoder_example.mcp │ │ │ ├── libvorbis.mcp │ │ │ ├── libvorbis.mcp.exp │ │ │ ├── libvorbisenc.mcp │ │ │ ├── libvorbisenc.mcp.exp │ │ │ ├── libvorbisfile.mcp │ │ │ ├── libvorbisfile.mcp.exp │ │ │ └── vorbis.mcp │ │ ├── macosx │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ ├── Info.plist │ │ │ └── Vorbis.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── missing │ │ ├── symbian │ │ │ ├── bld.inf │ │ │ ├── config.h │ │ │ └── vorbis.mmp │ │ ├── test │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── test.c │ │ │ ├── util.c │ │ │ ├── util.h │ │ │ ├── write_read.c │ │ │ └── write_read.h │ │ ├── todo.txt │ │ ├── vorbis-uninstalled.pc.in │ │ ├── vorbis.m4 │ │ ├── vorbis.pc.in │ │ ├── vorbisenc-uninstalled.pc.in │ │ ├── vorbisenc.pc.in │ │ ├── vorbisfile-uninstalled.pc.in │ │ ├── vorbisfile.pc.in │ │ ├── vq │ │ │ ├── 16.vqs │ │ │ ├── 16u.vqs │ │ │ ├── 44c-1.vqs │ │ │ ├── 44c0.vqs │ │ │ ├── 44c1.vqs │ │ │ ├── 44c2.vqs │ │ │ ├── 44c3.vqs │ │ │ ├── 44c4.vqs │ │ │ ├── 44c5.vqs │ │ │ ├── 44c6.vqs │ │ │ ├── 44c7.vqs │ │ │ ├── 44c8.vqs │ │ │ ├── 44c9.vqs │ │ │ ├── 44p-1.vqs │ │ │ ├── 44p0.vqs │ │ │ ├── 44p1.vqs │ │ │ ├── 44p2.vqs │ │ │ ├── 44p3.vqs │ │ │ ├── 44p4.vqs │ │ │ ├── 44p5.vqs │ │ │ ├── 44p6.vqs │ │ │ ├── 44p7.vqs │ │ │ ├── 44p8.vqs │ │ │ ├── 44p9.vqs │ │ │ ├── 44u0.vqs │ │ │ ├── 44u1.vqs │ │ │ ├── 44u2.vqs │ │ │ ├── 44u3.vqs │ │ │ ├── 44u4.vqs │ │ │ ├── 44u5.vqs │ │ │ ├── 44u6.vqs │ │ │ ├── 44u7.vqs │ │ │ ├── 44u8.vqs │ │ │ ├── 44u9.vqs │ │ │ ├── 8.vqs │ │ │ ├── 8u.vqs │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── bookutil.c │ │ │ ├── bookutil.h │ │ │ ├── distribution.c │ │ │ ├── floor_11.vqs │ │ │ ├── floor_22.vqs │ │ │ ├── floor_44.vqs │ │ │ ├── huffbuild.c │ │ │ ├── latticebuild.c │ │ │ ├── latticetune.c │ │ │ ├── localcodebook.h │ │ │ ├── make_floor_books.pl │ │ │ ├── make_residue_books.pl │ │ │ ├── metrics.c │ │ │ ├── vqgen.c │ │ │ └── vqgen.h │ │ └── win32 │ │ │ ├── VS2005 │ │ │ ├── README │ │ │ ├── libogg.vsprops │ │ │ ├── libvorbis │ │ │ │ ├── libvorbis_dynamic.vcproj │ │ │ │ └── libvorbis_static.vcproj │ │ │ ├── libvorbisfile │ │ │ │ ├── libvorbisfile_dynamic.vcproj │ │ │ │ └── libvorbisfile_static.vcproj │ │ │ ├── vorbis_dynamic.sln │ │ │ ├── vorbis_static.sln │ │ │ ├── vorbisdec │ │ │ │ ├── vorbisdec_dynamic.vcproj │ │ │ │ └── vorbisdec_static.vcproj │ │ │ └── vorbisenc │ │ │ │ ├── vorbisenc_dynamic.vcproj │ │ │ │ └── vorbisenc_static.vcproj │ │ │ ├── VS2008 │ │ │ ├── README │ │ │ ├── libogg.vsprops │ │ │ ├── libvorbis │ │ │ │ ├── libvorbis_dynamic.vcproj │ │ │ │ └── libvorbis_static.vcproj │ │ │ ├── libvorbisfile │ │ │ │ ├── libvorbisfile_dynamic.vcproj │ │ │ │ └── libvorbisfile_static.vcproj │ │ │ ├── vorbis_dynamic.sln │ │ │ ├── vorbis_static.sln │ │ │ ├── vorbisdec │ │ │ │ ├── vorbisdec_dynamic.vcproj │ │ │ │ └── vorbisdec_static.vcproj │ │ │ └── vorbisenc │ │ │ │ ├── vorbisenc_dynamic.vcproj │ │ │ │ └── vorbisenc_static.vcproj │ │ │ ├── VS2010 │ │ │ ├── README │ │ │ ├── libogg.props │ │ │ ├── libvorbis │ │ │ │ ├── libvorbis_dynamic.vcxproj │ │ │ │ └── libvorbis_static.vcxproj │ │ │ ├── libvorbisfile │ │ │ │ ├── libvorbisfile_dynamic.vcxproj │ │ │ │ └── libvorbisfile_static.vcxproj │ │ │ ├── vorbis_dynamic.sln │ │ │ ├── vorbis_static.sln │ │ │ ├── vorbisdec │ │ │ │ ├── vorbisdec_dynamic.vcxproj │ │ │ │ └── vorbisdec_static.vcxproj │ │ │ └── vorbisenc │ │ │ │ ├── vorbisenc_dynamic.vcxproj │ │ │ │ └── vorbisenc_static.vcxproj │ │ │ ├── vorbis.def │ │ │ ├── vorbisenc.def │ │ │ └── vorbisfile.def │ └── libvorbisidec-1.2.1 │ │ ├── Android.mk │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── Version_script.in │ │ ├── acinclude │ │ ├── ogg.m4 │ │ └── pkg.m4 │ │ ├── aclocal.m4 │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.in │ │ ├── depcomp │ │ ├── doc │ │ ├── OggVorbis_File.html │ │ ├── build.html │ │ ├── callbacks.html │ │ ├── datastructures.html │ │ ├── decoding.html │ │ ├── diff.html │ │ ├── example.html │ │ ├── fileinfo.html │ │ ├── index.html │ │ ├── initialization.html │ │ ├── ov_bitrate.html │ │ ├── ov_bitrate_instant.html │ │ ├── ov_callbacks.html │ │ ├── ov_clear.html │ │ ├── ov_comment.html │ │ ├── ov_info.html │ │ ├── ov_open.html │ │ ├── ov_open_callbacks.html │ │ ├── ov_pcm_seek.html │ │ ├── ov_pcm_seek_page.html │ │ ├── ov_pcm_tell.html │ │ ├── ov_pcm_total.html │ │ ├── ov_raw_seek.html │ │ ├── ov_raw_tell.html │ │ ├── ov_raw_total.html │ │ ├── ov_read.html │ │ ├── ov_seekable.html │ │ ├── ov_serialnumber.html │ │ ├── ov_streams.html │ │ ├── ov_test.html │ │ ├── ov_test_callbacks.html │ │ ├── ov_test_open.html │ │ ├── ov_time_seek.html │ │ ├── ov_time_seek_page.html │ │ ├── ov_time_tell.html │ │ ├── ov_time_total.html │ │ ├── overview.html │ │ ├── reference.html │ │ ├── return.html │ │ ├── seeking.html │ │ ├── threads.html │ │ ├── vorbis_comment.html │ │ └── vorbis_info.html │ │ ├── install-sh │ │ ├── iseeking_example.c │ │ ├── ivorbisfile_example.c │ │ ├── ltmain.sh │ │ ├── missing │ │ ├── vorbisidec.pc.in │ │ └── win32 │ │ ├── VS2005 │ │ └── libtremor │ │ │ └── libtremor.vcproj │ │ └── VS2008 │ │ └── libtremor │ │ └── libtremor.vcproj ├── mac │ ├── icon.icns │ ├── include │ │ ├── jconfig.h │ │ ├── jerror.h │ │ ├── jmorecfg.h │ │ ├── jpeglib.h │ │ ├── libpng16 │ │ │ ├── png.h │ │ │ ├── pngconf.h │ │ │ └── pnglibconf.h │ │ ├── ogg │ │ │ ├── config_types.h │ │ │ ├── ogg.h │ │ │ └── os_types.h │ │ └── vorbis │ │ │ ├── codec.h │ │ │ ├── vorbisenc.h │ │ │ └── vorbisfile.h │ ├── libcurl.4.a │ ├── libcurl.4.dylib │ ├── libcurl.a │ ├── libogg.0.a │ ├── libogg.0.dylib │ ├── libogg.a │ ├── libpng16.16.a │ ├── libpng16.16.dylib │ ├── libpng16.a │ ├── libvorbis.0.a │ ├── libvorbis.0.dylib │ ├── libvorbis.a │ ├── libvorbisfile.3.a │ ├── libvorbisfile.3.dylib │ └── libvorbisfile.a ├── nx │ └── icon.jpg └── win │ ├── VisualElementsManifest.xml │ ├── bin │ ├── SDL2.dll │ ├── SDL2_image.dll │ ├── avformat-58.dll │ ├── avutil-56.dll │ ├── discord-rpc.dll │ ├── freeglut.dll │ ├── glew32.dll │ ├── libjpeg-9.dll │ ├── libpng16-16.dll │ ├── libtiff-5.dll │ ├── libwebp-7.dll │ ├── swresample-3.dll │ ├── swscale-5.dll │ ├── zlib1.dll │ ├── zlib12.dll │ └── zlibwapi.dll │ ├── icon.ico │ ├── icon.rc │ ├── icon.res │ ├── include │ ├── GL │ │ ├── eglew.h │ │ ├── freeglut.h │ │ ├── freeglut_ext.h │ │ ├── freeglut_std.h │ │ ├── glew.h │ │ ├── glut.h │ │ ├── glxew.h │ │ └── wglew.h │ ├── SDL2 │ │ ├── SDL.h │ │ ├── SDL_assert.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_bits.h │ │ ├── SDL_blendmode.h │ │ ├── SDL_clipboard.h │ │ ├── SDL_config.h │ │ ├── SDL_config.h.cmake │ │ ├── SDL_config.h.in │ │ ├── SDL_config_android.h │ │ ├── SDL_config_iphoneos.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_config_macosx.h.orig │ │ ├── SDL_config_minimal.h │ │ ├── SDL_config_pandora.h │ │ ├── SDL_config_psp.h │ │ ├── SDL_config_windows.h │ │ ├── SDL_config_winrt.h │ │ ├── SDL_config_wiz.h │ │ ├── SDL_copying.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_egl.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_filesystem.h │ │ ├── SDL_gamecontroller.h │ │ ├── SDL_gesture.h │ │ ├── SDL_haptic.h │ │ ├── SDL_hints.h │ │ ├── SDL_image.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keycode.h │ │ ├── SDL_loadso.h │ │ ├── SDL_log.h │ │ ├── SDL_main.h │ │ ├── SDL_messagebox.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_ttf.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── SDL_vulkan.h │ │ ├── begin_code.h │ │ └── close_code.h │ ├── curl │ │ ├── curl.h │ │ ├── curlver.h │ │ ├── easy.h │ │ ├── mprintf.h │ │ ├── multi.h │ │ ├── stdcheaders.h │ │ ├── system.h │ │ ├── typecheck-gcc.h │ │ └── urlapi.h │ ├── discord_game_sdk.h │ ├── discord_register.h │ ├── discord_rpc.h │ ├── freetype │ │ ├── config │ │ │ ├── ftconfig.h │ │ │ ├── ftheader.h │ │ │ ├── ftmodule.h │ │ │ ├── ftoption.h │ │ │ └── ftstdlib.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 │ │ │ ├── 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 │ │ │ ├── internal.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 │ ├── jchuff.h │ ├── jconfig.h │ ├── jdct.h │ ├── jdhuff.h │ ├── jerror.h │ ├── jinclude.h │ ├── jmemsys.h │ ├── jmorecfg.h │ ├── jpegint.h │ ├── jpeglib.h │ ├── jversion.h │ ├── libavcodec │ │ ├── ac3_parser.h │ │ ├── adts_parser.h │ │ ├── avcodec.h │ │ ├── avdct.h │ │ ├── avfft.h │ │ ├── d3d11va.h │ │ ├── dirac.h │ │ ├── dv_profile.h │ │ ├── dxva2.h │ │ ├── jni.h │ │ ├── mediacodec.h │ │ ├── qsv.h │ │ ├── vaapi.h │ │ ├── vdpau.h │ │ ├── version.h │ │ ├── videotoolbox.h │ │ ├── vorbis_parser.h │ │ └── xvmc.h │ ├── libavformat │ │ ├── avformat.h │ │ ├── avio.h │ │ └── version.h │ ├── libavutil │ │ ├── adler32.h │ │ ├── aes.h │ │ ├── aes_ctr.h │ │ ├── attributes.h │ │ ├── audio_fifo.h │ │ ├── avassert.h │ │ ├── avconfig.h │ │ ├── avstring.h │ │ ├── avutil.h │ │ ├── base64.h │ │ ├── blowfish.h │ │ ├── bprint.h │ │ ├── bswap.h │ │ ├── buffer.h │ │ ├── camellia.h │ │ ├── cast5.h │ │ ├── channel_layout.h │ │ ├── common.h │ │ ├── cpu.h │ │ ├── crc.h │ │ ├── des.h │ │ ├── dict.h │ │ ├── display.h │ │ ├── downmix_info.h │ │ ├── encryption_info.h │ │ ├── error.h │ │ ├── eval.h │ │ ├── ffversion.h │ │ ├── fifo.h │ │ ├── file.h │ │ ├── frame.h │ │ ├── hash.h │ │ ├── hmac.h │ │ ├── hwcontext.h │ │ ├── hwcontext_cuda.h │ │ ├── hwcontext_d3d11va.h │ │ ├── hwcontext_drm.h │ │ ├── hwcontext_dxva2.h │ │ ├── hwcontext_mediacodec.h │ │ ├── hwcontext_qsv.h │ │ ├── hwcontext_vaapi.h │ │ ├── hwcontext_vdpau.h │ │ ├── hwcontext_videotoolbox.h │ │ ├── imgutils.h │ │ ├── intfloat.h │ │ ├── intreadwrite.h │ │ ├── lfg.h │ │ ├── log.h │ │ ├── lzo.h │ │ ├── macros.h │ │ ├── mastering_display_metadata.h │ │ ├── mathematics.h │ │ ├── md5.h │ │ ├── mem.h │ │ ├── motion_vector.h │ │ ├── murmur3.h │ │ ├── opt.h │ │ ├── parseutils.h │ │ ├── pixdesc.h │ │ ├── pixelutils.h │ │ ├── pixfmt.h │ │ ├── random_seed.h │ │ ├── rational.h │ │ ├── rc4.h │ │ ├── replaygain.h │ │ ├── ripemd.h │ │ ├── samplefmt.h │ │ ├── sha.h │ │ ├── sha512.h │ │ ├── spherical.h │ │ ├── stereo3d.h │ │ ├── tea.h │ │ ├── threadmessage.h │ │ ├── time.h │ │ ├── timecode.h │ │ ├── timestamp.h │ │ ├── tree.h │ │ ├── twofish.h │ │ ├── version.h │ │ └── xtea.h │ ├── libswresample │ │ ├── swresample.h │ │ └── version.h │ ├── libswscale │ │ ├── swscale.h │ │ └── version.h │ ├── ogg │ │ ├── ogg.h │ │ └── os_types.h │ ├── png.h │ ├── pngconf.h │ ├── pnglibconf.h │ ├── vorbis │ │ ├── codec.h │ │ ├── vorbisenc.h │ │ └── vorbisfile.h │ ├── zconf.h │ └── zlib.h │ └── lib │ ├── New folder (2) │ ├── discord_game_sdk.dll │ └── discord_game_sdk.dll.lib │ ├── New folder │ ├── SDL2_image.lib │ ├── SDL2test.lib │ ├── discord-rpc.lib │ ├── discord_game_sdk.dll │ ├── discord_game_sdk.dll.lib │ ├── freeglut.lib │ ├── glew32.lib │ ├── zlib.dll │ ├── zlib.lib │ ├── zlibstatic.lib │ └── zlibwapi.lib │ ├── SDL2.lib │ ├── SDL2main.lib │ ├── avcodec.lib │ ├── avformat.lib │ ├── avutil.lib │ ├── freetype.lib │ ├── glew32s.lib │ ├── libcurl.lib │ ├── libcurl_a.lib │ ├── libcurl_a_debug.lib │ ├── libjpeg.lib │ ├── libogg_static.lib │ ├── libpng16.lib │ ├── libvorbis_static.lib │ ├── libvorbisfile_static.lib │ ├── mingw │ ├── i686-w64-mingw32 │ │ ├── libSDL2.a │ │ ├── libSDL2.dll.a │ │ └── libSDL2main.a │ └── x86_64-w64-mingw32 │ │ ├── libSDL2.a │ │ ├── libSDL2.dll.a │ │ └── libSDL2main.a │ ├── swresample.lib │ ├── swscale.lib │ ├── zlib.lib │ └── zlibstat.lib ├── source ├── Engine │ ├── Application.cpp │ ├── Audio │ │ ├── AudioManager.cpp │ │ └── StackNode.h │ ├── Bytecode │ │ ├── BytecodeObject.cpp │ │ ├── BytecodeObjectManager.cpp │ │ ├── Compiler.cpp │ │ ├── CompilerEnums.h │ │ ├── GarbageCollector.cpp │ │ ├── SourceFileMap.cpp │ │ ├── StandardLibrary.cpp │ │ ├── Types.cpp │ │ ├── Types.h │ │ ├── VMThread.cpp │ │ └── Values.cpp │ ├── Diagnostics │ │ ├── Clock.cpp │ │ ├── Log.cpp │ │ ├── Memory.cpp │ │ ├── MemoryPools.cpp │ │ ├── MemoryPools.h │ │ ├── PerformanceMeasure.cpp │ │ ├── PerformanceTypes.h │ │ └── RemoteDebug.cpp │ ├── Extensions │ │ └── Discord.cpp │ ├── Filesystem │ │ ├── Directory.cpp │ │ └── File.cpp │ ├── FontFace.cpp │ ├── Graphics.cpp │ ├── Hashing │ │ ├── CRC32.cpp │ │ ├── CombinedHash.cpp │ │ ├── FNV1A.cpp │ │ ├── MD5.cpp │ │ └── Murmur.cpp │ ├── IO │ │ ├── Compression │ │ │ ├── CompressionEnums.h │ │ │ ├── Huffman.cpp │ │ │ ├── LZ11.cpp │ │ │ ├── LZSS.cpp │ │ │ ├── RunLength.cpp │ │ │ └── ZLibStream.cpp │ │ ├── FileStream.cpp │ │ ├── MemoryStream.cpp │ │ ├── NetworkStream.cpp │ │ ├── ResourceStream.cpp │ │ ├── SDLStream.cpp │ │ └── Stream.cpp │ ├── Includes │ │ ├── HashMap.h │ │ ├── Standard.h │ │ └── StandardSDL2.h │ ├── InputManager.cpp │ ├── Main.cpp │ ├── Math │ │ ├── Ease.cpp │ │ ├── IMath.cpp.unused │ │ ├── Math.cpp │ │ └── Matrix4x4.cpp │ ├── Media │ │ ├── Decoder.cpp │ │ ├── Decoders │ │ │ ├── AudioDecoder.cpp │ │ │ └── VideoDecoder.cpp │ │ ├── Includes │ │ │ ├── AVCodec.h │ │ │ ├── AVFormat.h │ │ │ ├── AVUtils.h │ │ │ ├── SWResample.h │ │ │ └── SWScale.h │ │ ├── MediaPlayer.cpp │ │ ├── MediaSource.cpp │ │ └── Utils │ │ │ ├── Codec.h │ │ │ ├── MediaPlayerState.cpp │ │ │ ├── PtrBuffer.cpp │ │ │ └── RingBuffer.cpp │ ├── Network │ │ ├── AndroidWifiP2P.cpp │ │ ├── HTTP.cpp │ │ ├── WebSocketClient.cpp │ │ └── WebSocketIncludes.h │ ├── Platforms │ │ ├── MacOS │ │ │ ├── Filesystem.h │ │ │ └── Filesystem.m │ │ └── iOS │ │ │ ├── MediaPlayer.h │ │ │ └── MediaPlayer.m.ignore │ ├── Rendering │ │ ├── 3D.h │ │ ├── D3D │ │ │ └── D3DRenderer.cpp │ │ ├── Enums.h │ │ ├── GL │ │ │ ├── GLRenderer.cpp │ │ │ ├── GLShader.cpp │ │ │ └── Includes.h │ │ ├── Metal │ │ │ ├── Includes.h │ │ │ ├── MetalFuncs.h │ │ │ ├── MetalRenderer.cpp.unused │ │ │ └── MetalRenderer.mm.unused │ │ ├── SDL2 │ │ │ ├── SDL2MetalFunc.h │ │ │ ├── SDL2MetalFunc.m │ │ │ └── SDL2Renderer.cpp │ │ ├── Shader.cpp │ │ ├── Software │ │ │ └── SoftwareRenderer.cpp │ │ └── Texture.cpp │ ├── ResourceTypes │ │ ├── IModel.cpp │ │ ├── ISound.cpp │ │ ├── ISprite.cpp │ │ ├── Image.cpp │ │ ├── ImageFormats │ │ │ ├── GIF.cpp │ │ │ ├── ImageFormat.cpp │ │ │ ├── JPEG.cpp │ │ │ └── PNG.cpp │ │ ├── ModelFormats │ │ │ ├── COLLADA.h │ │ │ └── COLLADAReader.cpp │ │ ├── ResourceManager.cpp │ │ ├── ResourceType.h │ │ ├── SceneFormats │ │ │ ├── HatchSceneReader.cpp │ │ │ ├── HatchSceneTypes.h │ │ │ ├── RSDKSceneReader.cpp │ │ │ └── TiledMapReader.cpp │ │ └── SoundFormats │ │ │ ├── OGG.cpp │ │ │ ├── SoundFormat.cpp │ │ │ └── WAV.cpp │ ├── Scene.cpp │ ├── Scene │ │ ├── SceneLayer.cpp │ │ ├── ScrollingIndex.cpp │ │ ├── ScrollingInfo.cpp │ │ ├── TileConfig.cpp │ │ ├── TileSpriteInfo.cpp │ │ └── View.cpp │ ├── Sprites │ │ └── Animation.h │ ├── TextFormats │ │ ├── INI.cpp │ │ ├── JSON │ │ │ └── jsmn.h │ │ └── XML │ │ │ ├── XMLNode.h │ │ │ └── XMLParser.cpp │ ├── Types │ │ ├── DrawGroupList.cpp │ │ ├── Entity.cpp │ │ ├── EntityTypes.h │ │ └── ObjectList.cpp │ └── Utilities │ │ └── StringUtils.cpp └── Libraries │ ├── ini.h │ ├── miniz.c │ ├── miniz.h │ ├── stb_image.h │ ├── stb_vorbis.c │ └── stb_vorbis.h └── tools ├── Animation Editor ├── Animation Editor.exe ├── INIFileParser.dll ├── RSDKv5.dll ├── SharpDX.Desktop.dll ├── SharpDX.Direct3D9.dll ├── SharpDX.Mathematics.dll ├── SharpDX.dll ├── SonLVLAPI.dll ├── SonicRetro.KensSharp.Common.dll ├── SonicRetro.KensSharp.Enigma.dll ├── SonicRetro.KensSharp.Kosinski.dll ├── SonicRetro.KensSharp.Nemesis.dll └── zlib.net.dll ├── Dependency Walker ├── depends.chm ├── depends.dll └── depends.exe ├── HatchDocGen.exe ├── HatchPack ├── HatchPack.exe ├── Microsoft.WindowsAPICodePack.Shell.dll ├── Microsoft.WindowsAPICodePack.dll └── zlib.net.dll ├── HatchTileCollisionEditor ├── HatchTileCollisionEditor.exe ├── HatchTileCollisionEditor.exe.config ├── HatchTileCollisionEditor.pdb ├── SharpDX.Desktop.dll ├── SharpDX.Direct3D9.dll ├── SharpDX.Mathematics.dll └── SharpDX.dll ├── lmakeheaders ├── makeheaders └── makeheaders.exe /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/.gitignore -------------------------------------------------------------------------------- /Android-Project - Copy/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Android-Project - Copy/app/build.gradle -------------------------------------------------------------------------------- /Android-Project - Copy/app/src/main/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /Android-Project - Copy/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Android-Project - Copy/build.gradle -------------------------------------------------------------------------------- /Android-Project - Copy/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Android-Project - Copy/gradlew -------------------------------------------------------------------------------- /Android-Project - Copy/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Android-Project - Copy/gradlew.bat -------------------------------------------------------------------------------- /Android-Project - Copy/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android-Project/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Android-Project/.idea/gradle.xml -------------------------------------------------------------------------------- /Android-Project/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Android-Project/.idea/misc.xml -------------------------------------------------------------------------------- /Android-Project/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Android-Project/.idea/modules.xml -------------------------------------------------------------------------------- /Android-Project/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Android-Project/.idea/workspace.xml -------------------------------------------------------------------------------- /Android-Project/_LINK_SDL2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Android-Project/_LINK_SDL2.bat -------------------------------------------------------------------------------- /Android-Project/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Android-Project/app/build.gradle -------------------------------------------------------------------------------- /Android-Project/app/src/main/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /Android-Project/app/src/main/jni/SDL2: -------------------------------------------------------------------------------- 1 | C:/AndroidLIB/SDL2-2.0.8 -------------------------------------------------------------------------------- /Android-Project/app/src/main/jni/SDL2_image: -------------------------------------------------------------------------------- 1 | C:/AndroidLIB/SDL2_image-2.0.2 -------------------------------------------------------------------------------- /Android-Project/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Android-Project/build.gradle -------------------------------------------------------------------------------- /Android-Project/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Android-Project/gradlew -------------------------------------------------------------------------------- /Android-Project/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Android-Project/gradlew.bat -------------------------------------------------------------------------------- /Android-Project/import-summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Android-Project/import-summary.txt -------------------------------------------------------------------------------- /Android-Project/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MAKE_NX.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/MAKE_NX.bat -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.nx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Makefile.nx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/README.md -------------------------------------------------------------------------------- /VisualC/HatchGameEngine.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/VisualC/HatchGameEngine.sln -------------------------------------------------------------------------------- /VisualC/HatchGameEngine.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/VisualC/HatchGameEngine.vcxproj -------------------------------------------------------------------------------- /VisualC/HatchGameEngine.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/VisualC/HatchGameEngine.vcxproj.filters -------------------------------------------------------------------------------- /VisualC/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/VisualC/SDL2.dll -------------------------------------------------------------------------------- /Xcode-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/Info.plist -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/configure -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/include/SDL.h -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/include/SDL_bits.h -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/include/SDL_egl.h -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/include/SDL_log.h -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/include/SDL_main.h -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/include/SDL_name.h -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/include/SDL_quit.h -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/include/SDL_rect.h -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/include/SDL_test.h -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/src/SDL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/src/SDL.c -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/src/SDL_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/src/SDL_assert.c -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/src/SDL_assert_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/src/SDL_assert_c.h -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/src/SDL_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/src/SDL_error.c -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/src/SDL_error_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/src/SDL_error_c.h -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/src/SDL_hints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/src/SDL_hints.c -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/src/SDL_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/src/SDL_internal.h -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/src/SDL_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/src/SDL_log.c -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/src/hidapi/libusb/hidusb.cpp: -------------------------------------------------------------------------------- 1 | 2 | #define NAMESPACE HIDUSB 3 | #include "hid.c" 4 | -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/src/hidapi/linux/hidraw.cpp: -------------------------------------------------------------------------------- 1 | 2 | #define NAMESPACE HIDRAW 3 | #include "hid.c" 4 | -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/src/hidapi/testgui/TestGUI.app.in/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/src/libm/e_atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/src/libm/e_atan2.c -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/src/libm/e_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/src/libm/e_exp.c -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/src/libm/e_fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/src/libm/e_fmod.c -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/src/libm/e_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/src/libm/e_log.c -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/src/libm/e_log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/src/libm/e_log10.c -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/src/libm/e_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/src/libm/e_pow.c -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/src/libm/e_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/src/libm/e_sqrt.c -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/src/libm/k_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/src/libm/k_cos.c -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/src/libm/k_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/src/libm/k_sin.c -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/src/libm/k_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/src/libm/k_tan.c -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/src/libm/s_atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/src/libm/s_atan.c -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/src/libm/s_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/src/libm/s_cos.c -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/src/libm/s_fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/src/libm/s_fabs.c -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/src/libm/s_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/src/libm/s_floor.c -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/src/libm/s_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/src/libm/s_sin.c -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/src/libm/s_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/src/libm/s_tan.c -------------------------------------------------------------------------------- /Xcode-iOS/SDL2-2.0.10/src/video/qnx/gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/SDL2-2.0.10/src/video/qnx/gl.c -------------------------------------------------------------------------------- /Xcode-iOS/iOS Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/iOS Launch Screen.storyboard -------------------------------------------------------------------------------- /Xcode-iOS/libraries/asm_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/asm_arm.h -------------------------------------------------------------------------------- /Xcode-iOS/libraries/backends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/backends.h -------------------------------------------------------------------------------- /Xcode-iOS/libraries/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/bitwise.c -------------------------------------------------------------------------------- /Xcode-iOS/libraries/codebook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/codebook.c -------------------------------------------------------------------------------- /Xcode-iOS/libraries/codebook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/codebook.h -------------------------------------------------------------------------------- /Xcode-iOS/libraries/codec_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/codec_internal.h -------------------------------------------------------------------------------- /Xcode-iOS/libraries/config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/config_types.h -------------------------------------------------------------------------------- /Xcode-iOS/libraries/floor0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/floor0.c -------------------------------------------------------------------------------- /Xcode-iOS/libraries/floor1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/floor1.c -------------------------------------------------------------------------------- /Xcode-iOS/libraries/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/framing.c -------------------------------------------------------------------------------- /Xcode-iOS/libraries/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/info.c -------------------------------------------------------------------------------- /Xcode-iOS/libraries/ivorbiscodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/ivorbiscodec.h -------------------------------------------------------------------------------- /Xcode-iOS/libraries/ivorbisfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/ivorbisfile.h -------------------------------------------------------------------------------- /Xcode-iOS/libraries/lsp_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/lsp_lookup.h -------------------------------------------------------------------------------- /Xcode-iOS/libraries/mapping0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/mapping0.c -------------------------------------------------------------------------------- /Xcode-iOS/libraries/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/mdct.c -------------------------------------------------------------------------------- /Xcode-iOS/libraries/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/mdct.h -------------------------------------------------------------------------------- /Xcode-iOS/libraries/mdct_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/mdct_lookup.h -------------------------------------------------------------------------------- /Xcode-iOS/libraries/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/misc.h -------------------------------------------------------------------------------- /Xcode-iOS/libraries/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/os.h -------------------------------------------------------------------------------- /Xcode-iOS/libraries/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/registry.c -------------------------------------------------------------------------------- /Xcode-iOS/libraries/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/registry.h -------------------------------------------------------------------------------- /Xcode-iOS/libraries/res012.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/res012.c -------------------------------------------------------------------------------- /Xcode-iOS/libraries/sharedbook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/sharedbook.c -------------------------------------------------------------------------------- /Xcode-iOS/libraries/synthesis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/synthesis.c -------------------------------------------------------------------------------- /Xcode-iOS/libraries/v_block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/v_block.c -------------------------------------------------------------------------------- /Xcode-iOS/libraries/v_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/v_block.h -------------------------------------------------------------------------------- /Xcode-iOS/libraries/vorbisfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/vorbisfile.c -------------------------------------------------------------------------------- /Xcode-iOS/libraries/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/window.c -------------------------------------------------------------------------------- /Xcode-iOS/libraries/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/window.h -------------------------------------------------------------------------------- /Xcode-iOS/libraries/window_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/Xcode-iOS/libraries/window_lookup.h -------------------------------------------------------------------------------- /cmake/Modules/FindOgg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/cmake/Modules/FindOgg.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/cmake/Modules/FindSDL2.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindVorbis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/cmake/Modules/FindVorbis.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindVorbisFile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/cmake/Modules/FindVorbisFile.cmake -------------------------------------------------------------------------------- /cmake/WindowsToolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/cmake/WindowsToolchain.cmake -------------------------------------------------------------------------------- /cmake/cross_compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/cmake/cross_compile.sh -------------------------------------------------------------------------------- /guides/Documentation - Copy.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/guides/Documentation - Copy.htm -------------------------------------------------------------------------------- /guides/Documentation.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/guides/Documentation.htm -------------------------------------------------------------------------------- /guides/Setup Guides/MacOSX/Android Exporting.txt: -------------------------------------------------------------------------------- 1 | https://hg.libsdl.org/SDL/file/default/docs/README-android.md 2 | -------------------------------------------------------------------------------- /include/Engine/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Application.h -------------------------------------------------------------------------------- /include/Engine/Audio/AudioManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Audio/AudioManager.h -------------------------------------------------------------------------------- /include/Engine/Bytecode/BytecodeObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Bytecode/BytecodeObject.h -------------------------------------------------------------------------------- /include/Engine/Bytecode/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Bytecode/Compiler.h -------------------------------------------------------------------------------- /include/Engine/Bytecode/SourceFileMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Bytecode/SourceFileMap.h -------------------------------------------------------------------------------- /include/Engine/Bytecode/VMThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Bytecode/VMThread.h -------------------------------------------------------------------------------- /include/Engine/Bytecode/Values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Bytecode/Values.h -------------------------------------------------------------------------------- /include/Engine/Diagnostics/Clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Diagnostics/Clock.h -------------------------------------------------------------------------------- /include/Engine/Diagnostics/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Diagnostics/Log.h -------------------------------------------------------------------------------- /include/Engine/Diagnostics/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Diagnostics/Memory.h -------------------------------------------------------------------------------- /include/Engine/Diagnostics/RemoteDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Diagnostics/RemoteDebug.h -------------------------------------------------------------------------------- /include/Engine/Extensions/Discord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Extensions/Discord.h -------------------------------------------------------------------------------- /include/Engine/Filesystem/Directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Filesystem/Directory.h -------------------------------------------------------------------------------- /include/Engine/Filesystem/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Filesystem/File.h -------------------------------------------------------------------------------- /include/Engine/FontFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/FontFace.h -------------------------------------------------------------------------------- /include/Engine/Graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Graphics.h -------------------------------------------------------------------------------- /include/Engine/Hashing/CRC32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Hashing/CRC32.h -------------------------------------------------------------------------------- /include/Engine/Hashing/CombinedHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Hashing/CombinedHash.h -------------------------------------------------------------------------------- /include/Engine/Hashing/FNV1A.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Hashing/FNV1A.h -------------------------------------------------------------------------------- /include/Engine/Hashing/MD5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Hashing/MD5.h -------------------------------------------------------------------------------- /include/Engine/Hashing/Murmur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Hashing/Murmur.h -------------------------------------------------------------------------------- /include/Engine/IO/Compression/Huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/IO/Compression/Huffman.h -------------------------------------------------------------------------------- /include/Engine/IO/Compression/LZ11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/IO/Compression/LZ11.h -------------------------------------------------------------------------------- /include/Engine/IO/Compression/LZSS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/IO/Compression/LZSS.h -------------------------------------------------------------------------------- /include/Engine/IO/FileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/IO/FileStream.h -------------------------------------------------------------------------------- /include/Engine/IO/MemoryStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/IO/MemoryStream.h -------------------------------------------------------------------------------- /include/Engine/IO/NetworkStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/IO/NetworkStream.h -------------------------------------------------------------------------------- /include/Engine/IO/ResourceStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/IO/ResourceStream.h -------------------------------------------------------------------------------- /include/Engine/IO/SDLStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/IO/SDLStream.h -------------------------------------------------------------------------------- /include/Engine/IO/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/IO/Stream.h -------------------------------------------------------------------------------- /include/Engine/InputManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/InputManager.h -------------------------------------------------------------------------------- /include/Engine/Math/Ease.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Math/Ease.h -------------------------------------------------------------------------------- /include/Engine/Math/IMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Math/IMath.h -------------------------------------------------------------------------------- /include/Engine/Math/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Math/Math.h -------------------------------------------------------------------------------- /include/Engine/Math/Matrix4x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Math/Matrix4x4.h -------------------------------------------------------------------------------- /include/Engine/Media/Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Media/Decoder.h -------------------------------------------------------------------------------- /include/Engine/Media/MediaPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Media/MediaPlayer.h -------------------------------------------------------------------------------- /include/Engine/Media/MediaSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Media/MediaSource.h -------------------------------------------------------------------------------- /include/Engine/Media/Utils/PtrBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Media/Utils/PtrBuffer.h -------------------------------------------------------------------------------- /include/Engine/Media/Utils/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Media/Utils/RingBuffer.h -------------------------------------------------------------------------------- /include/Engine/Network/HTTP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Network/HTTP.h -------------------------------------------------------------------------------- /include/Engine/Network/WebSocketClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Network/WebSocketClient.h -------------------------------------------------------------------------------- /include/Engine/Rendering/GL/GLRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Rendering/GL/GLRenderer.h -------------------------------------------------------------------------------- /include/Engine/Rendering/GL/GLShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Rendering/GL/GLShader.h -------------------------------------------------------------------------------- /include/Engine/Rendering/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Rendering/Shader.h -------------------------------------------------------------------------------- /include/Engine/Rendering/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Rendering/Texture.h -------------------------------------------------------------------------------- /include/Engine/ResourceTypes/IModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/ResourceTypes/IModel.h -------------------------------------------------------------------------------- /include/Engine/ResourceTypes/ISound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/ResourceTypes/ISound.h -------------------------------------------------------------------------------- /include/Engine/ResourceTypes/ISprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/ResourceTypes/ISprite.h -------------------------------------------------------------------------------- /include/Engine/ResourceTypes/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/ResourceTypes/Image.h -------------------------------------------------------------------------------- /include/Engine/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Scene.h -------------------------------------------------------------------------------- /include/Engine/Scene/SceneLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Scene/SceneLayer.h -------------------------------------------------------------------------------- /include/Engine/Scene/ScrollingIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Scene/ScrollingIndex.h -------------------------------------------------------------------------------- /include/Engine/Scene/ScrollingInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Scene/ScrollingInfo.h -------------------------------------------------------------------------------- /include/Engine/Scene/TileConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Scene/TileConfig.h -------------------------------------------------------------------------------- /include/Engine/Scene/TileSpriteInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Scene/TileSpriteInfo.h -------------------------------------------------------------------------------- /include/Engine/Scene/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Scene/View.h -------------------------------------------------------------------------------- /include/Engine/TextFormats/INI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/TextFormats/INI.h -------------------------------------------------------------------------------- /include/Engine/Types/DrawGroupList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Types/DrawGroupList.h -------------------------------------------------------------------------------- /include/Engine/Types/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Types/Entity.h -------------------------------------------------------------------------------- /include/Engine/Types/ObjectList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Types/ObjectList.h -------------------------------------------------------------------------------- /include/Engine/Utilities/StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/include/Engine/Utilities/StringUtils.h -------------------------------------------------------------------------------- /makeheaders.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/makeheaders.bin -------------------------------------------------------------------------------- /meta/android/app/src/libs/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/Android.mk -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/altsvc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/altsvc.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/altsvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/altsvc.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/amigaos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/amigaos.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/amigaos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/amigaos.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/asyn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/asyn.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/base64.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/connect.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/connect.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/cookie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/cookie.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/cookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/cookie.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/curlx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/curlx.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/dict.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/dict.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/doh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/doh.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/doh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/doh.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/dotdot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/dotdot.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/dotdot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/dotdot.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/easy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/easy.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/easyif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/easyif.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/escape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/escape.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/escape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/escape.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/file.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/file.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/ftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/ftp.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/ftp.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/getenv.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/getinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/getinfo.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/getinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/getinfo.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/gopher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/gopher.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/gopher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/gopher.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/hash.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/hash.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/hmac.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/hostip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/hostip.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/hostip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/hostip.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/hostip4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/hostip4.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/hostip6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/hostip6.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/hostsyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/hostsyn.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/http.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/http.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/http2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/http2.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/http2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/http2.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/if2ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/if2ip.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/if2ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/if2ip.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/imap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/imap.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/imap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/imap.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/krb5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/krb5.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/ldap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/ldap.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/llist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/llist.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/llist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/llist.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/md4.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/md5.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/mime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/mime.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/mime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/mime.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/mprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/mprintf.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/multi.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/multiif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/multiif.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/netrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/netrc.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/netrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/netrc.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/nwlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/nwlib.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/nwos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/nwos.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/pop3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/pop3.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/pop3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/pop3.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/psl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/psl.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/psl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/psl.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/quic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/quic.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/rand.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/rand.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/rtsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/rtsp.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/rtsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/rtsp.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/select.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/select.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/sendf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/sendf.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/sendf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/sendf.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/setopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/setopt.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/setopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/setopt.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/sha256.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/share.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/share.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/share.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/share.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/sigpipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/sigpipe.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/slist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/slist.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/slist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/slist.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/smb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/smb.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/smb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/smb.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/smtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/smtp.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/smtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/smtp.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/socks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/socks.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/socks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/socks.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/splay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/splay.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/splay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/splay.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/ssh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/ssh.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/strcase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/strcase.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/strcase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/strcase.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/strdup.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/strdup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/strdup.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/strtok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/strtok.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/strtok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/strtok.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/telnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/telnet.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/telnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/telnet.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/tftp.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/tftp.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/timeval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/timeval.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/timeval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/timeval.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/url.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/url.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/urlapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/urlapi.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/urldata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/urldata.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/curl/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/curl/version.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/libjpeg.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/libjpeg.a -------------------------------------------------------------------------------- /meta/android/app/src/libs/libpng16/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/libpng16/png.c -------------------------------------------------------------------------------- /meta/android/app/src/libs/libpng16/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/libpng16/png.h -------------------------------------------------------------------------------- /meta/android/app/src/libs/libvorbis/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/android/app/src/libs/libvorbis/os.h -------------------------------------------------------------------------------- /meta/ios/OpenManiaSplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/OpenManiaSplash.png -------------------------------------------------------------------------------- /meta/ios/iOS Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/iOS Launch Screen.storyboard -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/AUTHORS -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/Android.mk -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/CHANGES -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/COPYING -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/Makefile.am -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/Makefile.in -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/README -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/aclocal.m4 -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/compile -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/config.guess -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/config.h.in -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/config.sub -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/configure -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/configure.in -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/depcomp -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/doc/Makefile.am -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/doc/Makefile.in -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/doc/framing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/doc/framing.html -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/doc/index.html -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/doc/multiplex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/doc/multiplex1.png -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/doc/oggstream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/doc/oggstream.html -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/doc/packets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/doc/packets.png -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/doc/pages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/doc/pages.png -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/doc/rfc3533.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/doc/rfc3533.txt -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/doc/rfc5334.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/doc/rfc5334.txt -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/doc/skeleton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/doc/skeleton.html -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/doc/stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/doc/stream.png -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/doc/white-ogg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/doc/white-ogg.png -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/include/ogg/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/include/ogg/ogg.h -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/install-sh -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/libogg.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/libogg.spec -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/libogg.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/libogg.spec.in -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/ltmain.sh -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/macosx/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/macosx/Info.plist -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/missing -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/ogg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/ogg.m4 -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/ogg.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/ogg.pc.in -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/src/Makefile.am -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/src/Makefile.in -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/win32/VS6/ogg.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/win32/VS6/ogg.dsw -------------------------------------------------------------------------------- /meta/ios/libogg-1.3.2/win32/ogg.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libogg-1.3.2/win32/ogg.def -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/AUTHORS -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/CHANGES -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/COPYING -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/Makefile.am -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/Makefile.in -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/README -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/aclocal.m4 -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/autogen.sh -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/compile -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/config.guess -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/config.h.in -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/config.sub -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/configure -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/configure.ac -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/depcomp -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/doc/Doxyfile.in -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/doc/Makefile.am -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/doc/Makefile.in -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/doc/footer.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/doc/footer.tex -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/doc/helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/doc/helper.html -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/doc/index.html -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/doc/rfc5215.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/doc/rfc5215.txt -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/doc/rfc5215.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/doc/rfc5215.xml -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/doc/stereo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/doc/stereo.html -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/doc/stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/doc/stream.png -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/doc/window1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/doc/window1.png -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/doc/window2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/doc/window2.png -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/install-sh -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/Makefile.am -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/Makefile.in -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/analysis.c -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/backends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/backends.h -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/barkmel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/barkmel.c -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/bitrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/bitrate.c -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/bitrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/bitrate.h -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/block.c -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/codebook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/codebook.c -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/codebook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/codebook.h -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/envelope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/envelope.c -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/envelope.h -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/floor0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/floor0.c -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/floor1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/floor1.c -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/highlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/highlevel.h -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/info.c -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/lookup.c -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/lookup.h -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/lookups.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/lookups.pl -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/lpc.c -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/lpc.h -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/lsp.c -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/lsp.h -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/mapping0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/mapping0.c -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/masking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/masking.h -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/mdct.c -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/mdct.h -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/misc.h -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/os.h -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/psy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/psy.c -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/psy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/psy.h -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/psytune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/psytune.c -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/registry.c -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/registry.h -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/res0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/res0.c -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/scales.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/scales.h -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/smallft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/smallft.c -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/smallft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/smallft.h -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/synthesis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/synthesis.c -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/tone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/tone.c -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/vorbisenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/vorbisenc.c -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/window.c -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/lib/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/lib/window.h -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/libvorbis.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/libvorbis.spec -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/ltmain.sh -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/m4/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/m4/Makefile.am -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/m4/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/m4/Makefile.in -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/m4/ogg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/m4/ogg.m4 -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/m4/pkg.m4 -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/missing -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/symbian/bld.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/symbian/bld.inf -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/test/test.c -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/test/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/test/util.c -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/test/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/test/util.h -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/todo.txt -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vorbis.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vorbis.m4 -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vorbis.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vorbis.pc.in -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vorbisenc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vorbisenc.pc.in -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/16.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/16.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/16u.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/16u.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44c-1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44c-1.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44c0.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44c0.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44c1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44c1.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44c2.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44c2.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44c3.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44c3.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44c4.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44c4.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44c5.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44c5.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44c6.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44c6.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44c7.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44c7.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44c8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44c8.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44c9.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44c9.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44p-1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44p-1.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44p0.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44p0.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44p1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44p1.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44p2.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44p2.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44p3.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44p3.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44p4.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44p4.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44p5.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44p5.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44p6.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44p6.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44p7.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44p7.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44p8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44p8.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44p9.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44p9.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44u0.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44u0.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44u1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44u1.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44u2.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44u2.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44u3.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44u3.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44u4.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44u4.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44u5.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44u5.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44u6.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44u6.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44u7.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44u7.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44u8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44u8.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/44u9.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/44u9.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/8.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/8u.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/8u.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/Makefile.am -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/Makefile.in -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/bookutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/bookutil.c -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/bookutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/bookutil.h -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/floor_11.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/floor_11.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/floor_22.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/floor_22.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/floor_44.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/floor_44.vqs -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/huffbuild.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/huffbuild.c -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/metrics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/metrics.c -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/vqgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/vqgen.c -------------------------------------------------------------------------------- /meta/ios/libvorbis-1.3.5/vq/vqgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbis-1.3.5/vq/vqgen.h -------------------------------------------------------------------------------- /meta/ios/libvorbisidec-1.2.1/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbisidec-1.2.1/Android.mk -------------------------------------------------------------------------------- /meta/ios/libvorbisidec-1.2.1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbisidec-1.2.1/COPYING -------------------------------------------------------------------------------- /meta/ios/libvorbisidec-1.2.1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbisidec-1.2.1/Makefile.am -------------------------------------------------------------------------------- /meta/ios/libvorbisidec-1.2.1/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbisidec-1.2.1/Makefile.in -------------------------------------------------------------------------------- /meta/ios/libvorbisidec-1.2.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbisidec-1.2.1/README -------------------------------------------------------------------------------- /meta/ios/libvorbisidec-1.2.1/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbisidec-1.2.1/aclocal.m4 -------------------------------------------------------------------------------- /meta/ios/libvorbisidec-1.2.1/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbisidec-1.2.1/config.h.in -------------------------------------------------------------------------------- /meta/ios/libvorbisidec-1.2.1/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbisidec-1.2.1/config.sub -------------------------------------------------------------------------------- /meta/ios/libvorbisidec-1.2.1/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbisidec-1.2.1/depcomp -------------------------------------------------------------------------------- /meta/ios/libvorbisidec-1.2.1/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/ios/libvorbisidec-1.2.1/missing -------------------------------------------------------------------------------- /meta/mac/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/mac/icon.icns -------------------------------------------------------------------------------- /meta/mac/include/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/mac/include/jconfig.h -------------------------------------------------------------------------------- /meta/mac/include/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/mac/include/jerror.h -------------------------------------------------------------------------------- /meta/mac/include/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/mac/include/jmorecfg.h -------------------------------------------------------------------------------- /meta/mac/include/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/mac/include/jpeglib.h -------------------------------------------------------------------------------- /meta/mac/include/libpng16/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/mac/include/libpng16/png.h -------------------------------------------------------------------------------- /meta/mac/include/libpng16/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/mac/include/libpng16/pngconf.h -------------------------------------------------------------------------------- /meta/mac/include/ogg/config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/mac/include/ogg/config_types.h -------------------------------------------------------------------------------- /meta/mac/include/ogg/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/mac/include/ogg/ogg.h -------------------------------------------------------------------------------- /meta/mac/include/ogg/os_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/mac/include/ogg/os_types.h -------------------------------------------------------------------------------- /meta/mac/include/vorbis/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/mac/include/vorbis/codec.h -------------------------------------------------------------------------------- /meta/mac/include/vorbis/vorbisenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/mac/include/vorbis/vorbisenc.h -------------------------------------------------------------------------------- /meta/mac/include/vorbis/vorbisfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/mac/include/vorbis/vorbisfile.h -------------------------------------------------------------------------------- /meta/mac/libcurl.4.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/mac/libcurl.4.a -------------------------------------------------------------------------------- /meta/mac/libcurl.4.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/mac/libcurl.4.dylib -------------------------------------------------------------------------------- /meta/mac/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/mac/libcurl.a -------------------------------------------------------------------------------- /meta/mac/libogg.0.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/mac/libogg.0.a -------------------------------------------------------------------------------- /meta/mac/libogg.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/mac/libogg.0.dylib -------------------------------------------------------------------------------- /meta/mac/libogg.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/mac/libogg.a -------------------------------------------------------------------------------- /meta/mac/libpng16.16.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/mac/libpng16.16.a -------------------------------------------------------------------------------- /meta/mac/libpng16.16.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/mac/libpng16.16.dylib -------------------------------------------------------------------------------- /meta/mac/libpng16.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/mac/libpng16.a -------------------------------------------------------------------------------- /meta/mac/libvorbis.0.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/mac/libvorbis.0.a -------------------------------------------------------------------------------- /meta/mac/libvorbis.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/mac/libvorbis.0.dylib -------------------------------------------------------------------------------- /meta/mac/libvorbis.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/mac/libvorbis.a -------------------------------------------------------------------------------- /meta/mac/libvorbisfile.3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/mac/libvorbisfile.3.a -------------------------------------------------------------------------------- /meta/mac/libvorbisfile.3.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/mac/libvorbisfile.3.dylib -------------------------------------------------------------------------------- /meta/mac/libvorbisfile.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/mac/libvorbisfile.a -------------------------------------------------------------------------------- /meta/nx/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/nx/icon.jpg -------------------------------------------------------------------------------- /meta/win/VisualElementsManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/VisualElementsManifest.xml -------------------------------------------------------------------------------- /meta/win/bin/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/bin/SDL2.dll -------------------------------------------------------------------------------- /meta/win/bin/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/bin/SDL2_image.dll -------------------------------------------------------------------------------- /meta/win/bin/avformat-58.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/bin/avformat-58.dll -------------------------------------------------------------------------------- /meta/win/bin/avutil-56.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/bin/avutil-56.dll -------------------------------------------------------------------------------- /meta/win/bin/discord-rpc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/bin/discord-rpc.dll -------------------------------------------------------------------------------- /meta/win/bin/freeglut.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/bin/freeglut.dll -------------------------------------------------------------------------------- /meta/win/bin/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/bin/glew32.dll -------------------------------------------------------------------------------- /meta/win/bin/libjpeg-9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/bin/libjpeg-9.dll -------------------------------------------------------------------------------- /meta/win/bin/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/bin/libpng16-16.dll -------------------------------------------------------------------------------- /meta/win/bin/libtiff-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/bin/libtiff-5.dll -------------------------------------------------------------------------------- /meta/win/bin/libwebp-7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/bin/libwebp-7.dll -------------------------------------------------------------------------------- /meta/win/bin/swresample-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/bin/swresample-3.dll -------------------------------------------------------------------------------- /meta/win/bin/swscale-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/bin/swscale-5.dll -------------------------------------------------------------------------------- /meta/win/bin/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/bin/zlib1.dll -------------------------------------------------------------------------------- /meta/win/bin/zlib12.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/bin/zlib12.dll -------------------------------------------------------------------------------- /meta/win/bin/zlibwapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/bin/zlibwapi.dll -------------------------------------------------------------------------------- /meta/win/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/icon.ico -------------------------------------------------------------------------------- /meta/win/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/icon.rc -------------------------------------------------------------------------------- /meta/win/icon.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/icon.res -------------------------------------------------------------------------------- /meta/win/include/GL/eglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/GL/eglew.h -------------------------------------------------------------------------------- /meta/win/include/GL/freeglut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/GL/freeglut.h -------------------------------------------------------------------------------- /meta/win/include/GL/freeglut_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/GL/freeglut_ext.h -------------------------------------------------------------------------------- /meta/win/include/GL/freeglut_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/GL/freeglut_std.h -------------------------------------------------------------------------------- /meta/win/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/GL/glew.h -------------------------------------------------------------------------------- /meta/win/include/GL/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/GL/glut.h -------------------------------------------------------------------------------- /meta/win/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/GL/glxew.h -------------------------------------------------------------------------------- /meta/win/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/GL/wglew.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_assert.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_atomic.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_audio.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_bits.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_blendmode.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_clipboard.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_config.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_config.h.in -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_copying.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_cpuinfo.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_egl.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_endian.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_error.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_events.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_gesture.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_haptic.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_hints.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_image.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_joystick.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_keyboard.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_keycode.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_loadso.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_log.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_main.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_mouse.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_mutex.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_name.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_opengl.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_opengles.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_opengles2.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_pixels.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_platform.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_power.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_quit.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_rect.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_render.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_revision.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_rwops.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_scancode.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_sensor.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_shape.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_stdinc.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_surface.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_system.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_syswm.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_test.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_test_font.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_test_log.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_test_md5.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_thread.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_timer.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_touch.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_ttf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_ttf.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_types.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_version.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_video.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/SDL_vulkan.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/begin_code.h -------------------------------------------------------------------------------- /meta/win/include/SDL2/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/SDL2/close_code.h -------------------------------------------------------------------------------- /meta/win/include/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/curl/curl.h -------------------------------------------------------------------------------- /meta/win/include/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/curl/curlver.h -------------------------------------------------------------------------------- /meta/win/include/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/curl/easy.h -------------------------------------------------------------------------------- /meta/win/include/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/curl/mprintf.h -------------------------------------------------------------------------------- /meta/win/include/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/curl/multi.h -------------------------------------------------------------------------------- /meta/win/include/curl/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/curl/stdcheaders.h -------------------------------------------------------------------------------- /meta/win/include/curl/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/curl/system.h -------------------------------------------------------------------------------- /meta/win/include/curl/typecheck-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/curl/typecheck-gcc.h -------------------------------------------------------------------------------- /meta/win/include/curl/urlapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/curl/urlapi.h -------------------------------------------------------------------------------- /meta/win/include/discord_game_sdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/discord_game_sdk.h -------------------------------------------------------------------------------- /meta/win/include/discord_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/discord_register.h -------------------------------------------------------------------------------- /meta/win/include/discord_rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/discord_rpc.h -------------------------------------------------------------------------------- /meta/win/include/freetype/freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/freetype.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftadvanc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftadvanc.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftbbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftbbox.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftbdf.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftbitmap.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftbzip2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftbzip2.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftcache.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftcid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftcid.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftcolor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftcolor.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftdriver.h -------------------------------------------------------------------------------- /meta/win/include/freetype/fterrdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/fterrdef.h -------------------------------------------------------------------------------- /meta/win/include/freetype/fterrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/fterrors.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftfntfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftfntfmt.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftgasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftgasp.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftglyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftglyph.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftgxval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftgxval.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftgzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftgzip.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftimage.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftincrem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftincrem.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftlcdfil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftlcdfil.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftlist.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftlzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftlzw.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftmac.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftmm.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftmodapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftmodapi.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftmoderr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftmoderr.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftotval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftotval.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftoutln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftoutln.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftparams.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftpfr.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftrender.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftsizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftsizes.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftsnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftsnames.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftstroke.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftsynth.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftsystem.h -------------------------------------------------------------------------------- /meta/win/include/freetype/fttrigon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/fttrigon.h -------------------------------------------------------------------------------- /meta/win/include/freetype/fttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/fttypes.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ftwinfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ftwinfnt.h -------------------------------------------------------------------------------- /meta/win/include/freetype/t1tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/t1tables.h -------------------------------------------------------------------------------- /meta/win/include/freetype/ttnameid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/ttnameid.h -------------------------------------------------------------------------------- /meta/win/include/freetype/tttables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/tttables.h -------------------------------------------------------------------------------- /meta/win/include/freetype/tttags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/freetype/tttags.h -------------------------------------------------------------------------------- /meta/win/include/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/ft2build.h -------------------------------------------------------------------------------- /meta/win/include/jchuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/jchuff.h -------------------------------------------------------------------------------- /meta/win/include/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/jconfig.h -------------------------------------------------------------------------------- /meta/win/include/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/jdct.h -------------------------------------------------------------------------------- /meta/win/include/jdhuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/jdhuff.h -------------------------------------------------------------------------------- /meta/win/include/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/jerror.h -------------------------------------------------------------------------------- /meta/win/include/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/jinclude.h -------------------------------------------------------------------------------- /meta/win/include/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/jmemsys.h -------------------------------------------------------------------------------- /meta/win/include/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/jmorecfg.h -------------------------------------------------------------------------------- /meta/win/include/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/jpegint.h -------------------------------------------------------------------------------- /meta/win/include/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/jpeglib.h -------------------------------------------------------------------------------- /meta/win/include/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/jversion.h -------------------------------------------------------------------------------- /meta/win/include/libavcodec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavcodec/avcodec.h -------------------------------------------------------------------------------- /meta/win/include/libavcodec/avdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavcodec/avdct.h -------------------------------------------------------------------------------- /meta/win/include/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavcodec/avfft.h -------------------------------------------------------------------------------- /meta/win/include/libavcodec/d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavcodec/d3d11va.h -------------------------------------------------------------------------------- /meta/win/include/libavcodec/dirac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavcodec/dirac.h -------------------------------------------------------------------------------- /meta/win/include/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavcodec/dxva2.h -------------------------------------------------------------------------------- /meta/win/include/libavcodec/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavcodec/jni.h -------------------------------------------------------------------------------- /meta/win/include/libavcodec/qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavcodec/qsv.h -------------------------------------------------------------------------------- /meta/win/include/libavcodec/vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavcodec/vaapi.h -------------------------------------------------------------------------------- /meta/win/include/libavcodec/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavcodec/vdpau.h -------------------------------------------------------------------------------- /meta/win/include/libavcodec/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavcodec/version.h -------------------------------------------------------------------------------- /meta/win/include/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavcodec/xvmc.h -------------------------------------------------------------------------------- /meta/win/include/libavformat/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavformat/avio.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/adler32.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/aes.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/aes_ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/aes_ctr.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/avassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/avassert.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/avconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/avconfig.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/avstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/avstring.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/avutil.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/base64.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/blowfish.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/bprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/bprint.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/bswap.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/buffer.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/camellia.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/cast5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/cast5.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/common.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/cpu.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/crc.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/des.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/dict.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/display.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/error.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/eval.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/fifo.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/file.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/frame.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/hash.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/hmac.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/imgutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/imgutils.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/intfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/intfloat.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/lfg.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/log.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/lzo.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/macros.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/md5.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/mem.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/murmur3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/murmur3.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/opt.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/pixdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/pixdesc.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/pixfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/pixfmt.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/rational.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/rc4.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/ripemd.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/sha.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/sha512.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/stereo3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/stereo3d.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/tea.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/time.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/timecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/timecode.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/tree.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/twofish.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/version.h -------------------------------------------------------------------------------- /meta/win/include/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libavutil/xtea.h -------------------------------------------------------------------------------- /meta/win/include/libswscale/swscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libswscale/swscale.h -------------------------------------------------------------------------------- /meta/win/include/libswscale/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/libswscale/version.h -------------------------------------------------------------------------------- /meta/win/include/ogg/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/ogg/ogg.h -------------------------------------------------------------------------------- /meta/win/include/ogg/os_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/ogg/os_types.h -------------------------------------------------------------------------------- /meta/win/include/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/png.h -------------------------------------------------------------------------------- /meta/win/include/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/pngconf.h -------------------------------------------------------------------------------- /meta/win/include/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/pnglibconf.h -------------------------------------------------------------------------------- /meta/win/include/vorbis/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/vorbis/codec.h -------------------------------------------------------------------------------- /meta/win/include/vorbis/vorbisenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/vorbis/vorbisenc.h -------------------------------------------------------------------------------- /meta/win/include/vorbis/vorbisfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/vorbis/vorbisfile.h -------------------------------------------------------------------------------- /meta/win/include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/zconf.h -------------------------------------------------------------------------------- /meta/win/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/include/zlib.h -------------------------------------------------------------------------------- /meta/win/lib/New folder/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/lib/New folder/SDL2test.lib -------------------------------------------------------------------------------- /meta/win/lib/New folder/freeglut.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/lib/New folder/freeglut.lib -------------------------------------------------------------------------------- /meta/win/lib/New folder/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/lib/New folder/glew32.lib -------------------------------------------------------------------------------- /meta/win/lib/New folder/zlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/lib/New folder/zlib.dll -------------------------------------------------------------------------------- /meta/win/lib/New folder/zlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/lib/New folder/zlib.lib -------------------------------------------------------------------------------- /meta/win/lib/New folder/zlibwapi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/lib/New folder/zlibwapi.lib -------------------------------------------------------------------------------- /meta/win/lib/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/lib/SDL2.lib -------------------------------------------------------------------------------- /meta/win/lib/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/lib/SDL2main.lib -------------------------------------------------------------------------------- /meta/win/lib/avcodec.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/lib/avcodec.lib -------------------------------------------------------------------------------- /meta/win/lib/avformat.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/lib/avformat.lib -------------------------------------------------------------------------------- /meta/win/lib/avutil.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/lib/avutil.lib -------------------------------------------------------------------------------- /meta/win/lib/freetype.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/lib/freetype.lib -------------------------------------------------------------------------------- /meta/win/lib/glew32s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/lib/glew32s.lib -------------------------------------------------------------------------------- /meta/win/lib/libcurl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/lib/libcurl.lib -------------------------------------------------------------------------------- /meta/win/lib/libcurl_a.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/lib/libcurl_a.lib -------------------------------------------------------------------------------- /meta/win/lib/libcurl_a_debug.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/lib/libcurl_a_debug.lib -------------------------------------------------------------------------------- /meta/win/lib/libjpeg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/lib/libjpeg.lib -------------------------------------------------------------------------------- /meta/win/lib/libogg_static.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/lib/libogg_static.lib -------------------------------------------------------------------------------- /meta/win/lib/libpng16.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/lib/libpng16.lib -------------------------------------------------------------------------------- /meta/win/lib/libvorbis_static.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/lib/libvorbis_static.lib -------------------------------------------------------------------------------- /meta/win/lib/libvorbisfile_static.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/lib/libvorbisfile_static.lib -------------------------------------------------------------------------------- /meta/win/lib/swresample.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/lib/swresample.lib -------------------------------------------------------------------------------- /meta/win/lib/swscale.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/lib/swscale.lib -------------------------------------------------------------------------------- /meta/win/lib/zlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/lib/zlib.lib -------------------------------------------------------------------------------- /meta/win/lib/zlibstat.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/meta/win/lib/zlibstat.lib -------------------------------------------------------------------------------- /source/Engine/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Application.cpp -------------------------------------------------------------------------------- /source/Engine/Audio/AudioManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Audio/AudioManager.cpp -------------------------------------------------------------------------------- /source/Engine/Audio/StackNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Audio/StackNode.h -------------------------------------------------------------------------------- /source/Engine/Bytecode/Compiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Bytecode/Compiler.cpp -------------------------------------------------------------------------------- /source/Engine/Bytecode/Types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Bytecode/Types.cpp -------------------------------------------------------------------------------- /source/Engine/Bytecode/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Bytecode/Types.h -------------------------------------------------------------------------------- /source/Engine/Bytecode/VMThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Bytecode/VMThread.cpp -------------------------------------------------------------------------------- /source/Engine/Bytecode/Values.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Bytecode/Values.cpp -------------------------------------------------------------------------------- /source/Engine/Diagnostics/Clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Diagnostics/Clock.cpp -------------------------------------------------------------------------------- /source/Engine/Diagnostics/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Diagnostics/Log.cpp -------------------------------------------------------------------------------- /source/Engine/Diagnostics/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Diagnostics/Memory.cpp -------------------------------------------------------------------------------- /source/Engine/Extensions/Discord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Extensions/Discord.cpp -------------------------------------------------------------------------------- /source/Engine/Filesystem/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Filesystem/File.cpp -------------------------------------------------------------------------------- /source/Engine/FontFace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/FontFace.cpp -------------------------------------------------------------------------------- /source/Engine/Graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Graphics.cpp -------------------------------------------------------------------------------- /source/Engine/Hashing/CRC32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Hashing/CRC32.cpp -------------------------------------------------------------------------------- /source/Engine/Hashing/FNV1A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Hashing/FNV1A.cpp -------------------------------------------------------------------------------- /source/Engine/Hashing/MD5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Hashing/MD5.cpp -------------------------------------------------------------------------------- /source/Engine/Hashing/Murmur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Hashing/Murmur.cpp -------------------------------------------------------------------------------- /source/Engine/IO/Compression/LZ11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/IO/Compression/LZ11.cpp -------------------------------------------------------------------------------- /source/Engine/IO/Compression/LZSS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/IO/Compression/LZSS.cpp -------------------------------------------------------------------------------- /source/Engine/IO/FileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/IO/FileStream.cpp -------------------------------------------------------------------------------- /source/Engine/IO/MemoryStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/IO/MemoryStream.cpp -------------------------------------------------------------------------------- /source/Engine/IO/NetworkStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/IO/NetworkStream.cpp -------------------------------------------------------------------------------- /source/Engine/IO/ResourceStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/IO/ResourceStream.cpp -------------------------------------------------------------------------------- /source/Engine/IO/SDLStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/IO/SDLStream.cpp -------------------------------------------------------------------------------- /source/Engine/IO/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/IO/Stream.cpp -------------------------------------------------------------------------------- /source/Engine/Includes/HashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Includes/HashMap.h -------------------------------------------------------------------------------- /source/Engine/Includes/Standard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Includes/Standard.h -------------------------------------------------------------------------------- /source/Engine/Includes/StandardSDL2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Includes/StandardSDL2.h -------------------------------------------------------------------------------- /source/Engine/InputManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/InputManager.cpp -------------------------------------------------------------------------------- /source/Engine/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Main.cpp -------------------------------------------------------------------------------- /source/Engine/Math/Ease.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Math/Ease.cpp -------------------------------------------------------------------------------- /source/Engine/Math/IMath.cpp.unused: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Math/IMath.cpp.unused -------------------------------------------------------------------------------- /source/Engine/Math/Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Math/Math.cpp -------------------------------------------------------------------------------- /source/Engine/Math/Matrix4x4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Math/Matrix4x4.cpp -------------------------------------------------------------------------------- /source/Engine/Media/Decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Media/Decoder.cpp -------------------------------------------------------------------------------- /source/Engine/Media/MediaPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Media/MediaPlayer.cpp -------------------------------------------------------------------------------- /source/Engine/Media/MediaSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Media/MediaSource.cpp -------------------------------------------------------------------------------- /source/Engine/Media/Utils/Codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Media/Utils/Codec.h -------------------------------------------------------------------------------- /source/Engine/Network/HTTP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Network/HTTP.cpp -------------------------------------------------------------------------------- /source/Engine/Rendering/3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Rendering/3D.h -------------------------------------------------------------------------------- /source/Engine/Rendering/Enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Rendering/Enums.h -------------------------------------------------------------------------------- /source/Engine/Rendering/GL/Includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Rendering/GL/Includes.h -------------------------------------------------------------------------------- /source/Engine/Rendering/Shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Rendering/Shader.cpp -------------------------------------------------------------------------------- /source/Engine/Rendering/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Rendering/Texture.cpp -------------------------------------------------------------------------------- /source/Engine/ResourceTypes/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/ResourceTypes/Image.cpp -------------------------------------------------------------------------------- /source/Engine/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Scene.cpp -------------------------------------------------------------------------------- /source/Engine/Scene/SceneLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Scene/SceneLayer.cpp -------------------------------------------------------------------------------- /source/Engine/Scene/ScrollingInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Scene/ScrollingInfo.cpp -------------------------------------------------------------------------------- /source/Engine/Scene/TileConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Scene/TileConfig.cpp -------------------------------------------------------------------------------- /source/Engine/Scene/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Scene/View.cpp -------------------------------------------------------------------------------- /source/Engine/Sprites/Animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Sprites/Animation.h -------------------------------------------------------------------------------- /source/Engine/TextFormats/INI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/TextFormats/INI.cpp -------------------------------------------------------------------------------- /source/Engine/TextFormats/JSON/jsmn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/TextFormats/JSON/jsmn.h -------------------------------------------------------------------------------- /source/Engine/Types/DrawGroupList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Types/DrawGroupList.cpp -------------------------------------------------------------------------------- /source/Engine/Types/Entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Types/Entity.cpp -------------------------------------------------------------------------------- /source/Engine/Types/EntityTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Types/EntityTypes.h -------------------------------------------------------------------------------- /source/Engine/Types/ObjectList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Engine/Types/ObjectList.cpp -------------------------------------------------------------------------------- /source/Libraries/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Libraries/ini.h -------------------------------------------------------------------------------- /source/Libraries/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Libraries/miniz.c -------------------------------------------------------------------------------- /source/Libraries/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Libraries/miniz.h -------------------------------------------------------------------------------- /source/Libraries/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Libraries/stb_image.h -------------------------------------------------------------------------------- /source/Libraries/stb_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Libraries/stb_vorbis.c -------------------------------------------------------------------------------- /source/Libraries/stb_vorbis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/source/Libraries/stb_vorbis.h -------------------------------------------------------------------------------- /tools/Animation Editor/RSDKv5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/tools/Animation Editor/RSDKv5.dll -------------------------------------------------------------------------------- /tools/Animation Editor/SharpDX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/tools/Animation Editor/SharpDX.dll -------------------------------------------------------------------------------- /tools/Animation Editor/SonLVLAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/tools/Animation Editor/SonLVLAPI.dll -------------------------------------------------------------------------------- /tools/Animation Editor/zlib.net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/tools/Animation Editor/zlib.net.dll -------------------------------------------------------------------------------- /tools/Dependency Walker/depends.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/tools/Dependency Walker/depends.chm -------------------------------------------------------------------------------- /tools/Dependency Walker/depends.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/tools/Dependency Walker/depends.dll -------------------------------------------------------------------------------- /tools/Dependency Walker/depends.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/tools/Dependency Walker/depends.exe -------------------------------------------------------------------------------- /tools/HatchDocGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/tools/HatchDocGen.exe -------------------------------------------------------------------------------- /tools/HatchPack/HatchPack.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/tools/HatchPack/HatchPack.exe -------------------------------------------------------------------------------- /tools/HatchPack/zlib.net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/tools/HatchPack/zlib.net.dll -------------------------------------------------------------------------------- /tools/lmakeheaders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/tools/lmakeheaders -------------------------------------------------------------------------------- /tools/makeheaders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/tools/makeheaders -------------------------------------------------------------------------------- /tools/makeheaders.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknetk/HatchGameEngine/HEAD/tools/makeheaders.exe --------------------------------------------------------------------------------