├── .gitignore ├── Android.mk ├── CMakeLists.txt ├── README.md ├── SDL_Engine.h ├── SDL_Engine.sln ├── SDL_Engine ├── SDL_Engine.vcxproj ├── SDL_Engine.vcxproj.filters ├── SDL_Engine.vcxproj.user ├── SEAction.cpp ├── SEAction.h ├── SEActionEase.cpp ├── SEActionEase.h ├── SEActionInstant.cpp ├── SEActionInstant.h ├── SEActionInterval.cpp ├── SEActionInterval.h ├── SEActionManager.cpp ├── SEActionManager.h ├── SEAnimation.cpp ├── SEAnimation.h ├── SEAnimationCache.cpp ├── SEAnimationCache.h ├── SEAnimationFrame.cpp ├── SEAnimationFrame.h ├── SEAutoreleasePool.cpp ├── SEAutoreleasePool.h ├── SEBMFontConfiguration.cpp ├── SEBMFontConfiguration.h ├── SEChunk.cpp ├── SEChunk.h ├── SEColor.h ├── SEDirector.cpp ├── SEDirector.h ├── SEEventCustom.h ├── SEEventDispatcher.cpp ├── SEEventDispatcher.h ├── SEEventListener.h ├── SEEventListenerAllAtOnce.cpp ├── SEEventListenerAllAtOnce.h ├── SEEventListenerCustom.cpp ├── SEEventListenerCustom.h ├── SEEventListenerKeyboard.cpp ├── SEEventListenerKeyboard.h ├── SEEventListenerKeyboardState.cpp ├── SEEventListenerKeyboardState.h ├── SEEventListenerMouse.cpp ├── SEEventListenerMouse.h ├── SEEventListenerTextInput.cpp ├── SEEventListenerTextInput.h ├── SEEventListenerTouchOneByOne.cpp ├── SEEventListenerTouchOneByOne.h ├── SEFastLayer.cpp ├── SEFastLayer.h ├── SEFastTiledMap.cpp ├── SEFastTiledMap.h ├── SEFileUtils.cpp ├── SEFileUtils.h ├── SEFiniteTimeAction.h ├── SEFont.cpp ├── SEFont.h ├── SEFontCache.cpp ├── SEFontCache.h ├── SEInputHandler.cpp ├── SEInputHandler.h ├── SELabel.h ├── SELabelAtlas.cpp ├── SELabelAtlas.h ├── SELabelBMFont.cpp ├── SELabelBMFont.h ├── SELabelDotChar.cpp ├── SELabelDotChar.h ├── SELabelTTF.cpp ├── SELabelTTF.h ├── SELayer.cpp ├── SELayer.h ├── SELayerColor.cpp ├── SELayerColor.h ├── SELoadingBar.cpp ├── SELoadingBar.h ├── SEMath.h ├── SEMenu.cpp ├── SEMenu.h ├── SEMenuItem.cpp ├── SEMenuItem.h ├── SEMusic.cpp ├── SEMusic.h ├── SENode.cpp ├── SENode.h ├── SENotificationCenter.cpp ├── SENotificationCenter.h ├── SEObject.cpp ├── SEObject.h ├── SEPlatformMarcos.h ├── SEPoint.cpp ├── SEPoint.h ├── SEPoolManager.cpp ├── SEPoolManager.h ├── SEProgressTimer.cpp ├── SEProgressTimer.h ├── SEProtocols.h ├── SERect.cpp ├── SERect.h ├── SERenderCommand.cpp ├── SERenderCommand.h ├── SERenderer.cpp ├── SERenderer.h ├── SESDLNS.cpp ├── SESDLNS.h ├── SESDL_gfx_mod.cpp ├── SESDL_gfx_mod.h ├── SEScale9Sprite.cpp ├── SEScale9Sprite.h ├── SEScene.cpp ├── SEScene.h ├── SEScheduler.cpp ├── SEScheduler.h ├── SESize.cpp ├── SESize.h ├── SESoundManager.cpp ├── SESoundManager.h ├── SESprite.cpp ├── SESprite.h ├── SESpriteFrame.cpp ├── SESpriteFrame.h ├── SESpriteFrameCache.cpp ├── SESpriteFrameCache.h ├── SEStringUtils.cpp ├── SEStringUtils.h ├── SESurface.cpp ├── SESurface.h ├── SETMXImageLayer.cpp ├── SETMXImageLayer.h ├── SETMXLayer.cpp ├── SETMXLayer.h ├── SETMXObjectGroup.cpp ├── SETMXObjectGroup.h ├── SETMXTiledMap.cpp ├── SETMXTiledMap.h ├── SETexture.cpp ├── SETexture.h ├── SETextureCache.cpp ├── SETextureCache.h ├── SETileset.cpp ├── SETileset.h ├── SETouch.cpp ├── SETouch.h ├── SEUserDefault.cpp ├── SEUserDefault.h ├── SEValue.cpp ├── SEValue.h ├── SEVector.h ├── SEWindow.cpp ├── SEWindow.h ├── base64.cpp ├── base64.h ├── extensions │ ├── SDL_PxString.cpp │ ├── SDL_PxString.h │ ├── SDL_anigif.c │ └── SDL_anigif.h └── ui │ ├── UIAbstractCheckButton.cpp │ ├── UIAbstractCheckButton.h │ ├── UIButton.cpp │ ├── UIButton.h │ ├── UICheckBox.cpp │ ├── UICheckBox.h │ ├── UIEditBox.cpp │ ├── UIEditBox.h │ ├── UIRadioButton.cpp │ ├── UIRadioButton.h │ ├── UIRadioButtonGroup.cpp │ ├── UIRadioButtonGroup.h │ ├── UISlider.cpp │ ├── UISlider.h │ ├── UIWidget.cpp │ ├── UIWidget.h │ ├── UIWidgetData.cpp │ ├── UIWidgetData.h │ ├── UIWidgetDataSetting.cpp │ ├── UIWidgetDataSetting.h │ ├── UIWidgetFactory.cpp │ ├── UIWidgetFactory.h │ ├── UIWidgetManager.cpp │ ├── UIWidgetManager.h │ ├── UIWidgetSystem.cpp │ └── UIWidgetSystem.h ├── box2d ├── DebugDraw.cpp ├── DebugDraw.h ├── GB2ShapeCache-x.cpp ├── GB2ShapeCache-x.h ├── PhysicalDrawNode.cpp ├── PhysicalDrawNode.h ├── box2d.sln ├── box2d.vcxproj ├── box2d.vcxproj.filters ├── box2d.vcxproj.user └── physic.h ├── deprecated ├── 1-CMakeLists.txt ├── BMFontConfiguration.cpp ├── BMFontConfiguration.h ├── CMakeLists.txt ├── Makefile-SDL_Engine ├── SDL_ttf_mod.cpp └── SDL_ttf_mod.h ├── issue.txt ├── local ├── include │ ├── SDL.h │ ├── SDL2_framerate.h │ ├── SDL2_gfxPrimitives.h │ ├── SDL2_gfxPrimitives_font.h │ ├── SDL2_imageFilter.h │ ├── SDL2_rotozoom.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_image.h │ ├── SDL_joystick.h │ ├── SDL_keyboard.h │ ├── SDL_keycode.h │ ├── SDL_loadso.h │ ├── SDL_log.h │ ├── SDL_main.h │ ├── SDL_messagebox.h │ ├── SDL_metal.h │ ├── SDL_mixer.h │ ├── SDL_mouse.h │ ├── SDL_mutex.h │ ├── SDL_name.h │ ├── SDL_net.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 └── lib │ ├── x64 │ ├── LICENSE.FLAC.txt │ ├── LICENSE.freetype.txt │ ├── LICENSE.jpeg.txt │ ├── LICENSE.modplug.txt │ ├── LICENSE.mpg123.txt │ ├── LICENSE.ogg-vorbis.txt │ ├── LICENSE.opus.txt │ ├── LICENSE.opusfile.txt │ ├── LICENSE.png.txt │ ├── LICENSE.tiff.txt │ ├── LICENSE.webp.txt │ ├── LICENSE.zlib.txt │ ├── SDL2.dll │ ├── SDL2.lib │ ├── SDL2_image.dll │ ├── SDL2_image.lib │ ├── SDL2_mixer.dll │ ├── SDL2_mixer.lib │ ├── SDL2_net.dll │ ├── SDL2_net.lib │ ├── SDL2_ttf.dll │ ├── SDL2_ttf.lib │ ├── SDL2main.lib │ ├── SDL2test.lib │ ├── libFLAC-8.dll │ ├── libfreetype-6.dll │ ├── libjpeg-9.dll │ ├── libmodplug-1.dll │ ├── libmpg123-0.dll │ ├── libogg-0.dll │ ├── libopus-0.dll │ ├── libopusfile-0.dll │ ├── libpng16-16.dll │ ├── libtiff-5.dll │ ├── libvorbis-0.dll │ ├── libvorbisfile-3.dll │ ├── libwebp-7.dll │ └── zlib1.dll │ └── x86 │ ├── LICENSE.FLAC.txt │ ├── LICENSE.freetype.txt │ ├── LICENSE.jpeg.txt │ ├── LICENSE.modplug.txt │ ├── LICENSE.mpg123.txt │ ├── LICENSE.ogg-vorbis.txt │ ├── LICENSE.opus.txt │ ├── LICENSE.opusfile.txt │ ├── LICENSE.png.txt │ ├── LICENSE.tiff.txt │ ├── LICENSE.webp.txt │ ├── LICENSE.zlib.txt │ ├── SDL2.dll │ ├── SDL2.lib │ ├── SDL2_gfx.dll │ ├── SDL2_gfx.lib │ ├── SDL2_image.dll │ ├── SDL2_image.lib │ ├── SDL2_mixer.dll │ ├── SDL2_mixer.lib │ ├── SDL2_net.dll │ ├── SDL2_net.lib │ ├── SDL2_ttf.dll │ ├── SDL2_ttf.lib │ ├── SDL2main.lib │ ├── SDL2test.lib │ ├── libFLAC-8.dll │ ├── libfreetype-6.dll │ ├── libjpeg-9.dll │ ├── libmodplug-1.dll │ ├── libmpg123-0.dll │ ├── libogg-0.dll │ ├── libopus-0.dll │ ├── libopusfile-0.dll │ ├── libpng16-16.dll │ ├── libtiff-5.dll │ ├── libvorbis-0.dll │ ├── libvorbisfile-3.dll │ └── libwebp-7.dll ├── log.txt ├── rapidxml ├── .smproj ├── license.txt ├── manual.html ├── rapidxml.hpp ├── rapidxml_iterators.hpp ├── rapidxml_print.hpp └── rapidxml_utils.hpp ├── tmx.txt ├── ui-log.txt └── zlib ├── include ├── crc32.h ├── deflate.h ├── gzguts.h ├── inffast.h ├── inffixed.h ├── inflate.h ├── inftrees.h ├── trees.h ├── zconf.h ├── zlib.h └── zutil.h └── lib ├── zdll.lib └── zlib1.dll /.gitignore: -------------------------------------------------------------------------------- 1 | Debug/ 2 | .vs/ 3 | Release/ 4 | -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/Android.mk -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/README.md -------------------------------------------------------------------------------- /SDL_Engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine.h -------------------------------------------------------------------------------- /SDL_Engine.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine.sln -------------------------------------------------------------------------------- /SDL_Engine/SDL_Engine.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SDL_Engine.vcxproj -------------------------------------------------------------------------------- /SDL_Engine/SDL_Engine.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SDL_Engine.vcxproj.filters -------------------------------------------------------------------------------- /SDL_Engine/SDL_Engine.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SDL_Engine.vcxproj.user -------------------------------------------------------------------------------- /SDL_Engine/SEAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEAction.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEAction.h -------------------------------------------------------------------------------- /SDL_Engine/SEActionEase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEActionEase.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEActionEase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEActionEase.h -------------------------------------------------------------------------------- /SDL_Engine/SEActionInstant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEActionInstant.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEActionInstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEActionInstant.h -------------------------------------------------------------------------------- /SDL_Engine/SEActionInterval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEActionInterval.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEActionInterval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEActionInterval.h -------------------------------------------------------------------------------- /SDL_Engine/SEActionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEActionManager.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEActionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEActionManager.h -------------------------------------------------------------------------------- /SDL_Engine/SEAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEAnimation.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEAnimation.h -------------------------------------------------------------------------------- /SDL_Engine/SEAnimationCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEAnimationCache.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEAnimationCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEAnimationCache.h -------------------------------------------------------------------------------- /SDL_Engine/SEAnimationFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEAnimationFrame.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEAnimationFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEAnimationFrame.h -------------------------------------------------------------------------------- /SDL_Engine/SEAutoreleasePool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEAutoreleasePool.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEAutoreleasePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEAutoreleasePool.h -------------------------------------------------------------------------------- /SDL_Engine/SEBMFontConfiguration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEBMFontConfiguration.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEBMFontConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEBMFontConfiguration.h -------------------------------------------------------------------------------- /SDL_Engine/SEChunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEChunk.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEChunk.h -------------------------------------------------------------------------------- /SDL_Engine/SEColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEColor.h -------------------------------------------------------------------------------- /SDL_Engine/SEDirector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEDirector.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEDirector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEDirector.h -------------------------------------------------------------------------------- /SDL_Engine/SEEventCustom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEEventCustom.h -------------------------------------------------------------------------------- /SDL_Engine/SEEventDispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEEventDispatcher.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEEventDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEEventDispatcher.h -------------------------------------------------------------------------------- /SDL_Engine/SEEventListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEEventListener.h -------------------------------------------------------------------------------- /SDL_Engine/SEEventListenerAllAtOnce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEEventListenerAllAtOnce.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEEventListenerAllAtOnce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEEventListenerAllAtOnce.h -------------------------------------------------------------------------------- /SDL_Engine/SEEventListenerCustom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEEventListenerCustom.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEEventListenerCustom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEEventListenerCustom.h -------------------------------------------------------------------------------- /SDL_Engine/SEEventListenerKeyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEEventListenerKeyboard.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEEventListenerKeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEEventListenerKeyboard.h -------------------------------------------------------------------------------- /SDL_Engine/SEEventListenerKeyboardState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEEventListenerKeyboardState.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEEventListenerKeyboardState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEEventListenerKeyboardState.h -------------------------------------------------------------------------------- /SDL_Engine/SEEventListenerMouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEEventListenerMouse.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEEventListenerMouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEEventListenerMouse.h -------------------------------------------------------------------------------- /SDL_Engine/SEEventListenerTextInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEEventListenerTextInput.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEEventListenerTextInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEEventListenerTextInput.h -------------------------------------------------------------------------------- /SDL_Engine/SEEventListenerTouchOneByOne.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEEventListenerTouchOneByOne.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEEventListenerTouchOneByOne.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEEventListenerTouchOneByOne.h -------------------------------------------------------------------------------- /SDL_Engine/SEFastLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEFastLayer.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEFastLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEFastLayer.h -------------------------------------------------------------------------------- /SDL_Engine/SEFastTiledMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEFastTiledMap.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEFastTiledMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEFastTiledMap.h -------------------------------------------------------------------------------- /SDL_Engine/SEFileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEFileUtils.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEFileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEFileUtils.h -------------------------------------------------------------------------------- /SDL_Engine/SEFiniteTimeAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEFiniteTimeAction.h -------------------------------------------------------------------------------- /SDL_Engine/SEFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEFont.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEFont.h -------------------------------------------------------------------------------- /SDL_Engine/SEFontCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEFontCache.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEFontCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEFontCache.h -------------------------------------------------------------------------------- /SDL_Engine/SEInputHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEInputHandler.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEInputHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEInputHandler.h -------------------------------------------------------------------------------- /SDL_Engine/SELabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SELabel.h -------------------------------------------------------------------------------- /SDL_Engine/SELabelAtlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SELabelAtlas.cpp -------------------------------------------------------------------------------- /SDL_Engine/SELabelAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SELabelAtlas.h -------------------------------------------------------------------------------- /SDL_Engine/SELabelBMFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SELabelBMFont.cpp -------------------------------------------------------------------------------- /SDL_Engine/SELabelBMFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SELabelBMFont.h -------------------------------------------------------------------------------- /SDL_Engine/SELabelDotChar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SELabelDotChar.cpp -------------------------------------------------------------------------------- /SDL_Engine/SELabelDotChar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SELabelDotChar.h -------------------------------------------------------------------------------- /SDL_Engine/SELabelTTF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SELabelTTF.cpp -------------------------------------------------------------------------------- /SDL_Engine/SELabelTTF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SELabelTTF.h -------------------------------------------------------------------------------- /SDL_Engine/SELayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SELayer.cpp -------------------------------------------------------------------------------- /SDL_Engine/SELayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SELayer.h -------------------------------------------------------------------------------- /SDL_Engine/SELayerColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SELayerColor.cpp -------------------------------------------------------------------------------- /SDL_Engine/SELayerColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SELayerColor.h -------------------------------------------------------------------------------- /SDL_Engine/SELoadingBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SELoadingBar.cpp -------------------------------------------------------------------------------- /SDL_Engine/SELoadingBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SELoadingBar.h -------------------------------------------------------------------------------- /SDL_Engine/SEMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEMath.h -------------------------------------------------------------------------------- /SDL_Engine/SEMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEMenu.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEMenu.h -------------------------------------------------------------------------------- /SDL_Engine/SEMenuItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEMenuItem.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEMenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEMenuItem.h -------------------------------------------------------------------------------- /SDL_Engine/SEMusic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEMusic.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEMusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEMusic.h -------------------------------------------------------------------------------- /SDL_Engine/SENode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SENode.cpp -------------------------------------------------------------------------------- /SDL_Engine/SENode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SENode.h -------------------------------------------------------------------------------- /SDL_Engine/SENotificationCenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SENotificationCenter.cpp -------------------------------------------------------------------------------- /SDL_Engine/SENotificationCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SENotificationCenter.h -------------------------------------------------------------------------------- /SDL_Engine/SEObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEObject.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEObject.h -------------------------------------------------------------------------------- /SDL_Engine/SEPlatformMarcos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEPlatformMarcos.h -------------------------------------------------------------------------------- /SDL_Engine/SEPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEPoint.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEPoint.h -------------------------------------------------------------------------------- /SDL_Engine/SEPoolManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEPoolManager.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEPoolManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEPoolManager.h -------------------------------------------------------------------------------- /SDL_Engine/SEProgressTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEProgressTimer.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEProgressTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEProgressTimer.h -------------------------------------------------------------------------------- /SDL_Engine/SEProtocols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEProtocols.h -------------------------------------------------------------------------------- /SDL_Engine/SERect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SERect.cpp -------------------------------------------------------------------------------- /SDL_Engine/SERect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SERect.h -------------------------------------------------------------------------------- /SDL_Engine/SERenderCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SERenderCommand.cpp -------------------------------------------------------------------------------- /SDL_Engine/SERenderCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SERenderCommand.h -------------------------------------------------------------------------------- /SDL_Engine/SERenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SERenderer.cpp -------------------------------------------------------------------------------- /SDL_Engine/SERenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SERenderer.h -------------------------------------------------------------------------------- /SDL_Engine/SESDLNS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SESDLNS.cpp -------------------------------------------------------------------------------- /SDL_Engine/SESDLNS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SESDLNS.h -------------------------------------------------------------------------------- /SDL_Engine/SESDL_gfx_mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SESDL_gfx_mod.cpp -------------------------------------------------------------------------------- /SDL_Engine/SESDL_gfx_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SESDL_gfx_mod.h -------------------------------------------------------------------------------- /SDL_Engine/SEScale9Sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEScale9Sprite.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEScale9Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEScale9Sprite.h -------------------------------------------------------------------------------- /SDL_Engine/SEScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEScene.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEScene.h -------------------------------------------------------------------------------- /SDL_Engine/SEScheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEScheduler.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEScheduler.h -------------------------------------------------------------------------------- /SDL_Engine/SESize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SESize.cpp -------------------------------------------------------------------------------- /SDL_Engine/SESize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SESize.h -------------------------------------------------------------------------------- /SDL_Engine/SESoundManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SESoundManager.cpp -------------------------------------------------------------------------------- /SDL_Engine/SESoundManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SESoundManager.h -------------------------------------------------------------------------------- /SDL_Engine/SESprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SESprite.cpp -------------------------------------------------------------------------------- /SDL_Engine/SESprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SESprite.h -------------------------------------------------------------------------------- /SDL_Engine/SESpriteFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SESpriteFrame.cpp -------------------------------------------------------------------------------- /SDL_Engine/SESpriteFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SESpriteFrame.h -------------------------------------------------------------------------------- /SDL_Engine/SESpriteFrameCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SESpriteFrameCache.cpp -------------------------------------------------------------------------------- /SDL_Engine/SESpriteFrameCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SESpriteFrameCache.h -------------------------------------------------------------------------------- /SDL_Engine/SEStringUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEStringUtils.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEStringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEStringUtils.h -------------------------------------------------------------------------------- /SDL_Engine/SESurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SESurface.cpp -------------------------------------------------------------------------------- /SDL_Engine/SESurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SESurface.h -------------------------------------------------------------------------------- /SDL_Engine/SETMXImageLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SETMXImageLayer.cpp -------------------------------------------------------------------------------- /SDL_Engine/SETMXImageLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SETMXImageLayer.h -------------------------------------------------------------------------------- /SDL_Engine/SETMXLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SETMXLayer.cpp -------------------------------------------------------------------------------- /SDL_Engine/SETMXLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SETMXLayer.h -------------------------------------------------------------------------------- /SDL_Engine/SETMXObjectGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SETMXObjectGroup.cpp -------------------------------------------------------------------------------- /SDL_Engine/SETMXObjectGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SETMXObjectGroup.h -------------------------------------------------------------------------------- /SDL_Engine/SETMXTiledMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SETMXTiledMap.cpp -------------------------------------------------------------------------------- /SDL_Engine/SETMXTiledMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SETMXTiledMap.h -------------------------------------------------------------------------------- /SDL_Engine/SETexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SETexture.cpp -------------------------------------------------------------------------------- /SDL_Engine/SETexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SETexture.h -------------------------------------------------------------------------------- /SDL_Engine/SETextureCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SETextureCache.cpp -------------------------------------------------------------------------------- /SDL_Engine/SETextureCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SETextureCache.h -------------------------------------------------------------------------------- /SDL_Engine/SETileset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SETileset.cpp -------------------------------------------------------------------------------- /SDL_Engine/SETileset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SETileset.h -------------------------------------------------------------------------------- /SDL_Engine/SETouch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SETouch.cpp -------------------------------------------------------------------------------- /SDL_Engine/SETouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SETouch.h -------------------------------------------------------------------------------- /SDL_Engine/SEUserDefault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEUserDefault.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEUserDefault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEUserDefault.h -------------------------------------------------------------------------------- /SDL_Engine/SEValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEValue.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEValue.h -------------------------------------------------------------------------------- /SDL_Engine/SEVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEVector.h -------------------------------------------------------------------------------- /SDL_Engine/SEWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEWindow.cpp -------------------------------------------------------------------------------- /SDL_Engine/SEWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/SEWindow.h -------------------------------------------------------------------------------- /SDL_Engine/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/base64.cpp -------------------------------------------------------------------------------- /SDL_Engine/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/base64.h -------------------------------------------------------------------------------- /SDL_Engine/extensions/SDL_PxString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/extensions/SDL_PxString.cpp -------------------------------------------------------------------------------- /SDL_Engine/extensions/SDL_PxString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/extensions/SDL_PxString.h -------------------------------------------------------------------------------- /SDL_Engine/extensions/SDL_anigif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/extensions/SDL_anigif.c -------------------------------------------------------------------------------- /SDL_Engine/extensions/SDL_anigif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/extensions/SDL_anigif.h -------------------------------------------------------------------------------- /SDL_Engine/ui/UIAbstractCheckButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/ui/UIAbstractCheckButton.cpp -------------------------------------------------------------------------------- /SDL_Engine/ui/UIAbstractCheckButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/ui/UIAbstractCheckButton.h -------------------------------------------------------------------------------- /SDL_Engine/ui/UIButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/ui/UIButton.cpp -------------------------------------------------------------------------------- /SDL_Engine/ui/UIButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/ui/UIButton.h -------------------------------------------------------------------------------- /SDL_Engine/ui/UICheckBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/ui/UICheckBox.cpp -------------------------------------------------------------------------------- /SDL_Engine/ui/UICheckBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/ui/UICheckBox.h -------------------------------------------------------------------------------- /SDL_Engine/ui/UIEditBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/ui/UIEditBox.cpp -------------------------------------------------------------------------------- /SDL_Engine/ui/UIEditBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/ui/UIEditBox.h -------------------------------------------------------------------------------- /SDL_Engine/ui/UIRadioButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/ui/UIRadioButton.cpp -------------------------------------------------------------------------------- /SDL_Engine/ui/UIRadioButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/ui/UIRadioButton.h -------------------------------------------------------------------------------- /SDL_Engine/ui/UIRadioButtonGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/ui/UIRadioButtonGroup.cpp -------------------------------------------------------------------------------- /SDL_Engine/ui/UIRadioButtonGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/ui/UIRadioButtonGroup.h -------------------------------------------------------------------------------- /SDL_Engine/ui/UISlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/ui/UISlider.cpp -------------------------------------------------------------------------------- /SDL_Engine/ui/UISlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/ui/UISlider.h -------------------------------------------------------------------------------- /SDL_Engine/ui/UIWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/ui/UIWidget.cpp -------------------------------------------------------------------------------- /SDL_Engine/ui/UIWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/ui/UIWidget.h -------------------------------------------------------------------------------- /SDL_Engine/ui/UIWidgetData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/ui/UIWidgetData.cpp -------------------------------------------------------------------------------- /SDL_Engine/ui/UIWidgetData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/ui/UIWidgetData.h -------------------------------------------------------------------------------- /SDL_Engine/ui/UIWidgetDataSetting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/ui/UIWidgetDataSetting.cpp -------------------------------------------------------------------------------- /SDL_Engine/ui/UIWidgetDataSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/ui/UIWidgetDataSetting.h -------------------------------------------------------------------------------- /SDL_Engine/ui/UIWidgetFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/ui/UIWidgetFactory.cpp -------------------------------------------------------------------------------- /SDL_Engine/ui/UIWidgetFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/ui/UIWidgetFactory.h -------------------------------------------------------------------------------- /SDL_Engine/ui/UIWidgetManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/ui/UIWidgetManager.cpp -------------------------------------------------------------------------------- /SDL_Engine/ui/UIWidgetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/ui/UIWidgetManager.h -------------------------------------------------------------------------------- /SDL_Engine/ui/UIWidgetSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/ui/UIWidgetSystem.cpp -------------------------------------------------------------------------------- /SDL_Engine/ui/UIWidgetSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/SDL_Engine/ui/UIWidgetSystem.h -------------------------------------------------------------------------------- /box2d/DebugDraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/box2d/DebugDraw.cpp -------------------------------------------------------------------------------- /box2d/DebugDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/box2d/DebugDraw.h -------------------------------------------------------------------------------- /box2d/GB2ShapeCache-x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/box2d/GB2ShapeCache-x.cpp -------------------------------------------------------------------------------- /box2d/GB2ShapeCache-x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/box2d/GB2ShapeCache-x.h -------------------------------------------------------------------------------- /box2d/PhysicalDrawNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/box2d/PhysicalDrawNode.cpp -------------------------------------------------------------------------------- /box2d/PhysicalDrawNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/box2d/PhysicalDrawNode.h -------------------------------------------------------------------------------- /box2d/box2d.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/box2d/box2d.sln -------------------------------------------------------------------------------- /box2d/box2d.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/box2d/box2d.vcxproj -------------------------------------------------------------------------------- /box2d/box2d.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/box2d/box2d.vcxproj.filters -------------------------------------------------------------------------------- /box2d/box2d.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/box2d/box2d.vcxproj.user -------------------------------------------------------------------------------- /box2d/physic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/box2d/physic.h -------------------------------------------------------------------------------- /deprecated/1-CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/deprecated/1-CMakeLists.txt -------------------------------------------------------------------------------- /deprecated/BMFontConfiguration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/deprecated/BMFontConfiguration.cpp -------------------------------------------------------------------------------- /deprecated/BMFontConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/deprecated/BMFontConfiguration.h -------------------------------------------------------------------------------- /deprecated/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/deprecated/CMakeLists.txt -------------------------------------------------------------------------------- /deprecated/Makefile-SDL_Engine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/deprecated/Makefile-SDL_Engine -------------------------------------------------------------------------------- /deprecated/SDL_ttf_mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/deprecated/SDL_ttf_mod.cpp -------------------------------------------------------------------------------- /deprecated/SDL_ttf_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/deprecated/SDL_ttf_mod.h -------------------------------------------------------------------------------- /issue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/issue.txt -------------------------------------------------------------------------------- /local/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL.h -------------------------------------------------------------------------------- /local/include/SDL2_framerate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL2_framerate.h -------------------------------------------------------------------------------- /local/include/SDL2_gfxPrimitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL2_gfxPrimitives.h -------------------------------------------------------------------------------- /local/include/SDL2_gfxPrimitives_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL2_gfxPrimitives_font.h -------------------------------------------------------------------------------- /local/include/SDL2_imageFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL2_imageFilter.h -------------------------------------------------------------------------------- /local/include/SDL2_rotozoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL2_rotozoom.h -------------------------------------------------------------------------------- /local/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_assert.h -------------------------------------------------------------------------------- /local/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_atomic.h -------------------------------------------------------------------------------- /local/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_audio.h -------------------------------------------------------------------------------- /local/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_bits.h -------------------------------------------------------------------------------- /local/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_blendmode.h -------------------------------------------------------------------------------- /local/include/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_clipboard.h -------------------------------------------------------------------------------- /local/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_config.h -------------------------------------------------------------------------------- /local/include/SDL_config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_config.h.cmake -------------------------------------------------------------------------------- /local/include/SDL_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_config.h.in -------------------------------------------------------------------------------- /local/include/SDL_config_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_config_android.h -------------------------------------------------------------------------------- /local/include/SDL_config_iphoneos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_config_iphoneos.h -------------------------------------------------------------------------------- /local/include/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_config_macosx.h -------------------------------------------------------------------------------- /local/include/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_config_minimal.h -------------------------------------------------------------------------------- /local/include/SDL_config_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_config_os2.h -------------------------------------------------------------------------------- /local/include/SDL_config_pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_config_pandora.h -------------------------------------------------------------------------------- /local/include/SDL_config_psp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_config_psp.h -------------------------------------------------------------------------------- /local/include/SDL_config_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_config_windows.h -------------------------------------------------------------------------------- /local/include/SDL_config_winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_config_winrt.h -------------------------------------------------------------------------------- /local/include/SDL_config_wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_config_wiz.h -------------------------------------------------------------------------------- /local/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_copying.h -------------------------------------------------------------------------------- /local/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /local/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_egl.h -------------------------------------------------------------------------------- /local/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_endian.h -------------------------------------------------------------------------------- /local/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_error.h -------------------------------------------------------------------------------- /local/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_events.h -------------------------------------------------------------------------------- /local/include/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_filesystem.h -------------------------------------------------------------------------------- /local/include/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_gamecontroller.h -------------------------------------------------------------------------------- /local/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_gesture.h -------------------------------------------------------------------------------- /local/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_haptic.h -------------------------------------------------------------------------------- /local/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_hints.h -------------------------------------------------------------------------------- /local/include/SDL_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_image.h -------------------------------------------------------------------------------- /local/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_joystick.h -------------------------------------------------------------------------------- /local/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_keyboard.h -------------------------------------------------------------------------------- /local/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_keycode.h -------------------------------------------------------------------------------- /local/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_loadso.h -------------------------------------------------------------------------------- /local/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_log.h -------------------------------------------------------------------------------- /local/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_main.h -------------------------------------------------------------------------------- /local/include/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_messagebox.h -------------------------------------------------------------------------------- /local/include/SDL_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_metal.h -------------------------------------------------------------------------------- /local/include/SDL_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_mixer.h -------------------------------------------------------------------------------- /local/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_mouse.h -------------------------------------------------------------------------------- /local/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_mutex.h -------------------------------------------------------------------------------- /local/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_name.h -------------------------------------------------------------------------------- /local/include/SDL_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_net.h -------------------------------------------------------------------------------- /local/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_opengl.h -------------------------------------------------------------------------------- /local/include/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_opengl_glext.h -------------------------------------------------------------------------------- /local/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_opengles.h -------------------------------------------------------------------------------- /local/include/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_opengles2.h -------------------------------------------------------------------------------- /local/include/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /local/include/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /local/include/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /local/include/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /local/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_pixels.h -------------------------------------------------------------------------------- /local/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_platform.h -------------------------------------------------------------------------------- /local/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_power.h -------------------------------------------------------------------------------- /local/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_quit.h -------------------------------------------------------------------------------- /local/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_rect.h -------------------------------------------------------------------------------- /local/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_render.h -------------------------------------------------------------------------------- /local/include/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_revision.h -------------------------------------------------------------------------------- /local/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_rwops.h -------------------------------------------------------------------------------- /local/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_scancode.h -------------------------------------------------------------------------------- /local/include/SDL_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_sensor.h -------------------------------------------------------------------------------- /local/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_shape.h -------------------------------------------------------------------------------- /local/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_stdinc.h -------------------------------------------------------------------------------- /local/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_surface.h -------------------------------------------------------------------------------- /local/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_system.h -------------------------------------------------------------------------------- /local/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_syswm.h -------------------------------------------------------------------------------- /local/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_test.h -------------------------------------------------------------------------------- /local/include/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_test_assert.h -------------------------------------------------------------------------------- /local/include/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_test_common.h -------------------------------------------------------------------------------- /local/include/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_test_compare.h -------------------------------------------------------------------------------- /local/include/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_test_crc32.h -------------------------------------------------------------------------------- /local/include/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_test_font.h -------------------------------------------------------------------------------- /local/include/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /local/include/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_test_harness.h -------------------------------------------------------------------------------- /local/include/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_test_images.h -------------------------------------------------------------------------------- /local/include/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_test_log.h -------------------------------------------------------------------------------- /local/include/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_test_md5.h -------------------------------------------------------------------------------- /local/include/SDL_test_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_test_memory.h -------------------------------------------------------------------------------- /local/include/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_test_random.h -------------------------------------------------------------------------------- /local/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_thread.h -------------------------------------------------------------------------------- /local/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_timer.h -------------------------------------------------------------------------------- /local/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_touch.h -------------------------------------------------------------------------------- /local/include/SDL_ttf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_ttf.h -------------------------------------------------------------------------------- /local/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_types.h -------------------------------------------------------------------------------- /local/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_version.h -------------------------------------------------------------------------------- /local/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_video.h -------------------------------------------------------------------------------- /local/include/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/SDL_vulkan.h -------------------------------------------------------------------------------- /local/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/begin_code.h -------------------------------------------------------------------------------- /local/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/include/close_code.h -------------------------------------------------------------------------------- /local/lib/x64/LICENSE.FLAC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/LICENSE.FLAC.txt -------------------------------------------------------------------------------- /local/lib/x64/LICENSE.freetype.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/LICENSE.freetype.txt -------------------------------------------------------------------------------- /local/lib/x64/LICENSE.jpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/LICENSE.jpeg.txt -------------------------------------------------------------------------------- /local/lib/x64/LICENSE.modplug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/LICENSE.modplug.txt -------------------------------------------------------------------------------- /local/lib/x64/LICENSE.mpg123.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/LICENSE.mpg123.txt -------------------------------------------------------------------------------- /local/lib/x64/LICENSE.ogg-vorbis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/LICENSE.ogg-vorbis.txt -------------------------------------------------------------------------------- /local/lib/x64/LICENSE.opus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/LICENSE.opus.txt -------------------------------------------------------------------------------- /local/lib/x64/LICENSE.opusfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/LICENSE.opusfile.txt -------------------------------------------------------------------------------- /local/lib/x64/LICENSE.png.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/LICENSE.png.txt -------------------------------------------------------------------------------- /local/lib/x64/LICENSE.tiff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/LICENSE.tiff.txt -------------------------------------------------------------------------------- /local/lib/x64/LICENSE.webp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/LICENSE.webp.txt -------------------------------------------------------------------------------- /local/lib/x64/LICENSE.zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/LICENSE.zlib.txt -------------------------------------------------------------------------------- /local/lib/x64/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/SDL2.dll -------------------------------------------------------------------------------- /local/lib/x64/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/SDL2.lib -------------------------------------------------------------------------------- /local/lib/x64/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/SDL2_image.dll -------------------------------------------------------------------------------- /local/lib/x64/SDL2_image.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/SDL2_image.lib -------------------------------------------------------------------------------- /local/lib/x64/SDL2_mixer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/SDL2_mixer.dll -------------------------------------------------------------------------------- /local/lib/x64/SDL2_mixer.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/SDL2_mixer.lib -------------------------------------------------------------------------------- /local/lib/x64/SDL2_net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/SDL2_net.dll -------------------------------------------------------------------------------- /local/lib/x64/SDL2_net.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/SDL2_net.lib -------------------------------------------------------------------------------- /local/lib/x64/SDL2_ttf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/SDL2_ttf.dll -------------------------------------------------------------------------------- /local/lib/x64/SDL2_ttf.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/SDL2_ttf.lib -------------------------------------------------------------------------------- /local/lib/x64/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/SDL2main.lib -------------------------------------------------------------------------------- /local/lib/x64/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/SDL2test.lib -------------------------------------------------------------------------------- /local/lib/x64/libFLAC-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/libFLAC-8.dll -------------------------------------------------------------------------------- /local/lib/x64/libfreetype-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/libfreetype-6.dll -------------------------------------------------------------------------------- /local/lib/x64/libjpeg-9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/libjpeg-9.dll -------------------------------------------------------------------------------- /local/lib/x64/libmodplug-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/libmodplug-1.dll -------------------------------------------------------------------------------- /local/lib/x64/libmpg123-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/libmpg123-0.dll -------------------------------------------------------------------------------- /local/lib/x64/libogg-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/libogg-0.dll -------------------------------------------------------------------------------- /local/lib/x64/libopus-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/libopus-0.dll -------------------------------------------------------------------------------- /local/lib/x64/libopusfile-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/libopusfile-0.dll -------------------------------------------------------------------------------- /local/lib/x64/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/libpng16-16.dll -------------------------------------------------------------------------------- /local/lib/x64/libtiff-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/libtiff-5.dll -------------------------------------------------------------------------------- /local/lib/x64/libvorbis-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/libvorbis-0.dll -------------------------------------------------------------------------------- /local/lib/x64/libvorbisfile-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/libvorbisfile-3.dll -------------------------------------------------------------------------------- /local/lib/x64/libwebp-7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/libwebp-7.dll -------------------------------------------------------------------------------- /local/lib/x64/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x64/zlib1.dll -------------------------------------------------------------------------------- /local/lib/x86/LICENSE.FLAC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/LICENSE.FLAC.txt -------------------------------------------------------------------------------- /local/lib/x86/LICENSE.freetype.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/LICENSE.freetype.txt -------------------------------------------------------------------------------- /local/lib/x86/LICENSE.jpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/LICENSE.jpeg.txt -------------------------------------------------------------------------------- /local/lib/x86/LICENSE.modplug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/LICENSE.modplug.txt -------------------------------------------------------------------------------- /local/lib/x86/LICENSE.mpg123.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/LICENSE.mpg123.txt -------------------------------------------------------------------------------- /local/lib/x86/LICENSE.ogg-vorbis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/LICENSE.ogg-vorbis.txt -------------------------------------------------------------------------------- /local/lib/x86/LICENSE.opus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/LICENSE.opus.txt -------------------------------------------------------------------------------- /local/lib/x86/LICENSE.opusfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/LICENSE.opusfile.txt -------------------------------------------------------------------------------- /local/lib/x86/LICENSE.png.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/LICENSE.png.txt -------------------------------------------------------------------------------- /local/lib/x86/LICENSE.tiff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/LICENSE.tiff.txt -------------------------------------------------------------------------------- /local/lib/x86/LICENSE.webp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/LICENSE.webp.txt -------------------------------------------------------------------------------- /local/lib/x86/LICENSE.zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/LICENSE.zlib.txt -------------------------------------------------------------------------------- /local/lib/x86/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/SDL2.dll -------------------------------------------------------------------------------- /local/lib/x86/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/SDL2.lib -------------------------------------------------------------------------------- /local/lib/x86/SDL2_gfx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/SDL2_gfx.dll -------------------------------------------------------------------------------- /local/lib/x86/SDL2_gfx.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/SDL2_gfx.lib -------------------------------------------------------------------------------- /local/lib/x86/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/SDL2_image.dll -------------------------------------------------------------------------------- /local/lib/x86/SDL2_image.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/SDL2_image.lib -------------------------------------------------------------------------------- /local/lib/x86/SDL2_mixer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/SDL2_mixer.dll -------------------------------------------------------------------------------- /local/lib/x86/SDL2_mixer.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/SDL2_mixer.lib -------------------------------------------------------------------------------- /local/lib/x86/SDL2_net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/SDL2_net.dll -------------------------------------------------------------------------------- /local/lib/x86/SDL2_net.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/SDL2_net.lib -------------------------------------------------------------------------------- /local/lib/x86/SDL2_ttf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/SDL2_ttf.dll -------------------------------------------------------------------------------- /local/lib/x86/SDL2_ttf.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/SDL2_ttf.lib -------------------------------------------------------------------------------- /local/lib/x86/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/SDL2main.lib -------------------------------------------------------------------------------- /local/lib/x86/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/SDL2test.lib -------------------------------------------------------------------------------- /local/lib/x86/libFLAC-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/libFLAC-8.dll -------------------------------------------------------------------------------- /local/lib/x86/libfreetype-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/libfreetype-6.dll -------------------------------------------------------------------------------- /local/lib/x86/libjpeg-9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/libjpeg-9.dll -------------------------------------------------------------------------------- /local/lib/x86/libmodplug-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/libmodplug-1.dll -------------------------------------------------------------------------------- /local/lib/x86/libmpg123-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/libmpg123-0.dll -------------------------------------------------------------------------------- /local/lib/x86/libogg-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/libogg-0.dll -------------------------------------------------------------------------------- /local/lib/x86/libopus-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/libopus-0.dll -------------------------------------------------------------------------------- /local/lib/x86/libopusfile-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/libopusfile-0.dll -------------------------------------------------------------------------------- /local/lib/x86/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/libpng16-16.dll -------------------------------------------------------------------------------- /local/lib/x86/libtiff-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/libtiff-5.dll -------------------------------------------------------------------------------- /local/lib/x86/libvorbis-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/libvorbis-0.dll -------------------------------------------------------------------------------- /local/lib/x86/libvorbisfile-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/libvorbisfile-3.dll -------------------------------------------------------------------------------- /local/lib/x86/libwebp-7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/local/lib/x86/libwebp-7.dll -------------------------------------------------------------------------------- /log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/log.txt -------------------------------------------------------------------------------- /rapidxml/.smproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/rapidxml/.smproj -------------------------------------------------------------------------------- /rapidxml/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/rapidxml/license.txt -------------------------------------------------------------------------------- /rapidxml/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/rapidxml/manual.html -------------------------------------------------------------------------------- /rapidxml/rapidxml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/rapidxml/rapidxml.hpp -------------------------------------------------------------------------------- /rapidxml/rapidxml_iterators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/rapidxml/rapidxml_iterators.hpp -------------------------------------------------------------------------------- /rapidxml/rapidxml_print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/rapidxml/rapidxml_print.hpp -------------------------------------------------------------------------------- /rapidxml/rapidxml_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/rapidxml/rapidxml_utils.hpp -------------------------------------------------------------------------------- /tmx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/tmx.txt -------------------------------------------------------------------------------- /ui-log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/ui-log.txt -------------------------------------------------------------------------------- /zlib/include/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/zlib/include/crc32.h -------------------------------------------------------------------------------- /zlib/include/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/zlib/include/deflate.h -------------------------------------------------------------------------------- /zlib/include/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/zlib/include/gzguts.h -------------------------------------------------------------------------------- /zlib/include/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/zlib/include/inffast.h -------------------------------------------------------------------------------- /zlib/include/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/zlib/include/inffixed.h -------------------------------------------------------------------------------- /zlib/include/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/zlib/include/inflate.h -------------------------------------------------------------------------------- /zlib/include/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/zlib/include/inftrees.h -------------------------------------------------------------------------------- /zlib/include/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/zlib/include/trees.h -------------------------------------------------------------------------------- /zlib/include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/zlib/include/zconf.h -------------------------------------------------------------------------------- /zlib/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/zlib/include/zlib.h -------------------------------------------------------------------------------- /zlib/include/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/zlib/include/zutil.h -------------------------------------------------------------------------------- /zlib/lib/zdll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/zlib/lib/zdll.lib -------------------------------------------------------------------------------- /zlib/lib/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky94520/SDL_Engine/HEAD/zlib/lib/zlib1.dll --------------------------------------------------------------------------------