├── .gitignore ├── Documents ├── en │ ├── .buildinfo │ ├── _images │ │ └── overall_arch.png │ ├── _sources │ │ ├── docs │ │ │ ├── 00_introduction.rst.txt │ │ │ ├── 10_dependency.rst.txt │ │ │ ├── 11_getting_started.rst.txt │ │ │ ├── 18_changelog.rst.txt │ │ │ ├── 19_known_issues.rst.txt │ │ │ ├── 21_concepts_and_architecture.rst.txt │ │ │ ├── 30_platforms.rst.txt │ │ │ ├── 31_platform_iOS.rst.txt │ │ │ ├── 32_platform_Android.rst.txt │ │ │ ├── 33_platform_WinPC.rst.txt │ │ │ ├── 40_modules.rst.txt │ │ │ ├── 80_tools.rst.txt │ │ │ ├── 91_license.rst.txt │ │ │ └── 92_library_usage.rst.txt │ │ └── index.rst.txt │ ├── _static │ │ ├── _sphinx_javascript_frameworks_compat.js │ │ ├── basic.css │ │ ├── css │ │ │ ├── badge_only.css │ │ │ ├── fonts │ │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ ├── lato-bold-italic.woff │ │ │ │ ├── lato-bold-italic.woff2 │ │ │ │ ├── lato-bold.woff │ │ │ │ ├── lato-bold.woff2 │ │ │ │ ├── lato-normal-italic.woff │ │ │ │ ├── lato-normal-italic.woff2 │ │ │ │ ├── lato-normal.woff │ │ │ │ └── lato-normal.woff2 │ │ │ └── theme.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── file.png │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── Lato │ │ │ │ ├── lato-bold.eot │ │ │ │ ├── lato-bold.ttf │ │ │ │ ├── lato-bold.woff │ │ │ │ ├── lato-bold.woff2 │ │ │ │ ├── lato-bolditalic.eot │ │ │ │ ├── lato-bolditalic.ttf │ │ │ │ ├── lato-bolditalic.woff │ │ │ │ ├── lato-bolditalic.woff2 │ │ │ │ ├── lato-italic.eot │ │ │ │ ├── lato-italic.ttf │ │ │ │ ├── lato-italic.woff │ │ │ │ ├── lato-italic.woff2 │ │ │ │ ├── lato-regular.eot │ │ │ │ ├── lato-regular.ttf │ │ │ │ ├── lato-regular.woff │ │ │ │ └── lato-regular.woff2 │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ ├── Roboto-Slab-Light.woff │ │ │ ├── Roboto-Slab-Light.woff2 │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ ├── Roboto-Slab-Thin.woff │ │ │ ├── Roboto-Slab-Thin.woff2 │ │ │ ├── RobotoSlab │ │ │ │ ├── roboto-slab-v7-bold.eot │ │ │ │ ├── roboto-slab-v7-bold.ttf │ │ │ │ ├── roboto-slab-v7-bold.woff │ │ │ │ ├── roboto-slab-v7-bold.woff2 │ │ │ │ ├── roboto-slab-v7-regular.eot │ │ │ │ ├── roboto-slab-v7-regular.ttf │ │ │ │ ├── roboto-slab-v7-regular.woff │ │ │ │ └── roboto-slab-v7-regular.woff2 │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── lato-bold-italic.woff │ │ │ ├── lato-bold-italic.woff2 │ │ │ ├── lato-bold.woff │ │ │ ├── lato-bold.woff2 │ │ │ ├── lato-normal-italic.woff │ │ │ ├── lato-normal-italic.woff2 │ │ │ ├── lato-normal.woff │ │ │ └── lato-normal.woff2 │ │ ├── jquery-3.5.1.js │ │ ├── jquery-3.6.0.js │ │ ├── jquery.js │ │ ├── js │ │ │ ├── badge_only.js │ │ │ ├── html5shiv-printshiv.min.js │ │ │ ├── html5shiv.min.js │ │ │ ├── modernizr.min.js │ │ │ └── theme.js │ │ ├── language_data.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── translations.js │ │ ├── underscore-1.12.0.js │ │ ├── underscore-1.13.1.js │ │ └── underscore.js │ ├── docs │ │ ├── 00_introduction.html │ │ ├── 10_dependency.html │ │ ├── 11_getting_started.html │ │ ├── 18_changelog.html │ │ ├── 19_known_issues.html │ │ ├── 21_concepts_and_architecture.html │ │ ├── 30_platforms.html │ │ ├── 31_platform_iOS.html │ │ ├── 32_platform_Android.html │ │ ├── 33_platform_WinPC.html │ │ ├── 40_modules.html │ │ ├── 80_tools.html │ │ ├── 91_license.html │ │ └── 92_library_usage.html │ ├── genindex.html │ ├── index.html │ ├── objects.inv │ ├── search.html │ └── searchindex.js ├── index.html ├── kr │ ├── .buildinfo │ ├── _images │ │ ├── overall_arch.png │ │ └── ui_layout.png │ ├── _sources │ │ ├── docs │ │ │ ├── 00_introduction.rst.txt │ │ │ ├── 10_dependency.rst.txt │ │ │ ├── 11_getting_started.rst.txt │ │ │ ├── 18_changelog.rst.txt │ │ │ ├── 19_known_issues.rst.txt │ │ │ ├── 21_concepts_and_architecture.rst.txt │ │ │ ├── 30_platforms.rst.txt │ │ │ ├── 31_platform_iOS.rst.txt │ │ │ ├── 32_platform_Android.rst.txt │ │ │ ├── 33_platform_WinPC.rst.txt │ │ │ ├── 40_modules.rst.txt │ │ │ ├── 41_mod_application.rst.txt │ │ │ ├── 42_mod_filesystem.rst.txt │ │ │ ├── 43_mod_graphics.rst.txt │ │ │ ├── 44_mod_input.rst.txt │ │ │ ├── 45_mod_sound.rst.txt │ │ │ ├── 46_mod_log.rst.txt │ │ │ ├── 47_mod_task.rst.txt │ │ │ ├── 48_mod_font.rst.txt │ │ │ ├── 49_mod_crypto.rst.txt │ │ │ ├── 50_mod_http.rst.txt │ │ │ ├── 51_mod_legacyui.rst.txt │ │ │ ├── 80_tools.rst.txt │ │ │ ├── 91_license.rst.txt │ │ │ ├── 92_library_usage.rst.txt │ │ │ └── 93_acknowledgement.rst.txt │ │ └── index.rst.txt │ ├── _static │ │ ├── _sphinx_javascript_frameworks_compat.js │ │ ├── basic.css │ │ ├── css │ │ │ ├── badge_only.css │ │ │ ├── fonts │ │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ ├── lato-bold-italic.woff │ │ │ │ ├── lato-bold-italic.woff2 │ │ │ │ ├── lato-bold.woff │ │ │ │ ├── lato-bold.woff2 │ │ │ │ ├── lato-normal-italic.woff │ │ │ │ ├── lato-normal-italic.woff2 │ │ │ │ ├── lato-normal.woff │ │ │ │ └── lato-normal.woff2 │ │ │ └── theme.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── file.png │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── Lato │ │ │ │ ├── lato-bold.eot │ │ │ │ ├── lato-bold.ttf │ │ │ │ ├── lato-bold.woff │ │ │ │ ├── lato-bold.woff2 │ │ │ │ ├── lato-bolditalic.eot │ │ │ │ ├── lato-bolditalic.ttf │ │ │ │ ├── lato-bolditalic.woff │ │ │ │ ├── lato-bolditalic.woff2 │ │ │ │ ├── lato-italic.eot │ │ │ │ ├── lato-italic.ttf │ │ │ │ ├── lato-italic.woff │ │ │ │ ├── lato-italic.woff2 │ │ │ │ ├── lato-regular.eot │ │ │ │ ├── lato-regular.ttf │ │ │ │ ├── lato-regular.woff │ │ │ │ └── lato-regular.woff2 │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ ├── Roboto-Slab-Light.woff │ │ │ ├── Roboto-Slab-Light.woff2 │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ ├── Roboto-Slab-Thin.woff │ │ │ ├── Roboto-Slab-Thin.woff2 │ │ │ ├── RobotoSlab │ │ │ │ ├── roboto-slab-v7-bold.eot │ │ │ │ ├── roboto-slab-v7-bold.ttf │ │ │ │ ├── roboto-slab-v7-bold.woff │ │ │ │ ├── roboto-slab-v7-bold.woff2 │ │ │ │ ├── roboto-slab-v7-regular.eot │ │ │ │ ├── roboto-slab-v7-regular.ttf │ │ │ │ ├── roboto-slab-v7-regular.woff │ │ │ │ └── roboto-slab-v7-regular.woff2 │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── lato-bold-italic.woff │ │ │ ├── lato-bold-italic.woff2 │ │ │ ├── lato-bold.woff │ │ │ ├── lato-bold.woff2 │ │ │ ├── lato-normal-italic.woff │ │ │ ├── lato-normal-italic.woff2 │ │ │ ├── lato-normal.woff │ │ │ └── lato-normal.woff2 │ │ ├── jquery-3.5.1.js │ │ ├── jquery-3.6.0.js │ │ ├── jquery.js │ │ ├── js │ │ │ ├── badge_only.js │ │ │ ├── html5shiv-printshiv.min.js │ │ │ ├── html5shiv.min.js │ │ │ ├── modernizr.min.js │ │ │ └── theme.js │ │ ├── language_data.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── translations.js │ │ ├── underscore-1.12.0.js │ │ ├── underscore-1.13.1.js │ │ └── underscore.js │ ├── docs │ │ ├── 00_introduction.html │ │ ├── 10_dependency.html │ │ ├── 11_getting_started.html │ │ ├── 18_changelog.html │ │ ├── 19_known_issues.html │ │ ├── 21_concepts_and_architecture.html │ │ ├── 30_platforms.html │ │ ├── 31_platform_iOS.html │ │ ├── 32_platform_Android.html │ │ ├── 33_platform_WinPC.html │ │ ├── 40_modules.html │ │ ├── 41_mod_application.html │ │ ├── 42_mod_filesystem.html │ │ ├── 43_mod_graphics.html │ │ ├── 44_mod_input.html │ │ ├── 45_mod_sound.html │ │ ├── 46_mod_log.html │ │ ├── 47_mod_task.html │ │ ├── 48_mod_font.html │ │ ├── 49_mod_crypto.html │ │ ├── 50_mod_http.html │ │ ├── 51_mod_legacyui.html │ │ ├── 80_tools.html │ │ ├── 91_license.html │ │ ├── 92_library_usage.html │ │ └── 93_acknowledgement.html │ ├── genindex.html │ ├── index.html │ ├── objects.inv │ ├── search.html │ └── searchindex.js └── src │ ├── en │ ├── Makefile │ ├── conf.py │ ├── docs │ │ ├── 00_introduction.rst │ │ ├── 10_dependency.rst │ │ ├── 11_getting_started.rst │ │ ├── 18_changelog.rst │ │ ├── 19_known_issues.rst │ │ ├── 21_concepts_and_architecture.rst │ │ ├── 30_platforms.rst │ │ ├── 31_platform_iOS.rst │ │ ├── 32_platform_Android.rst │ │ ├── 33_platform_WinPC.rst │ │ ├── 40_modules.rst │ │ ├── 80_tools.rst │ │ ├── 91_license.rst │ │ ├── 92_library_usage.rst │ │ └── images │ │ │ └── overall_arch.png │ ├── index.rst │ └── make.bat │ └── kr │ ├── Makefile │ ├── conf.py │ ├── docs │ ├── 00_introduction.rst │ ├── 10_dependency.rst │ ├── 11_getting_started.rst │ ├── 18_changelog.rst │ ├── 19_known_issues.rst │ ├── 21_concepts_and_architecture.rst │ ├── 30_platforms.rst │ ├── 31_platform_iOS.rst │ ├── 32_platform_Android.rst │ ├── 33_platform_WinPC.rst │ ├── 40_modules.rst │ ├── 41_mod_application.rst │ ├── 42_mod_filesystem.rst │ ├── 43_mod_graphics.rst │ ├── 44_mod_input.rst │ ├── 45_mod_sound.rst │ ├── 46_mod_log.rst │ ├── 47_mod_task.rst │ ├── 48_mod_font.rst │ ├── 49_mod_crypto.rst │ ├── 50_mod_http.rst │ ├── 51_mod_legacyui.rst │ ├── 80_tools.rst │ ├── 91_license.rst │ ├── 92_library_usage.rst │ ├── 93_acknowledgement.rst │ └── images │ │ ├── overall_arch.png │ │ └── ui_layout.png │ ├── index.rst │ └── make.bat ├── Engine ├── CMakeLists.txt ├── Common │ ├── Basic │ │ ├── Basic.vcxproj │ │ ├── Basic.vcxproj.filters │ │ ├── Basic.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── CMakeLists.txt │ │ ├── LeggieroBasic.h │ │ └── _Internal │ │ │ ├── _CommonTypes.cpp │ │ │ ├── _CommonTypes.h │ │ │ ├── _CompileSettings.h │ │ │ ├── _LeggieroFlags.h │ │ │ └── _Warnings.h │ ├── Engine │ │ ├── Application │ │ │ ├── BaseGame.cpp │ │ │ ├── BaseGame.h │ │ │ ├── CreateGame.h │ │ │ ├── GameProcessAnchor.cpp │ │ │ ├── GameProcessAnchor.h │ │ │ ├── GameProcessAnchorObserver.h │ │ │ ├── IGame.h │ │ │ ├── IGameInitializer.h │ │ │ ├── IGameLaunchOption.h │ │ │ └── IPlatformApplication.h │ │ ├── CMakeLists.txt │ │ ├── Engine.vcxproj │ │ ├── Engine.vcxproj.filters │ │ ├── Engine.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── Module │ │ │ ├── EngineComponent.cpp │ │ │ ├── EngineComponent.h │ │ │ ├── EngineComponentException.h │ │ │ ├── EngineComponentHolder.cpp │ │ │ ├── EngineComponentHolder.h │ │ │ ├── EngineComponentId.h │ │ │ ├── EngineModuleException.h │ │ │ ├── EngineModuleId.h │ │ │ ├── EngineModuleInterface.cpp │ │ │ └── EngineModuleInterface.h │ │ └── Toolbox │ │ │ ├── ModuledGame │ │ │ ├── ModuledGame.cpp │ │ │ └── ModuledGame.h │ │ │ └── Scene │ │ │ ├── GameSceneHolder.cpp │ │ │ ├── GameSceneHolder.h │ │ │ ├── GameSceneTypes.h │ │ │ ├── IGameScene.h │ │ │ └── IGameSceneContext.h │ └── Utility │ │ ├── CMakeLists.txt │ │ ├── Data │ │ ├── BufferReader.cpp │ │ ├── BufferReader.h │ │ ├── MemoryBuffer.cpp │ │ └── MemoryBuffer.h │ │ ├── Encoding │ │ ├── Base64.cpp │ │ ├── Base64.h │ │ ├── HexString.cpp │ │ ├── HexString.h │ │ ├── URLEncoding.cpp │ │ └── URLEncoding.h │ │ ├── Math │ │ ├── BasicRect.h │ │ ├── BitMath.h │ │ ├── Easing.cpp │ │ ├── Easing.h │ │ ├── SimpleGeometry.h │ │ ├── SimpleMath.h │ │ └── Vector.h │ │ ├── Object │ │ ├── PointerHolder.cpp │ │ ├── PointerHolder.h │ │ └── VerySimpleObjectPool.h │ │ ├── String │ │ ├── AsciiStringUtility.cpp │ │ ├── AsciiStringUtility.h │ │ └── IStringBag.h │ │ ├── Sugar │ │ ├── EnumClass.h │ │ ├── EventNotifier.h │ │ ├── Finally.h │ │ ├── NonCopyable.h │ │ ├── SingletonPattern.h │ │ └── SugarHeart.h │ │ ├── Threading │ │ ├── ManagedThreadPrimitives.cpp │ │ ├── ManagedThreadPrimitives.h │ │ ├── ThreadSleep.cpp │ │ ├── ThreadSleep.h │ │ ├── ThreadSleep_Android.cpp │ │ ├── ThreadSleep_WinPC.cpp │ │ └── ThreadSleep_iOS.cpp │ │ ├── Utility.vcxproj │ │ ├── Utility.vcxproj.filters │ │ └── Utility.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Modules │ ├── Application │ │ ├── AppPlatformType.h │ │ ├── Application.vcxproj │ │ ├── Application.vcxproj.filters │ │ ├── Application.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── ApplicationComponent.cpp │ │ ├── ApplicationComponent.h │ │ ├── CMakeLists.txt │ │ ├── DeviceCommonTypes.h │ │ ├── IAppInformationProvider.h │ │ ├── IAppTextInputController.h │ │ ├── IAppWebViewController.h │ │ ├── IDeviceInformationProvider.h │ │ ├── IPlatformAppControl.h │ │ ├── RawTouchEventDispatcher.cpp │ │ ├── RawTouchEventDispatcher.h │ │ ├── RawTouchEventObserver.h │ │ ├── SystemEventDispatcher.cpp │ │ ├── SystemEventDispatcher.h │ │ └── SystemEventObserver.h │ ├── Crypto │ │ ├── CMakeLists.txt │ │ ├── Crypto.vcxproj │ │ ├── Crypto.vcxproj.filters │ │ ├── Crypto.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── CryptoModuleInterface.cpp │ │ ├── CryptoModuleInterface.h │ │ ├── Encrypt │ │ │ ├── AESUtil.h │ │ │ ├── AESUtil_OpenSSL.cpp │ │ │ ├── AESUtil_iOS.mm │ │ │ ├── RSAUtil.h │ │ │ ├── RSAUtil_OpenSSL.cpp │ │ │ └── RSAUtil_iOS.mm │ │ ├── Hash │ │ │ ├── CRC32Util.h │ │ │ ├── CRC32Util_zlib.cpp │ │ │ ├── HashContext.h │ │ │ ├── HashUtility.h │ │ │ ├── MD5Util.h │ │ │ ├── MD5Util_OpenSSL.cpp │ │ │ ├── MD5Util_iOS.mm │ │ │ ├── SHAUtil.h │ │ │ ├── SHAUtil_OpenSSL.cpp │ │ │ └── SHAUtil_iOS.mm │ │ ├── OpenSSLCrypto │ │ │ ├── OpenSSLUtility.cpp │ │ │ └── OpenSSLUtility.h │ │ ├── ProtectedKey │ │ │ ├── IProtectedKey.h │ │ │ ├── NotSecureKey.cpp │ │ │ └── NotSecureKey.h │ │ └── Sign │ │ │ ├── HMAC_SHA_Util.h │ │ │ ├── HMAC_SHA_Util_OpenSSL.cpp │ │ │ └── HMAC_SHA_Util_iOS.mm │ ├── FileSystem │ │ ├── BundleFileResourceComponent.cpp │ │ ├── BundleFileResourceComponent.h │ │ ├── BundleFileResourceComponent_NPO.h │ │ ├── CMakeLists.txt │ │ ├── FileSystem.vcxproj │ │ ├── FileSystem.vcxproj.filters │ │ ├── FileSystem.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── FileSystemPathComponent.cpp │ │ ├── FileSystemPathComponent.h │ │ ├── FileSystemPathComponent_NPO.h │ │ ├── FileSystemUtility.cpp │ │ ├── FileSystemUtility.h │ │ ├── FileSystemUtility_Android.cpp │ │ ├── FileSystemUtility_WinPC.cpp │ │ ├── FileSystemUtility_iOS.mm │ │ ├── Java │ │ │ └── com │ │ │ │ └── leggiero │ │ │ │ └── Engine │ │ │ │ └── Modules │ │ │ │ └── FileSystem │ │ │ │ └── FileSystemHelper.java │ │ └── _Internal │ │ │ ├── _AndroidBundleFileResourceComponent.cpp │ │ │ ├── _AndroidBundleFileResourceComponent.h │ │ │ ├── _AndroidFileSystemJNIInterface.cpp │ │ │ ├── _AndroidFileSystemPathComponent.cpp │ │ │ ├── _AndroidFileSystemPathComponent.h │ │ │ ├── _WinPCBundleFileResourceComponent.cpp │ │ │ ├── _WinPCBundleFileResourceComponent.h │ │ │ ├── _WinPCFileSystemPathComponent.cpp │ │ │ ├── _WinPCFileSystemPathComponent.h │ │ │ ├── _iOSBundleFileResourceComponent.h │ │ │ ├── _iOSBundleFileResourceComponent.mm │ │ │ ├── _iOSFileSystemPathComponent.h │ │ │ └── _iOSFileSystemPathComponent.mm │ ├── Font │ │ ├── CMakeLists.txt │ │ ├── Common │ │ │ ├── CachedGlyph.cpp │ │ │ ├── CachedGlyph.h │ │ │ ├── FontBackend.h │ │ │ ├── FontTypes.h │ │ │ ├── GlyphCache.cpp │ │ │ ├── GlyphCache.h │ │ │ ├── GlyphSearchCache.cpp │ │ │ ├── GlyphSearchCache.h │ │ │ ├── IFontFace.cpp │ │ │ ├── IFontFace.h │ │ │ ├── IFontSet.cpp │ │ │ ├── IFontSet.h │ │ │ ├── IGlyphDrawer.h │ │ │ ├── MultiPageFontSetting.cpp │ │ │ ├── MultiPageFontSetting.h │ │ │ ├── PriorityFontSet.cpp │ │ │ ├── PriorityFontSet.h │ │ │ ├── SingleFontSet.cpp │ │ │ ├── SingleFontSet.h │ │ │ ├── StyledFontSet.cpp │ │ │ ├── StyledFontSet.h │ │ │ ├── Typeset.cpp │ │ │ ├── Typeset.h │ │ │ └── Typesetting.h │ │ ├── Font.vcxproj │ │ ├── Font.vcxproj.filters │ │ ├── Font.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── FontModuleInterface.cpp │ │ ├── FontModuleInterface.h │ │ ├── FreeType │ │ │ ├── FreeTypeFontCommon.cpp │ │ │ ├── FreeTypeFontCommon.h │ │ │ ├── FreeTypeFontFace.cpp │ │ │ ├── FreeTypeFontFace.h │ │ │ ├── FreeTypeNormalGlyphDrawer.cpp │ │ │ └── FreeTypeNormalGlyphDrawer.h │ │ ├── GlyphManagerComponent.cpp │ │ ├── GlyphManagerComponent.h │ │ └── _Internal │ │ │ ├── _FontInternalUtility.cpp │ │ │ └── _FontInternalUtility.h │ ├── Graphics │ │ ├── CMakeLists.txt │ │ ├── Common │ │ │ ├── GLColor.cpp │ │ │ ├── GLColor.h │ │ │ ├── GLFrameBufferBindContext.cpp │ │ │ ├── GLFrameBufferBindContext.h │ │ │ ├── GraphicsReferenceState.cpp │ │ │ ├── GraphicsReferenceState.h │ │ │ ├── GraphicsTypes.h │ │ │ └── IGLGraphicResource.h │ │ ├── GraphicResourceManagerComponent.cpp │ │ ├── GraphicResourceManagerComponent.h │ │ ├── Graphics.vcxproj │ │ ├── Graphics.vcxproj.filters │ │ ├── Graphics.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── GraphicsModuleInterface.cpp │ │ ├── GraphicsModuleInterface.h │ │ ├── GraphicsThreadContext.h │ │ ├── Shader │ │ │ ├── Basic │ │ │ │ ├── ColorSimpleShader.cpp │ │ │ │ ├── ColorSimpleShader.h │ │ │ │ ├── ColorSimpleShader_Shader.cpp │ │ │ │ ├── TexturedColorSimpleShader.cpp │ │ │ │ ├── TexturedColorSimpleShader.h │ │ │ │ └── TexturedColorSimpleShader_Shader.cpp │ │ │ ├── CommonBaseShaderProgram.cpp │ │ │ ├── CommonBaseShaderProgram.h │ │ │ ├── CommonGLVertexType.h │ │ │ ├── GLShaderProgramResource.cpp │ │ │ ├── GLShaderProgramResource.h │ │ │ ├── GLShaderProgramResource_Creation.cpp │ │ │ ├── GLVertexAttribEnabledContext.cpp │ │ │ ├── GLVertexAttribEnabledContext.h │ │ │ ├── IGLProgramStateEventObserver.h │ │ │ ├── ProgramManager.cpp │ │ │ ├── ProgramManager.h │ │ │ └── TexturedShaderProgram.h │ │ ├── Texture │ │ │ ├── DynamicTextureResource.cpp │ │ │ ├── DynamicTextureResource.h │ │ │ ├── DynamicTextureResource_Creation.cpp │ │ │ ├── DynamicTextureRestore.h │ │ │ ├── GLTextureResource.cpp │ │ │ ├── GLTextureResource.h │ │ │ ├── GLTextureResource_Creation.cpp │ │ │ ├── ImageFormatType.cpp │ │ │ ├── ImageFormatType.h │ │ │ ├── RenderTargetTextureResource.cpp │ │ │ ├── RenderTargetTextureResource.h │ │ │ ├── RenderTargetTextureResource_Creation.cpp │ │ │ ├── RuntimeTextureAtlas.cpp │ │ │ ├── RuntimeTextureAtlas.h │ │ │ ├── RuntimeTextureAtlasEntry.cpp │ │ │ ├── RuntimeTextureAtlasEntry.h │ │ │ ├── RuntimeTextureAtlasManager.cpp │ │ │ ├── RuntimeTextureAtlasManager.h │ │ │ ├── TextureAtlasTable.cpp │ │ │ ├── TextureAtlasTable.h │ │ │ ├── TextureCommitter.cpp │ │ │ ├── TextureCommitter.h │ │ │ ├── TextureHelper.cpp │ │ │ ├── TextureHelper.h │ │ │ ├── TextureHelper_JPEG.cpp │ │ │ ├── TextureHelper_Loader.cpp │ │ │ ├── TextureHelper_PNG.cpp │ │ │ ├── TextureManager.cpp │ │ │ ├── TextureManager.h │ │ │ ├── TextureSection.cpp │ │ │ └── TextureSection.h │ │ └── _Internal │ │ │ ├── _DummyInterfaces.h │ │ │ ├── _GraphicsModuleInternalState.cpp │ │ │ ├── _GraphicsModuleInternalState.h │ │ │ ├── _InternalInitializer.h │ │ │ └── _InternalUpdater.h │ ├── HTTP │ │ ├── Async │ │ │ ├── AsyncHttpDownloadTask.h │ │ │ ├── AsyncHttpDownloadTask_iOS.mm │ │ │ ├── AsyncHttpRequestTask.h │ │ │ ├── AsyncHttpRequestTask_iOS.mm │ │ │ ├── AsyncHttpTasks.cpp │ │ │ ├── AsyncHttp_iOS.h │ │ │ ├── AsyncUtility.cpp │ │ │ └── AsyncUtility.h │ │ ├── AsyncTaskHttpComponent.cpp │ │ ├── AsyncTaskHttpComponent.h │ │ ├── AsyncTaskHttpComponent_iOS.mm │ │ ├── CMakeLists.txt │ │ ├── HTTP.vcxproj │ │ ├── HTTP.vcxproj.filters │ │ ├── HTTP.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── HttpCommonType.cpp │ │ ├── HttpCommonType.h │ │ ├── HttpModuleInterface.cpp │ │ ├── HttpModuleInterface.h │ │ ├── HttpRequest.h │ │ ├── HttpRequest_iOS.mm │ │ ├── HttpResult.cpp │ │ ├── HttpResult.h │ │ ├── HttpUtility.cpp │ │ ├── HttpUtility.h │ │ └── cURL │ │ │ ├── cURLAsyncHttpDownloadTask.cpp │ │ │ ├── cURLAsyncHttpDownloadTask.h │ │ │ ├── cURLAsyncHttpRequestTask.cpp │ │ │ ├── cURLAsyncHttpRequestTask.h │ │ │ ├── cURLAsyncTaskHttpComponent.cpp │ │ │ ├── cURLHttpRequest.cpp │ │ │ ├── cURLUtility.cpp │ │ │ └── cURLUtility.h │ ├── Input │ │ ├── CMakeLists.txt │ │ ├── IImmediateTouchInputEventObserver.h │ │ ├── Input.vcxproj │ │ ├── Input.vcxproj.filters │ │ ├── Input.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── InputCommonTypes.h │ │ ├── Touch │ │ │ ├── EventBasedTouchContext.cpp │ │ │ ├── EventBasedTouchContext.h │ │ │ ├── LastTouchState.h │ │ │ └── TouchEvent.h │ │ ├── TouchInputComponent.cpp │ │ └── TouchInputComponent.h │ ├── LUI │ │ ├── CMakeLists.txt │ │ ├── Common │ │ │ ├── IUIArea.cpp │ │ │ ├── IUIArea.h │ │ │ ├── UICommonArea.cpp │ │ │ ├── UICommonArea.h │ │ │ ├── UICommonResources.cpp │ │ │ ├── UICommonResources.h │ │ │ ├── UICommonTypes.h │ │ │ ├── UISizeSettable.h │ │ │ ├── UITransform.cpp │ │ │ └── UITransform.h │ │ ├── Component │ │ │ ├── IUIComponent.h │ │ │ ├── UIClippingComponent.cpp │ │ │ ├── UIClippingComponent.h │ │ │ ├── UIComponentType.h │ │ │ ├── UILayoutComponent.cpp │ │ │ ├── UILayoutComponent.h │ │ │ ├── UISizeSubComponent.cpp │ │ │ ├── UISizeSubComponent.h │ │ │ ├── UITransformComponent.cpp │ │ │ └── UITransformComponent.h │ │ ├── Controller │ │ │ ├── CommonButtonRenderingController.cpp │ │ │ ├── CommonButtonRenderingController.h │ │ │ ├── CommonControllerDefines.cpp │ │ │ ├── CommonControllerDefines.h │ │ │ ├── OnOffButtonController.cpp │ │ │ ├── OnOffButtonController.h │ │ │ ├── SimpleSliderRenderingController.cpp │ │ │ ├── SimpleSliderRenderingController.h │ │ │ ├── TextInputBoxRenderingController.cpp │ │ │ └── TextInputBoxRenderingController.h │ │ ├── Description │ │ │ ├── UIDescription.cpp │ │ │ ├── UIDescription.h │ │ │ ├── UIDescriptionColor.cpp │ │ │ ├── UIDescriptionColor.h │ │ │ ├── UIDescriptionCommonExpression.cpp │ │ │ ├── UIDescriptionCommonExpression.h │ │ │ ├── UIDescriptionExpression.cpp │ │ │ ├── UIDescriptionExpression.h │ │ │ ├── UIDescriptionExpression_CastEvaluation.inl │ │ │ ├── UIDescriptionExpression_CastValue.inl │ │ │ ├── UIDescriptionExpression_Nodes.h │ │ │ ├── UIDescriptionExpression_NodesEvaluation.inl │ │ │ ├── UIDescriptionExpression_Reader.inl │ │ │ ├── UIDescriptionFont.cpp │ │ │ ├── UIDescriptionFont.h │ │ │ ├── UIDescriptionManager.cpp │ │ │ ├── UIDescriptionManager.h │ │ │ ├── UIDescriptionParserUtility.cpp │ │ │ ├── UIDescriptionParserUtility.h │ │ │ ├── UIDescriptionProcessingContext.cpp │ │ │ ├── UIDescriptionProcessingContext.h │ │ │ ├── UIDescriptionReader.cpp │ │ │ ├── UIDescriptionReader.h │ │ │ ├── UIDescriptionSourcedString.cpp │ │ │ ├── UIDescriptionSourcedString.h │ │ │ ├── UIDescriptionSystemUnit.cpp │ │ │ ├── UIDescriptionSystemUnit.h │ │ │ ├── UIDescriptionTexture.cpp │ │ │ ├── UIDescriptionTexture.h │ │ │ ├── UIDescriptionTypes.cpp │ │ │ ├── UIDescriptionTypes.h │ │ │ ├── UIDescriptionUnit.cpp │ │ │ ├── UIDescriptionUnit.h │ │ │ ├── UIDescriptionVariable_ValueGetter.inl │ │ │ ├── UIPrefabDescription.cpp │ │ │ ├── UIPrefabDescription.h │ │ │ ├── UIPrefabDescription_Reader.cpp │ │ │ └── UIPrefabDescription_Reader.h │ │ ├── Element │ │ │ ├── UIElementBlurredBarrier.cpp │ │ │ ├── UIElementBlurredBarrier.h │ │ │ ├── UIElementCachedVariantText.cpp │ │ │ ├── UIElementCachedVariantText.h │ │ │ ├── UIElementCancelPanelArea.cpp │ │ │ ├── UIElementCancelPanelArea.h │ │ │ ├── UIElementFixedText.cpp │ │ │ ├── UIElementFixedText.h │ │ │ ├── UIElementSimpleHorizontalScrollPanel.cpp │ │ │ ├── UIElementSimpleHorizontalScrollPanel.h │ │ │ ├── UIElementSimpleSlideBar.cpp │ │ │ ├── UIElementSimpleSlideBar.h │ │ │ ├── UIElementSimpleVerticalScrollPanel.cpp │ │ │ ├── UIElementSimpleVerticalScrollPanel.h │ │ │ ├── UIElementSingleSimpleButton.cpp │ │ │ ├── UIElementSingleSimpleButton.h │ │ │ ├── UIElementSlideBar.cpp │ │ │ ├── UIElementSlideBar.h │ │ │ ├── UIElementTestButton.cpp │ │ │ ├── UIElementTestButton.h │ │ │ ├── UIElementTextInputBox.cpp │ │ │ ├── UIElementTextInputBox.h │ │ │ ├── UIElementVariantText.cpp │ │ │ └── UIElementVariantText.h │ │ ├── LegacyUI.vcxproj │ │ ├── LegacyUI.vcxproj.filters │ │ ├── LegacyUI.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── Loader │ │ │ ├── DummyUIAssetLoader.cpp │ │ │ ├── DummyUIAssetLoader.h │ │ │ ├── IUIAssetLoader.h │ │ │ ├── UIBundleAssetLoader.cpp │ │ │ ├── UIBundleAssetLoader.h │ │ │ ├── UIChainAssetLoader.cpp │ │ │ ├── UIChainAssetLoader.h │ │ │ ├── UIFileAssetLoader.cpp │ │ │ ├── UIFileAssetLoader.h │ │ │ ├── UITableAssetLoader.cpp │ │ │ └── UITableAssetLoader.h │ │ ├── Prefab │ │ │ ├── UIComponentPrefab.cpp │ │ │ ├── UIComponentPrefab.h │ │ │ ├── UIFabricatedComponent.cpp │ │ │ ├── UIFabricatedComponent.h │ │ │ ├── UILayoutComponentPrefab.cpp │ │ │ ├── UILayoutComponentPrefab.h │ │ │ ├── UIObjectButtonPrefab.cpp │ │ │ ├── UIObjectButtonPrefab.h │ │ │ ├── UIObjectPrefab.cpp │ │ │ ├── UIObjectPrefab.h │ │ │ ├── UIObjectScrollPanelPrefab.cpp │ │ │ ├── UIObjectScrollPanelPrefab.h │ │ │ ├── UIObjectSliderPrefab.cpp │ │ │ ├── UIObjectSliderPrefab.h │ │ │ ├── UIPatchedTextureRenderingComponentPrefab.cpp │ │ │ ├── UIPatchedTextureRenderingComponentPrefab.h │ │ │ ├── UIPrefabCommonObjects.cpp │ │ │ ├── UIPrefabCommonObjects.h │ │ │ ├── UIPrefabPlaceProcessor.h │ │ │ ├── UIShapeRenderingComponentPrefab.cpp │ │ │ ├── UIShapeRenderingComponentPrefab.h │ │ │ ├── UITextInputBoxPrefab.cpp │ │ │ ├── UITextInputBoxPrefab.h │ │ │ ├── UITextObjectPrefab.cpp │ │ │ ├── UITextObjectPrefab.h │ │ │ ├── UITextureRenderingComponentPrefab.cpp │ │ │ ├── UITextureRenderingComponentPrefab.h │ │ │ ├── UITransformComponentPrefab.cpp │ │ │ └── UITransformComponentPrefab.h │ │ ├── Rendering │ │ │ ├── CachedTextRenderingComponent.cpp │ │ │ ├── CachedTextRenderingComponent.h │ │ │ ├── IUIRenderingShape.h │ │ │ ├── PatchedTextureRenderingComponent.cpp │ │ │ ├── PatchedTextureRenderingComponent.h │ │ │ ├── ShapeSetRenderingComponent.cpp │ │ │ ├── ShapeSetRenderingComponent.h │ │ │ ├── TextRenderingComponent.cpp │ │ │ ├── TextRenderingComponent.h │ │ │ ├── TextureRenderingComponent.cpp │ │ │ ├── TextureRenderingComponent.h │ │ │ ├── UIClipping.cpp │ │ │ ├── UIClipping.h │ │ │ ├── UIFontFaceManager.cpp │ │ │ ├── UIFontFaceManager.h │ │ │ ├── UIRenderer.cpp │ │ │ ├── UIRenderer.h │ │ │ ├── UIRenderingComponent.h │ │ │ ├── UIRenderingUtility.h │ │ │ ├── UIShaders.cpp │ │ │ ├── UIShaders.h │ │ │ ├── UIShaders_Shader.cpp │ │ │ ├── UIShapeRect.cpp │ │ │ ├── UIShapeRect.h │ │ │ ├── UITexture.h │ │ │ ├── UITextureManager.cpp │ │ │ └── UITextureManager.h │ │ ├── Scene │ │ │ ├── UISceneBase.cpp │ │ │ └── UISceneBase.h │ │ ├── Touch │ │ │ ├── UITouch.cpp │ │ │ ├── UITouch.h │ │ │ ├── UITouchComponent.cpp │ │ │ ├── UITouchComponent.h │ │ │ ├── UITouchNegotiator.cpp │ │ │ ├── UITouchNegotiator.h │ │ │ ├── ValuedTouchComponent.cpp │ │ │ └── ValuedTouchComponent.h │ │ ├── UIManager.cpp │ │ ├── UIManager.h │ │ ├── UIObject.cpp │ │ └── UIObject.h │ ├── Log │ │ ├── CMakeLists.txt │ │ ├── DebugLogger.cpp │ │ ├── DebugLogger.h │ │ ├── FileLogWriter.cpp │ │ ├── FileLogWriter.h │ │ ├── ILogWriter.h │ │ ├── Log.vcxproj │ │ ├── Log.vcxproj.filters │ │ ├── Log.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── LogModuleInterface.cpp │ │ ├── LogModuleInterface.h │ │ ├── LogTypes.h │ │ ├── Logger.cpp │ │ ├── Logger.h │ │ ├── PlatformDefaultLogWriter.h │ │ ├── PlatformDefaultLogWriter_Android.cpp │ │ ├── PlatformDefaultLogWriter_WinPC.cpp │ │ ├── PlatformDefaultLogWriter_iOS.mm │ │ ├── ThreadedLogWriter.cpp │ │ ├── ThreadedLogWriter.h │ │ └── _Internal │ │ │ └── _DebugLoggerInterface.h │ ├── Sound │ │ ├── BGMPlayerComponent.cpp │ │ ├── BGMPlayerComponent.h │ │ ├── CMakeLists.txt │ │ ├── Common │ │ │ ├── IBGMPlayingHandle.h │ │ │ ├── ISoundPlayingHandle.h │ │ │ ├── SoundPlayingContext.h │ │ │ ├── SoundTypes.cpp │ │ │ └── SoundTypes.h │ │ ├── Java │ │ │ └── com │ │ │ │ └── leggiero │ │ │ │ └── Engine │ │ │ │ └── Modules │ │ │ │ └── Sound │ │ │ │ ├── BGMHelper.java │ │ │ │ ├── BGMPlayingContext.java │ │ │ │ └── SoundHelper.java │ │ ├── OboeBackend │ │ │ ├── IOboeStreamRendering.h │ │ │ ├── OboeBufferedSoundPlayingContext.cpp │ │ │ ├── OboeBufferedSoundPlayingContext.h │ │ │ ├── OboeCommon.cpp │ │ │ ├── OboeCommon.h │ │ │ ├── OboeLoopingSoundPlayingContext.cpp │ │ │ ├── OboeLoopingSoundPlayingContext.h │ │ │ ├── OboePlatformCompat.cpp │ │ │ ├── OboeSoundMixer.cpp │ │ │ ├── OboeSoundMixer.h │ │ │ ├── OboeSoundPlayingContext.cpp │ │ │ ├── OboeSoundPlayingContext.h │ │ │ ├── OboeStream.cpp │ │ │ ├── OboeStream.h │ │ │ ├── _OboeInternal.cpp │ │ │ └── _OboeInternal.h │ │ ├── OpenALBackend │ │ │ ├── OpenALBufferedSoundPlayingContext.cpp │ │ │ ├── OpenALBufferedSoundPlayingContext.h │ │ │ ├── OpenALCommon.cpp │ │ │ ├── OpenALCommon.h │ │ │ ├── OpenALLoopingSoundPlayingContext.cpp │ │ │ ├── OpenALLoopingSoundPlayingContext.h │ │ │ ├── OpenALSoundMixer.cpp │ │ │ ├── OpenALSoundMixer.h │ │ │ ├── OpenALSoundPlayingContext.cpp │ │ │ ├── OpenALSoundPlayingContext.h │ │ │ └── _Internal │ │ │ │ ├── _OpenALSourceReleasingContext.cpp │ │ │ │ └── _OpenALSourceReleasingContext.h │ │ ├── Platform │ │ │ ├── AndroidBGMJNIInterface.cpp │ │ │ ├── AndroidBGMPlayer.cpp │ │ │ ├── AndroidBGMPlayer.h │ │ │ ├── AndroidPlatformSound.cpp │ │ │ ├── AndroidSoundJNIInterface.cpp │ │ │ ├── WinPCBGMPlayer.cpp │ │ │ ├── WinPCBGMPlayer.h │ │ │ ├── WinPCPlatformSound.cpp │ │ │ ├── _AndroidBGMPlayingContext.cpp │ │ │ ├── _AndroidBGMPlayingContext.h │ │ │ ├── iOSBGMPlayer.h │ │ │ ├── iOSBGMPlayer.mm │ │ │ └── iOSPlatformSound.mm │ │ ├── Provider │ │ │ ├── BakedSoundProvider.cpp │ │ │ ├── BakedSoundProvider.h │ │ │ ├── ISoundProvider.h │ │ │ ├── LoopHoldSoundProvider.cpp │ │ │ ├── LoopHoldSoundProvider.h │ │ │ ├── MP3SoundProvider.cpp │ │ │ ├── MP3SoundProvider.h │ │ │ ├── OggSoundProvider.cpp │ │ │ ├── OggSoundProvider.h │ │ │ ├── TestSoundProviders.cpp │ │ │ ├── TestSoundProviders.h │ │ │ ├── WavSoundProvider.cpp │ │ │ └── WavSoundProvider.h │ │ ├── Sound.vcxproj │ │ ├── Sound.vcxproj.filters │ │ ├── Sound.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── SoundMixerComponent.cpp │ │ └── SoundMixerComponent.h │ └── Task │ │ ├── CMakeLists.txt │ │ ├── ConcreteTaskManager.cpp │ │ ├── GraphicTask │ │ ├── GraphicTaskSystem.cpp │ │ ├── GraphicTaskSystem.h │ │ ├── GraphicThreadWorker.cpp │ │ ├── GraphicThreadWorker.h │ │ ├── GraphicThreadWorkerPool.cpp │ │ └── GraphicThreadWorkerPool.h │ │ ├── Platform │ │ ├── TaskPlatform_Android.cpp │ │ ├── TaskPlatform_WinPC.cpp │ │ └── TaskPlatform_iOS.mm │ │ ├── Processor │ │ ├── ITaskProcessor.h │ │ ├── IThreadWorkerContext.h │ │ ├── ThreadWorker.cpp │ │ ├── ThreadWorker.h │ │ ├── ThreadWorkerPool.cpp │ │ ├── ThreadWorkerPool.h │ │ ├── iOSTaskProcessor.h │ │ └── iOSTaskProcessor.mm │ │ ├── Task.vcxproj │ │ ├── Task.vcxproj.filters │ │ ├── Task.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── TaskManagerComponent.cpp │ │ ├── TaskManagerComponent.h │ │ ├── TaskSubSystemInterface.h │ │ ├── TaskTypes.h │ │ ├── Tasks │ │ ├── DependentTask.cpp │ │ ├── DependentTask.h │ │ ├── ITask.h │ │ ├── SingleActionTask.cpp │ │ ├── SingleActionTask.h │ │ └── ValueTasks.h │ │ └── _Internal │ │ ├── ITaskManagerSystemFunctions.h │ │ ├── _ConcreteTaskManager.h │ │ └── _TaskExecutionEntry.h └── Platform │ ├── Platform.Android │ ├── AndroidApplicationComponent.cpp │ ├── AndroidCommon.cpp │ ├── AndroidCommon.h │ ├── AndroidPlatform │ │ ├── AndroidJNISupport.cpp │ │ ├── AndroidJNISupport.h │ │ ├── ApplicationJNIInterface.cpp │ │ ├── OpenGL │ │ │ ├── OpenGLJNI.cpp │ │ │ └── PlatformGLThreadContext.cpp │ │ ├── TouchJNIInterface.cpp │ │ └── _JNIInternal.h │ ├── AndroidPlatformApplication.cpp │ ├── AndroidPlatformApplication.h │ ├── AndroidPlatformApplication_AppControl.cpp │ ├── AndroidPlatformApplication_Events.cpp │ ├── AndroidPlatformApplication_Touch.cpp │ ├── AndroidPlatformSetting.h │ ├── CMakeLists.txt │ ├── Java │ │ └── com │ │ │ └── leggiero │ │ │ └── Engine │ │ │ ├── ApplicationReferrerReceiver.java │ │ │ ├── LeggieroActivity.java │ │ │ ├── LeggieroApplication.java │ │ │ ├── LeggieroUtils.java │ │ │ ├── OpenGL │ │ │ ├── GLSurfaceView.java │ │ │ ├── LeggieroGLRenderer.java │ │ │ └── LeggieroGLSurfaceView.java │ │ │ └── Service │ │ │ ├── LeggieroInputDialog.java │ │ │ ├── LeggieroWebView.java │ │ │ └── URLActivity.java │ ├── Service │ │ ├── AndroidTextInputDialog.cpp │ │ ├── AndroidTextInputDialog.h │ │ ├── AndroidWebView.cpp │ │ └── AndroidWebView.h │ └── cmake │ │ └── AndroidCommon.cmake │ ├── Platform.WinPC │ ├── OpenGL │ │ ├── EGLView.cpp │ │ ├── EGLView.h │ │ ├── WinPCGLException.cpp │ │ ├── WinPCGLException.h │ │ ├── WinPCGLThreadContext.cpp │ │ └── WinPCGLThreadContext.h │ ├── Platform.WinPC.aps │ ├── Platform.WinPC.rc │ ├── Platform.WinPC.vcxproj │ ├── Platform.WinPC.vcxproj.filters │ ├── Service │ │ ├── WinTextInputDialog.cpp │ │ ├── WinTextInputDialog.h │ │ ├── WinWebView.cpp │ │ └── WinWebView.h │ ├── WinPCApplicationComponent.cpp │ ├── WinPCPlatformApplication.cpp │ ├── WinPCPlatformApplication.h │ ├── WinPCPlatformApplication_Touch.cpp │ ├── Window │ │ ├── Window.cpp │ │ ├── Window.h │ │ ├── WindowCreateParam.h │ │ ├── WindowEventObserver.h │ │ ├── WindowException.h │ │ ├── WindowMessage.cpp │ │ └── WindowMessage.h │ ├── WindowsCommon.h │ ├── WindowsUtility.cpp │ ├── WindowsUtility.h │ └── resource.h │ └── Platform.iOS │ ├── LeggieroAppDelegate.h │ ├── LeggieroAppDelegate.mm │ ├── LeggieroIOSCommon.h │ ├── LeggieroIOSCommon.mm │ ├── LeggieroViewController.h │ ├── LeggieroViewController.mm │ ├── Platform.iOS.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ ├── Service │ ├── iOSTextInputDialog.h │ ├── iOSTextInputDialog.mm │ ├── iOSWebView.h │ └── iOSWebView.mm │ ├── iOSApplicationComponent.mm │ ├── iOSGLThreadContext.mm │ ├── iOSPlatformApplication.h │ ├── iOSPlatformApplication.mm │ ├── iOSPlatformApplication_AppControl.mm │ ├── iOSPlatformApplication_Events.cpp │ ├── iOSPlatformApplication_Touch.cpp │ ├── iOSPlatformSetting.h │ ├── iOSPlatformUtility.h │ └── iOSPlatformUtility.mm ├── LICENSE ├── README.md └── Tools └── ProjectCreator ├── ProjectCreatorCore.deps.json ├── ProjectCreatorCore.dll ├── ProjectCreatorCore.pdb ├── ProjectCreatorGUI.deps.json ├── ProjectCreatorGUI.dll ├── ProjectCreatorGUI.exe ├── ProjectCreatorGUI.pdb ├── ProjectCreatorGUI.runtimeconfig.json ├── ProjectCreatorTool.deps.json ├── ProjectCreatorTool.dll ├── ProjectCreatorTool.exe ├── ProjectCreatorTool.pdb ├── ProjectCreatorTool.runtimeconfig.json ├── Template ├── Project │ ├── Bundle │ │ ├── Base │ │ │ └── bundle.txt │ │ └── Platform │ │ │ ├── Android │ │ │ └── Android.txt │ │ │ ├── WinPC │ │ │ └── WinPC.txt │ │ │ └── iOS │ │ │ └── iOS.txt │ ├── Proj.sln │ ├── Proj.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Proj.xcscheme │ └── Sources │ │ ├── App │ │ ├── Proj.Android │ │ │ ├── AndroidManifest.xml │ │ │ ├── CMakeLists.txt │ │ │ ├── ProjAndroid.cpp │ │ │ ├── ProjAndroidSetting.cpp │ │ │ ├── ProjAndroidSetting.h │ │ │ ├── build │ │ │ │ ├── .gitignore │ │ │ │ ├── .idea │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .name │ │ │ │ │ ├── compiler.xml │ │ │ │ │ ├── gradle.xml │ │ │ │ │ └── misc.xml │ │ │ │ ├── app │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── build.gradle │ │ │ │ │ └── proguard-rules.pro │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle.properties │ │ │ │ ├── gradle │ │ │ │ │ └── wrapper │ │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ │ ├── jni │ │ │ │ └── Android.cpp │ │ │ ├── res │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── layout │ │ │ │ │ ├── input_dialog.xml │ │ │ │ │ └── webview.xml │ │ │ │ ├── values-v11 │ │ │ │ │ └── styles.xml │ │ │ │ ├── values-v14 │ │ │ │ │ └── styles.xml │ │ │ │ ├── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ └── xml │ │ │ │ │ └── backup_rules.xml │ │ │ └── src │ │ │ │ └── com │ │ │ │ └── leggiero │ │ │ │ ├── Engine │ │ │ │ └── LeggieroProjectSetting.java │ │ │ │ └── Proj │ │ │ │ ├── ProjActivity.java │ │ │ │ └── ProjApplication.java │ │ ├── Proj.WinPC │ │ │ ├── Proj.WinPC.rc │ │ │ ├── Proj.WinPC.vcxproj │ │ │ ├── Proj.WinPC.vcxproj.filters │ │ │ ├── ProjWinPCSetting.cpp │ │ │ ├── ProjWinPCSetting.h │ │ │ ├── WinPCMain.cpp │ │ │ ├── WinPath.xml │ │ │ ├── WinPath_Binary.xml │ │ │ ├── icon.ico │ │ │ └── resource.h │ │ └── Proj.iOS │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.mm │ │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_1024.png │ │ │ │ ├── icon_120.png │ │ │ │ ├── icon_152.png │ │ │ │ ├── icon_167.png │ │ │ │ └── icon_180.png │ │ │ ├── ColorMap.textureset │ │ │ │ ├── Contents.json │ │ │ │ └── Universal.mipmapset │ │ │ │ │ ├── ColorMap.png │ │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ │ ├── GameViewController.h │ │ │ ├── GameViewController.mm │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ ├── Main.storyboard │ │ │ ├── ProjiOSSetting.h │ │ │ ├── ProjiOSSetting.mm │ │ │ └── main.mm │ │ └── Proj │ │ ├── CreateGame.cpp │ │ ├── GameModules.cpp │ │ ├── Proj.Game.xcodeproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── _EmptyScene │ │ ├── CMakeLists.txt │ │ ├── Game.cpp │ │ ├── Game.h │ │ ├── Proj.Game.xcodeproj │ │ │ └── project.pbxproj │ │ ├── Proj.vcxproj │ │ ├── Proj.vcxproj.filters │ │ └── Scene │ │ │ ├── DefaultScene │ │ │ ├── DefaultScene.cpp │ │ │ └── DefaultScene.h │ │ │ ├── Game_Scenes.cpp │ │ │ └── SceneIds.h │ │ ├── _None │ │ ├── CMakeLists.txt │ │ ├── Game.cpp │ │ ├── Game.h │ │ ├── Proj.Game.xcodeproj │ │ │ └── project.pbxproj │ │ ├── Proj.vcxproj │ │ └── Proj.vcxproj.filters │ │ └── _UIBaseScene │ │ ├── CMakeLists.txt │ │ ├── Game.cpp │ │ ├── Game.h │ │ ├── Proj.Game.xcodeproj │ │ └── project.pbxproj │ │ ├── Proj.vcxproj │ │ ├── Proj.vcxproj.filters │ │ └── Scene │ │ ├── DefaultUIScene │ │ ├── DefaultUIScene.cpp │ │ └── DefaultUIScene.h │ │ ├── Game_Scenes.cpp │ │ └── SceneIds.h └── Template.txt └── src ├── ProjectCreator.sln ├── ProjectCreatorCore ├── CreationContext.cs ├── CreationOptions.cs ├── CreationVariables.cs ├── EnvironmentSetting.cs ├── FilterProcessor.cs ├── ProjectCreator.cs ├── ProjectCreatorCore.csproj └── TemplateList.cs ├── ProjectCreatorGUI ├── Program.cs ├── ProjectCreatorGUI.csproj ├── frmMain.Designer.cs ├── frmMain.cs └── frmMain.resx └── ProjectCreatorTool ├── CmdArgsParser.cs ├── OptionParser.cs ├── Program.cs └── ProjectCreatorTool.csproj /.gitignore: -------------------------------------------------------------------------------- 1 | *.user 2 | Engine/Libraries/ 3 | LegToy/ 4 | xcuserdata 5 | -------------------------------------------------------------------------------- /Documents/en/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/.buildinfo -------------------------------------------------------------------------------- /Documents/en/_images/overall_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_images/overall_arch.png -------------------------------------------------------------------------------- /Documents/en/_sources/docs/00_introduction.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_sources/docs/00_introduction.rst.txt -------------------------------------------------------------------------------- /Documents/en/_sources/docs/10_dependency.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_sources/docs/10_dependency.rst.txt -------------------------------------------------------------------------------- /Documents/en/_sources/docs/11_getting_started.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_sources/docs/11_getting_started.rst.txt -------------------------------------------------------------------------------- /Documents/en/_sources/docs/18_changelog.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_sources/docs/18_changelog.rst.txt -------------------------------------------------------------------------------- /Documents/en/_sources/docs/19_known_issues.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_sources/docs/19_known_issues.rst.txt -------------------------------------------------------------------------------- /Documents/en/_sources/docs/30_platforms.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_sources/docs/30_platforms.rst.txt -------------------------------------------------------------------------------- /Documents/en/_sources/docs/31_platform_iOS.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_sources/docs/31_platform_iOS.rst.txt -------------------------------------------------------------------------------- /Documents/en/_sources/docs/32_platform_Android.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_sources/docs/32_platform_Android.rst.txt -------------------------------------------------------------------------------- /Documents/en/_sources/docs/33_platform_WinPC.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_sources/docs/33_platform_WinPC.rst.txt -------------------------------------------------------------------------------- /Documents/en/_sources/docs/40_modules.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_sources/docs/40_modules.rst.txt -------------------------------------------------------------------------------- /Documents/en/_sources/docs/80_tools.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_sources/docs/80_tools.rst.txt -------------------------------------------------------------------------------- /Documents/en/_sources/docs/91_license.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_sources/docs/91_license.rst.txt -------------------------------------------------------------------------------- /Documents/en/_sources/docs/92_library_usage.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_sources/docs/92_library_usage.rst.txt -------------------------------------------------------------------------------- /Documents/en/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_sources/index.rst.txt -------------------------------------------------------------------------------- /Documents/en/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/basic.css -------------------------------------------------------------------------------- /Documents/en/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/css/badge_only.css -------------------------------------------------------------------------------- /Documents/en/_static/css/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/css/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /Documents/en/_static/css/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/css/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /Documents/en/_static/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Documents/en/_static/css/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/css/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /Documents/en/_static/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Documents/en/_static/css/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/css/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /Documents/en/_static/css/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/css/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /Documents/en/_static/css/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/css/fonts/lato-bold.woff -------------------------------------------------------------------------------- /Documents/en/_static/css/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/css/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /Documents/en/_static/css/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/css/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /Documents/en/_static/css/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/css/fonts/lato-normal.woff -------------------------------------------------------------------------------- /Documents/en/_static/css/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/css/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /Documents/en/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/css/theme.css -------------------------------------------------------------------------------- /Documents/en/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/doctools.js -------------------------------------------------------------------------------- /Documents/en/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/documentation_options.js -------------------------------------------------------------------------------- /Documents/en/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/file.png -------------------------------------------------------------------------------- /Documents/en/_static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Documents/en/_static/fonts/Lato/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/Lato/lato-bold.eot -------------------------------------------------------------------------------- /Documents/en/_static/fonts/Lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/Lato/lato-bold.ttf -------------------------------------------------------------------------------- /Documents/en/_static/fonts/Lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/Lato/lato-bold.woff -------------------------------------------------------------------------------- /Documents/en/_static/fonts/Lato/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/Lato/lato-bold.woff2 -------------------------------------------------------------------------------- /Documents/en/_static/fonts/Lato/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/Lato/lato-bolditalic.eot -------------------------------------------------------------------------------- /Documents/en/_static/fonts/Lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/Lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /Documents/en/_static/fonts/Lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/Lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /Documents/en/_static/fonts/Lato/lato-bolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/Lato/lato-bolditalic.woff2 -------------------------------------------------------------------------------- /Documents/en/_static/fonts/Lato/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/Lato/lato-italic.eot -------------------------------------------------------------------------------- /Documents/en/_static/fonts/Lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/Lato/lato-italic.ttf -------------------------------------------------------------------------------- /Documents/en/_static/fonts/Lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/Lato/lato-italic.woff -------------------------------------------------------------------------------- /Documents/en/_static/fonts/Lato/lato-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/Lato/lato-italic.woff2 -------------------------------------------------------------------------------- /Documents/en/_static/fonts/Lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/Lato/lato-regular.eot -------------------------------------------------------------------------------- /Documents/en/_static/fonts/Lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/Lato/lato-regular.ttf -------------------------------------------------------------------------------- /Documents/en/_static/fonts/Lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/Lato/lato-regular.woff -------------------------------------------------------------------------------- /Documents/en/_static/fonts/Lato/lato-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/Lato/lato-regular.woff2 -------------------------------------------------------------------------------- /Documents/en/_static/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /Documents/en/_static/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /Documents/en/_static/fonts/Roboto-Slab-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/Roboto-Slab-Light.woff -------------------------------------------------------------------------------- /Documents/en/_static/fonts/Roboto-Slab-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/Roboto-Slab-Light.woff2 -------------------------------------------------------------------------------- /Documents/en/_static/fonts/Roboto-Slab-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/Roboto-Slab-Regular.woff -------------------------------------------------------------------------------- /Documents/en/_static/fonts/Roboto-Slab-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/Roboto-Slab-Regular.woff2 -------------------------------------------------------------------------------- /Documents/en/_static/fonts/Roboto-Slab-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/Roboto-Slab-Thin.woff -------------------------------------------------------------------------------- /Documents/en/_static/fonts/Roboto-Slab-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/Roboto-Slab-Thin.woff2 -------------------------------------------------------------------------------- /Documents/en/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Documents/en/_static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /Documents/en/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Documents/en/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Documents/en/_static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /Documents/en/_static/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /Documents/en/_static/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /Documents/en/_static/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/lato-bold.woff -------------------------------------------------------------------------------- /Documents/en/_static/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /Documents/en/_static/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /Documents/en/_static/fonts/lato-normal-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/lato-normal-italic.woff2 -------------------------------------------------------------------------------- /Documents/en/_static/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/lato-normal.woff -------------------------------------------------------------------------------- /Documents/en/_static/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /Documents/en/_static/jquery-3.5.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/jquery-3.5.1.js -------------------------------------------------------------------------------- /Documents/en/_static/jquery-3.6.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/jquery-3.6.0.js -------------------------------------------------------------------------------- /Documents/en/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/jquery.js -------------------------------------------------------------------------------- /Documents/en/_static/js/badge_only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/js/badge_only.js -------------------------------------------------------------------------------- /Documents/en/_static/js/html5shiv-printshiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/js/html5shiv-printshiv.min.js -------------------------------------------------------------------------------- /Documents/en/_static/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/js/html5shiv.min.js -------------------------------------------------------------------------------- /Documents/en/_static/js/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/js/modernizr.min.js -------------------------------------------------------------------------------- /Documents/en/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/js/theme.js -------------------------------------------------------------------------------- /Documents/en/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/language_data.js -------------------------------------------------------------------------------- /Documents/en/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/minus.png -------------------------------------------------------------------------------- /Documents/en/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/plus.png -------------------------------------------------------------------------------- /Documents/en/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/pygments.css -------------------------------------------------------------------------------- /Documents/en/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/searchtools.js -------------------------------------------------------------------------------- /Documents/en/_static/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/translations.js -------------------------------------------------------------------------------- /Documents/en/_static/underscore-1.12.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/underscore-1.12.0.js -------------------------------------------------------------------------------- /Documents/en/_static/underscore-1.13.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/underscore-1.13.1.js -------------------------------------------------------------------------------- /Documents/en/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/_static/underscore.js -------------------------------------------------------------------------------- /Documents/en/docs/00_introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/docs/00_introduction.html -------------------------------------------------------------------------------- /Documents/en/docs/10_dependency.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/docs/10_dependency.html -------------------------------------------------------------------------------- /Documents/en/docs/11_getting_started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/docs/11_getting_started.html -------------------------------------------------------------------------------- /Documents/en/docs/18_changelog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/docs/18_changelog.html -------------------------------------------------------------------------------- /Documents/en/docs/19_known_issues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/docs/19_known_issues.html -------------------------------------------------------------------------------- /Documents/en/docs/21_concepts_and_architecture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/docs/21_concepts_and_architecture.html -------------------------------------------------------------------------------- /Documents/en/docs/30_platforms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/docs/30_platforms.html -------------------------------------------------------------------------------- /Documents/en/docs/31_platform_iOS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/docs/31_platform_iOS.html -------------------------------------------------------------------------------- /Documents/en/docs/32_platform_Android.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/docs/32_platform_Android.html -------------------------------------------------------------------------------- /Documents/en/docs/33_platform_WinPC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/docs/33_platform_WinPC.html -------------------------------------------------------------------------------- /Documents/en/docs/40_modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/docs/40_modules.html -------------------------------------------------------------------------------- /Documents/en/docs/80_tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/docs/80_tools.html -------------------------------------------------------------------------------- /Documents/en/docs/91_license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/docs/91_license.html -------------------------------------------------------------------------------- /Documents/en/docs/92_library_usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/docs/92_library_usage.html -------------------------------------------------------------------------------- /Documents/en/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/genindex.html -------------------------------------------------------------------------------- /Documents/en/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/index.html -------------------------------------------------------------------------------- /Documents/en/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/objects.inv -------------------------------------------------------------------------------- /Documents/en/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/search.html -------------------------------------------------------------------------------- /Documents/en/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/en/searchindex.js -------------------------------------------------------------------------------- /Documents/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/index.html -------------------------------------------------------------------------------- /Documents/kr/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/.buildinfo -------------------------------------------------------------------------------- /Documents/kr/_images/overall_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_images/overall_arch.png -------------------------------------------------------------------------------- /Documents/kr/_images/ui_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_images/ui_layout.png -------------------------------------------------------------------------------- /Documents/kr/_sources/docs/00_introduction.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_sources/docs/00_introduction.rst.txt -------------------------------------------------------------------------------- /Documents/kr/_sources/docs/10_dependency.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_sources/docs/10_dependency.rst.txt -------------------------------------------------------------------------------- /Documents/kr/_sources/docs/11_getting_started.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_sources/docs/11_getting_started.rst.txt -------------------------------------------------------------------------------- /Documents/kr/_sources/docs/18_changelog.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_sources/docs/18_changelog.rst.txt -------------------------------------------------------------------------------- /Documents/kr/_sources/docs/19_known_issues.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_sources/docs/19_known_issues.rst.txt -------------------------------------------------------------------------------- /Documents/kr/_sources/docs/30_platforms.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_sources/docs/30_platforms.rst.txt -------------------------------------------------------------------------------- /Documents/kr/_sources/docs/31_platform_iOS.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_sources/docs/31_platform_iOS.rst.txt -------------------------------------------------------------------------------- /Documents/kr/_sources/docs/32_platform_Android.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_sources/docs/32_platform_Android.rst.txt -------------------------------------------------------------------------------- /Documents/kr/_sources/docs/33_platform_WinPC.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_sources/docs/33_platform_WinPC.rst.txt -------------------------------------------------------------------------------- /Documents/kr/_sources/docs/40_modules.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_sources/docs/40_modules.rst.txt -------------------------------------------------------------------------------- /Documents/kr/_sources/docs/41_mod_application.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_sources/docs/41_mod_application.rst.txt -------------------------------------------------------------------------------- /Documents/kr/_sources/docs/42_mod_filesystem.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_sources/docs/42_mod_filesystem.rst.txt -------------------------------------------------------------------------------- /Documents/kr/_sources/docs/43_mod_graphics.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_sources/docs/43_mod_graphics.rst.txt -------------------------------------------------------------------------------- /Documents/kr/_sources/docs/44_mod_input.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_sources/docs/44_mod_input.rst.txt -------------------------------------------------------------------------------- /Documents/kr/_sources/docs/45_mod_sound.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_sources/docs/45_mod_sound.rst.txt -------------------------------------------------------------------------------- /Documents/kr/_sources/docs/46_mod_log.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_sources/docs/46_mod_log.rst.txt -------------------------------------------------------------------------------- /Documents/kr/_sources/docs/47_mod_task.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_sources/docs/47_mod_task.rst.txt -------------------------------------------------------------------------------- /Documents/kr/_sources/docs/48_mod_font.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_sources/docs/48_mod_font.rst.txt -------------------------------------------------------------------------------- /Documents/kr/_sources/docs/49_mod_crypto.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_sources/docs/49_mod_crypto.rst.txt -------------------------------------------------------------------------------- /Documents/kr/_sources/docs/50_mod_http.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_sources/docs/50_mod_http.rst.txt -------------------------------------------------------------------------------- /Documents/kr/_sources/docs/51_mod_legacyui.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_sources/docs/51_mod_legacyui.rst.txt -------------------------------------------------------------------------------- /Documents/kr/_sources/docs/80_tools.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_sources/docs/80_tools.rst.txt -------------------------------------------------------------------------------- /Documents/kr/_sources/docs/91_license.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_sources/docs/91_license.rst.txt -------------------------------------------------------------------------------- /Documents/kr/_sources/docs/92_library_usage.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_sources/docs/92_library_usage.rst.txt -------------------------------------------------------------------------------- /Documents/kr/_sources/docs/93_acknowledgement.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_sources/docs/93_acknowledgement.rst.txt -------------------------------------------------------------------------------- /Documents/kr/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_sources/index.rst.txt -------------------------------------------------------------------------------- /Documents/kr/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/basic.css -------------------------------------------------------------------------------- /Documents/kr/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/css/badge_only.css -------------------------------------------------------------------------------- /Documents/kr/_static/css/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/css/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /Documents/kr/_static/css/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/css/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /Documents/kr/_static/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Documents/kr/_static/css/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/css/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /Documents/kr/_static/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Documents/kr/_static/css/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/css/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /Documents/kr/_static/css/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/css/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /Documents/kr/_static/css/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/css/fonts/lato-bold.woff -------------------------------------------------------------------------------- /Documents/kr/_static/css/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/css/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /Documents/kr/_static/css/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/css/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /Documents/kr/_static/css/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/css/fonts/lato-normal.woff -------------------------------------------------------------------------------- /Documents/kr/_static/css/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/css/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /Documents/kr/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/css/theme.css -------------------------------------------------------------------------------- /Documents/kr/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/doctools.js -------------------------------------------------------------------------------- /Documents/kr/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/documentation_options.js -------------------------------------------------------------------------------- /Documents/kr/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/file.png -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/Lato/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/Lato/lato-bold.eot -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/Lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/Lato/lato-bold.ttf -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/Lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/Lato/lato-bold.woff -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/Lato/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/Lato/lato-bold.woff2 -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/Lato/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/Lato/lato-bolditalic.eot -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/Lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/Lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/Lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/Lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/Lato/lato-bolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/Lato/lato-bolditalic.woff2 -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/Lato/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/Lato/lato-italic.eot -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/Lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/Lato/lato-italic.ttf -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/Lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/Lato/lato-italic.woff -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/Lato/lato-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/Lato/lato-italic.woff2 -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/Lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/Lato/lato-regular.eot -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/Lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/Lato/lato-regular.ttf -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/Lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/Lato/lato-regular.woff -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/Lato/lato-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/Lato/lato-regular.woff2 -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/Roboto-Slab-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/Roboto-Slab-Light.woff -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/Roboto-Slab-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/Roboto-Slab-Light.woff2 -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/Roboto-Slab-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/Roboto-Slab-Regular.woff -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/Roboto-Slab-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/Roboto-Slab-Regular.woff2 -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/Roboto-Slab-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/Roboto-Slab-Thin.woff -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/Roboto-Slab-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/Roboto-Slab-Thin.woff2 -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/lato-bold.woff -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/lato-normal-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/lato-normal-italic.woff2 -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/lato-normal.woff -------------------------------------------------------------------------------- /Documents/kr/_static/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /Documents/kr/_static/jquery-3.5.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/jquery-3.5.1.js -------------------------------------------------------------------------------- /Documents/kr/_static/jquery-3.6.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/jquery-3.6.0.js -------------------------------------------------------------------------------- /Documents/kr/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/jquery.js -------------------------------------------------------------------------------- /Documents/kr/_static/js/badge_only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/js/badge_only.js -------------------------------------------------------------------------------- /Documents/kr/_static/js/html5shiv-printshiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/js/html5shiv-printshiv.min.js -------------------------------------------------------------------------------- /Documents/kr/_static/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/js/html5shiv.min.js -------------------------------------------------------------------------------- /Documents/kr/_static/js/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/js/modernizr.min.js -------------------------------------------------------------------------------- /Documents/kr/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/js/theme.js -------------------------------------------------------------------------------- /Documents/kr/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/language_data.js -------------------------------------------------------------------------------- /Documents/kr/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/minus.png -------------------------------------------------------------------------------- /Documents/kr/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/plus.png -------------------------------------------------------------------------------- /Documents/kr/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/pygments.css -------------------------------------------------------------------------------- /Documents/kr/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/searchtools.js -------------------------------------------------------------------------------- /Documents/kr/_static/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/translations.js -------------------------------------------------------------------------------- /Documents/kr/_static/underscore-1.12.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/underscore-1.12.0.js -------------------------------------------------------------------------------- /Documents/kr/_static/underscore-1.13.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/underscore-1.13.1.js -------------------------------------------------------------------------------- /Documents/kr/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/_static/underscore.js -------------------------------------------------------------------------------- /Documents/kr/docs/00_introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/docs/00_introduction.html -------------------------------------------------------------------------------- /Documents/kr/docs/10_dependency.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/docs/10_dependency.html -------------------------------------------------------------------------------- /Documents/kr/docs/11_getting_started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/docs/11_getting_started.html -------------------------------------------------------------------------------- /Documents/kr/docs/18_changelog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/docs/18_changelog.html -------------------------------------------------------------------------------- /Documents/kr/docs/19_known_issues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/docs/19_known_issues.html -------------------------------------------------------------------------------- /Documents/kr/docs/21_concepts_and_architecture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/docs/21_concepts_and_architecture.html -------------------------------------------------------------------------------- /Documents/kr/docs/30_platforms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/docs/30_platforms.html -------------------------------------------------------------------------------- /Documents/kr/docs/31_platform_iOS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/docs/31_platform_iOS.html -------------------------------------------------------------------------------- /Documents/kr/docs/32_platform_Android.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/docs/32_platform_Android.html -------------------------------------------------------------------------------- /Documents/kr/docs/33_platform_WinPC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/docs/33_platform_WinPC.html -------------------------------------------------------------------------------- /Documents/kr/docs/40_modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/docs/40_modules.html -------------------------------------------------------------------------------- /Documents/kr/docs/41_mod_application.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/docs/41_mod_application.html -------------------------------------------------------------------------------- /Documents/kr/docs/42_mod_filesystem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/docs/42_mod_filesystem.html -------------------------------------------------------------------------------- /Documents/kr/docs/43_mod_graphics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/docs/43_mod_graphics.html -------------------------------------------------------------------------------- /Documents/kr/docs/44_mod_input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/docs/44_mod_input.html -------------------------------------------------------------------------------- /Documents/kr/docs/45_mod_sound.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/docs/45_mod_sound.html -------------------------------------------------------------------------------- /Documents/kr/docs/46_mod_log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/docs/46_mod_log.html -------------------------------------------------------------------------------- /Documents/kr/docs/47_mod_task.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/docs/47_mod_task.html -------------------------------------------------------------------------------- /Documents/kr/docs/48_mod_font.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/docs/48_mod_font.html -------------------------------------------------------------------------------- /Documents/kr/docs/49_mod_crypto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/docs/49_mod_crypto.html -------------------------------------------------------------------------------- /Documents/kr/docs/50_mod_http.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/docs/50_mod_http.html -------------------------------------------------------------------------------- /Documents/kr/docs/51_mod_legacyui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/docs/51_mod_legacyui.html -------------------------------------------------------------------------------- /Documents/kr/docs/80_tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/docs/80_tools.html -------------------------------------------------------------------------------- /Documents/kr/docs/91_license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/docs/91_license.html -------------------------------------------------------------------------------- /Documents/kr/docs/92_library_usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/docs/92_library_usage.html -------------------------------------------------------------------------------- /Documents/kr/docs/93_acknowledgement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/docs/93_acknowledgement.html -------------------------------------------------------------------------------- /Documents/kr/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/genindex.html -------------------------------------------------------------------------------- /Documents/kr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/index.html -------------------------------------------------------------------------------- /Documents/kr/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/objects.inv -------------------------------------------------------------------------------- /Documents/kr/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/search.html -------------------------------------------------------------------------------- /Documents/kr/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/kr/searchindex.js -------------------------------------------------------------------------------- /Documents/src/en/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/en/Makefile -------------------------------------------------------------------------------- /Documents/src/en/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/en/conf.py -------------------------------------------------------------------------------- /Documents/src/en/docs/00_introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/en/docs/00_introduction.rst -------------------------------------------------------------------------------- /Documents/src/en/docs/10_dependency.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/en/docs/10_dependency.rst -------------------------------------------------------------------------------- /Documents/src/en/docs/11_getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/en/docs/11_getting_started.rst -------------------------------------------------------------------------------- /Documents/src/en/docs/18_changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/en/docs/18_changelog.rst -------------------------------------------------------------------------------- /Documents/src/en/docs/19_known_issues.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/en/docs/19_known_issues.rst -------------------------------------------------------------------------------- /Documents/src/en/docs/21_concepts_and_architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/en/docs/21_concepts_and_architecture.rst -------------------------------------------------------------------------------- /Documents/src/en/docs/30_platforms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/en/docs/30_platforms.rst -------------------------------------------------------------------------------- /Documents/src/en/docs/31_platform_iOS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/en/docs/31_platform_iOS.rst -------------------------------------------------------------------------------- /Documents/src/en/docs/32_platform_Android.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/en/docs/32_platform_Android.rst -------------------------------------------------------------------------------- /Documents/src/en/docs/33_platform_WinPC.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/en/docs/33_platform_WinPC.rst -------------------------------------------------------------------------------- /Documents/src/en/docs/40_modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/en/docs/40_modules.rst -------------------------------------------------------------------------------- /Documents/src/en/docs/80_tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/en/docs/80_tools.rst -------------------------------------------------------------------------------- /Documents/src/en/docs/91_license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/en/docs/91_license.rst -------------------------------------------------------------------------------- /Documents/src/en/docs/92_library_usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/en/docs/92_library_usage.rst -------------------------------------------------------------------------------- /Documents/src/en/docs/images/overall_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/en/docs/images/overall_arch.png -------------------------------------------------------------------------------- /Documents/src/en/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/en/index.rst -------------------------------------------------------------------------------- /Documents/src/en/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/en/make.bat -------------------------------------------------------------------------------- /Documents/src/kr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/Makefile -------------------------------------------------------------------------------- /Documents/src/kr/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/conf.py -------------------------------------------------------------------------------- /Documents/src/kr/docs/00_introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/docs/00_introduction.rst -------------------------------------------------------------------------------- /Documents/src/kr/docs/10_dependency.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/docs/10_dependency.rst -------------------------------------------------------------------------------- /Documents/src/kr/docs/11_getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/docs/11_getting_started.rst -------------------------------------------------------------------------------- /Documents/src/kr/docs/18_changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/docs/18_changelog.rst -------------------------------------------------------------------------------- /Documents/src/kr/docs/19_known_issues.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/docs/19_known_issues.rst -------------------------------------------------------------------------------- /Documents/src/kr/docs/21_concepts_and_architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/docs/21_concepts_and_architecture.rst -------------------------------------------------------------------------------- /Documents/src/kr/docs/30_platforms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/docs/30_platforms.rst -------------------------------------------------------------------------------- /Documents/src/kr/docs/31_platform_iOS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/docs/31_platform_iOS.rst -------------------------------------------------------------------------------- /Documents/src/kr/docs/32_platform_Android.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/docs/32_platform_Android.rst -------------------------------------------------------------------------------- /Documents/src/kr/docs/33_platform_WinPC.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/docs/33_platform_WinPC.rst -------------------------------------------------------------------------------- /Documents/src/kr/docs/40_modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/docs/40_modules.rst -------------------------------------------------------------------------------- /Documents/src/kr/docs/41_mod_application.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/docs/41_mod_application.rst -------------------------------------------------------------------------------- /Documents/src/kr/docs/42_mod_filesystem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/docs/42_mod_filesystem.rst -------------------------------------------------------------------------------- /Documents/src/kr/docs/43_mod_graphics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/docs/43_mod_graphics.rst -------------------------------------------------------------------------------- /Documents/src/kr/docs/44_mod_input.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/docs/44_mod_input.rst -------------------------------------------------------------------------------- /Documents/src/kr/docs/45_mod_sound.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/docs/45_mod_sound.rst -------------------------------------------------------------------------------- /Documents/src/kr/docs/46_mod_log.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/docs/46_mod_log.rst -------------------------------------------------------------------------------- /Documents/src/kr/docs/47_mod_task.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/docs/47_mod_task.rst -------------------------------------------------------------------------------- /Documents/src/kr/docs/48_mod_font.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/docs/48_mod_font.rst -------------------------------------------------------------------------------- /Documents/src/kr/docs/49_mod_crypto.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/docs/49_mod_crypto.rst -------------------------------------------------------------------------------- /Documents/src/kr/docs/50_mod_http.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/docs/50_mod_http.rst -------------------------------------------------------------------------------- /Documents/src/kr/docs/51_mod_legacyui.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/docs/51_mod_legacyui.rst -------------------------------------------------------------------------------- /Documents/src/kr/docs/80_tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/docs/80_tools.rst -------------------------------------------------------------------------------- /Documents/src/kr/docs/91_license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/docs/91_license.rst -------------------------------------------------------------------------------- /Documents/src/kr/docs/92_library_usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/docs/92_library_usage.rst -------------------------------------------------------------------------------- /Documents/src/kr/docs/93_acknowledgement.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/docs/93_acknowledgement.rst -------------------------------------------------------------------------------- /Documents/src/kr/docs/images/overall_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/docs/images/overall_arch.png -------------------------------------------------------------------------------- /Documents/src/kr/docs/images/ui_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/docs/images/ui_layout.png -------------------------------------------------------------------------------- /Documents/src/kr/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/index.rst -------------------------------------------------------------------------------- /Documents/src/kr/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Documents/src/kr/make.bat -------------------------------------------------------------------------------- /Engine/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/CMakeLists.txt -------------------------------------------------------------------------------- /Engine/Common/Basic/Basic.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Basic/Basic.vcxproj -------------------------------------------------------------------------------- /Engine/Common/Basic/Basic.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Basic/Basic.vcxproj.filters -------------------------------------------------------------------------------- /Engine/Common/Basic/Basic.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Basic/Basic.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Engine/Common/Basic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Basic/CMakeLists.txt -------------------------------------------------------------------------------- /Engine/Common/Basic/LeggieroBasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Basic/LeggieroBasic.h -------------------------------------------------------------------------------- /Engine/Common/Basic/_Internal/_CommonTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Basic/_Internal/_CommonTypes.cpp -------------------------------------------------------------------------------- /Engine/Common/Basic/_Internal/_CommonTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Basic/_Internal/_CommonTypes.h -------------------------------------------------------------------------------- /Engine/Common/Basic/_Internal/_CompileSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Basic/_Internal/_CompileSettings.h -------------------------------------------------------------------------------- /Engine/Common/Basic/_Internal/_LeggieroFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Basic/_Internal/_LeggieroFlags.h -------------------------------------------------------------------------------- /Engine/Common/Basic/_Internal/_Warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Basic/_Internal/_Warnings.h -------------------------------------------------------------------------------- /Engine/Common/Engine/Application/BaseGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Engine/Application/BaseGame.cpp -------------------------------------------------------------------------------- /Engine/Common/Engine/Application/BaseGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Engine/Application/BaseGame.h -------------------------------------------------------------------------------- /Engine/Common/Engine/Application/CreateGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Engine/Application/CreateGame.h -------------------------------------------------------------------------------- /Engine/Common/Engine/Application/GameProcessAnchor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Engine/Application/GameProcessAnchor.cpp -------------------------------------------------------------------------------- /Engine/Common/Engine/Application/GameProcessAnchor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Engine/Application/GameProcessAnchor.h -------------------------------------------------------------------------------- /Engine/Common/Engine/Application/IGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Engine/Application/IGame.h -------------------------------------------------------------------------------- /Engine/Common/Engine/Application/IGameInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Engine/Application/IGameInitializer.h -------------------------------------------------------------------------------- /Engine/Common/Engine/Application/IGameLaunchOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Engine/Application/IGameLaunchOption.h -------------------------------------------------------------------------------- /Engine/Common/Engine/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Engine/CMakeLists.txt -------------------------------------------------------------------------------- /Engine/Common/Engine/Engine.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Engine/Engine.vcxproj -------------------------------------------------------------------------------- /Engine/Common/Engine/Engine.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Engine/Engine.vcxproj.filters -------------------------------------------------------------------------------- /Engine/Common/Engine/Engine.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Engine/Engine.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Engine/Common/Engine/Module/EngineComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Engine/Module/EngineComponent.cpp -------------------------------------------------------------------------------- /Engine/Common/Engine/Module/EngineComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Engine/Module/EngineComponent.h -------------------------------------------------------------------------------- /Engine/Common/Engine/Module/EngineComponentException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Engine/Module/EngineComponentException.h -------------------------------------------------------------------------------- /Engine/Common/Engine/Module/EngineComponentHolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Engine/Module/EngineComponentHolder.cpp -------------------------------------------------------------------------------- /Engine/Common/Engine/Module/EngineComponentHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Engine/Module/EngineComponentHolder.h -------------------------------------------------------------------------------- /Engine/Common/Engine/Module/EngineComponentId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Engine/Module/EngineComponentId.h -------------------------------------------------------------------------------- /Engine/Common/Engine/Module/EngineModuleException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Engine/Module/EngineModuleException.h -------------------------------------------------------------------------------- /Engine/Common/Engine/Module/EngineModuleId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Engine/Module/EngineModuleId.h -------------------------------------------------------------------------------- /Engine/Common/Engine/Module/EngineModuleInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Engine/Module/EngineModuleInterface.cpp -------------------------------------------------------------------------------- /Engine/Common/Engine/Module/EngineModuleInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Engine/Module/EngineModuleInterface.h -------------------------------------------------------------------------------- /Engine/Common/Engine/Toolbox/ModuledGame/ModuledGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Engine/Toolbox/ModuledGame/ModuledGame.h -------------------------------------------------------------------------------- /Engine/Common/Engine/Toolbox/Scene/GameSceneHolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Engine/Toolbox/Scene/GameSceneHolder.cpp -------------------------------------------------------------------------------- /Engine/Common/Engine/Toolbox/Scene/GameSceneHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Engine/Toolbox/Scene/GameSceneHolder.h -------------------------------------------------------------------------------- /Engine/Common/Engine/Toolbox/Scene/GameSceneTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Engine/Toolbox/Scene/GameSceneTypes.h -------------------------------------------------------------------------------- /Engine/Common/Engine/Toolbox/Scene/IGameScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Engine/Toolbox/Scene/IGameScene.h -------------------------------------------------------------------------------- /Engine/Common/Engine/Toolbox/Scene/IGameSceneContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Engine/Toolbox/Scene/IGameSceneContext.h -------------------------------------------------------------------------------- /Engine/Common/Utility/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/CMakeLists.txt -------------------------------------------------------------------------------- /Engine/Common/Utility/Data/BufferReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Data/BufferReader.cpp -------------------------------------------------------------------------------- /Engine/Common/Utility/Data/BufferReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Data/BufferReader.h -------------------------------------------------------------------------------- /Engine/Common/Utility/Data/MemoryBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Data/MemoryBuffer.cpp -------------------------------------------------------------------------------- /Engine/Common/Utility/Data/MemoryBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Data/MemoryBuffer.h -------------------------------------------------------------------------------- /Engine/Common/Utility/Encoding/Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Encoding/Base64.cpp -------------------------------------------------------------------------------- /Engine/Common/Utility/Encoding/Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Encoding/Base64.h -------------------------------------------------------------------------------- /Engine/Common/Utility/Encoding/HexString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Encoding/HexString.cpp -------------------------------------------------------------------------------- /Engine/Common/Utility/Encoding/HexString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Encoding/HexString.h -------------------------------------------------------------------------------- /Engine/Common/Utility/Encoding/URLEncoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Encoding/URLEncoding.cpp -------------------------------------------------------------------------------- /Engine/Common/Utility/Encoding/URLEncoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Encoding/URLEncoding.h -------------------------------------------------------------------------------- /Engine/Common/Utility/Math/BasicRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Math/BasicRect.h -------------------------------------------------------------------------------- /Engine/Common/Utility/Math/BitMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Math/BitMath.h -------------------------------------------------------------------------------- /Engine/Common/Utility/Math/Easing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Math/Easing.cpp -------------------------------------------------------------------------------- /Engine/Common/Utility/Math/Easing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Math/Easing.h -------------------------------------------------------------------------------- /Engine/Common/Utility/Math/SimpleGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Math/SimpleGeometry.h -------------------------------------------------------------------------------- /Engine/Common/Utility/Math/SimpleMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Math/SimpleMath.h -------------------------------------------------------------------------------- /Engine/Common/Utility/Math/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Math/Vector.h -------------------------------------------------------------------------------- /Engine/Common/Utility/Object/PointerHolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Object/PointerHolder.cpp -------------------------------------------------------------------------------- /Engine/Common/Utility/Object/PointerHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Object/PointerHolder.h -------------------------------------------------------------------------------- /Engine/Common/Utility/Object/VerySimpleObjectPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Object/VerySimpleObjectPool.h -------------------------------------------------------------------------------- /Engine/Common/Utility/String/AsciiStringUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/String/AsciiStringUtility.cpp -------------------------------------------------------------------------------- /Engine/Common/Utility/String/AsciiStringUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/String/AsciiStringUtility.h -------------------------------------------------------------------------------- /Engine/Common/Utility/String/IStringBag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/String/IStringBag.h -------------------------------------------------------------------------------- /Engine/Common/Utility/Sugar/EnumClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Sugar/EnumClass.h -------------------------------------------------------------------------------- /Engine/Common/Utility/Sugar/EventNotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Sugar/EventNotifier.h -------------------------------------------------------------------------------- /Engine/Common/Utility/Sugar/Finally.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Sugar/Finally.h -------------------------------------------------------------------------------- /Engine/Common/Utility/Sugar/NonCopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Sugar/NonCopyable.h -------------------------------------------------------------------------------- /Engine/Common/Utility/Sugar/SingletonPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Sugar/SingletonPattern.h -------------------------------------------------------------------------------- /Engine/Common/Utility/Sugar/SugarHeart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Sugar/SugarHeart.h -------------------------------------------------------------------------------- /Engine/Common/Utility/Threading/ThreadSleep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Threading/ThreadSleep.cpp -------------------------------------------------------------------------------- /Engine/Common/Utility/Threading/ThreadSleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Threading/ThreadSleep.h -------------------------------------------------------------------------------- /Engine/Common/Utility/Threading/ThreadSleep_WinPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Threading/ThreadSleep_WinPC.cpp -------------------------------------------------------------------------------- /Engine/Common/Utility/Threading/ThreadSleep_iOS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Threading/ThreadSleep_iOS.cpp -------------------------------------------------------------------------------- /Engine/Common/Utility/Utility.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Utility.vcxproj -------------------------------------------------------------------------------- /Engine/Common/Utility/Utility.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Common/Utility/Utility.vcxproj.filters -------------------------------------------------------------------------------- /Engine/Modules/Application/AppPlatformType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Application/AppPlatformType.h -------------------------------------------------------------------------------- /Engine/Modules/Application/Application.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Application/Application.vcxproj -------------------------------------------------------------------------------- /Engine/Modules/Application/Application.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Application/Application.vcxproj.filters -------------------------------------------------------------------------------- /Engine/Modules/Application/ApplicationComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Application/ApplicationComponent.cpp -------------------------------------------------------------------------------- /Engine/Modules/Application/ApplicationComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Application/ApplicationComponent.h -------------------------------------------------------------------------------- /Engine/Modules/Application/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Application/CMakeLists.txt -------------------------------------------------------------------------------- /Engine/Modules/Application/DeviceCommonTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Application/DeviceCommonTypes.h -------------------------------------------------------------------------------- /Engine/Modules/Application/IAppInformationProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Application/IAppInformationProvider.h -------------------------------------------------------------------------------- /Engine/Modules/Application/IAppTextInputController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Application/IAppTextInputController.h -------------------------------------------------------------------------------- /Engine/Modules/Application/IAppWebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Application/IAppWebViewController.h -------------------------------------------------------------------------------- /Engine/Modules/Application/IPlatformAppControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Application/IPlatformAppControl.h -------------------------------------------------------------------------------- /Engine/Modules/Application/RawTouchEventDispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Application/RawTouchEventDispatcher.cpp -------------------------------------------------------------------------------- /Engine/Modules/Application/RawTouchEventDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Application/RawTouchEventDispatcher.h -------------------------------------------------------------------------------- /Engine/Modules/Application/RawTouchEventObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Application/RawTouchEventObserver.h -------------------------------------------------------------------------------- /Engine/Modules/Application/SystemEventDispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Application/SystemEventDispatcher.cpp -------------------------------------------------------------------------------- /Engine/Modules/Application/SystemEventDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Application/SystemEventDispatcher.h -------------------------------------------------------------------------------- /Engine/Modules/Application/SystemEventObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Application/SystemEventObserver.h -------------------------------------------------------------------------------- /Engine/Modules/Crypto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/CMakeLists.txt -------------------------------------------------------------------------------- /Engine/Modules/Crypto/Crypto.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/Crypto.vcxproj -------------------------------------------------------------------------------- /Engine/Modules/Crypto/Crypto.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/Crypto.vcxproj.filters -------------------------------------------------------------------------------- /Engine/Modules/Crypto/Crypto.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/Crypto.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Engine/Modules/Crypto/CryptoModuleInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/CryptoModuleInterface.cpp -------------------------------------------------------------------------------- /Engine/Modules/Crypto/CryptoModuleInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/CryptoModuleInterface.h -------------------------------------------------------------------------------- /Engine/Modules/Crypto/Encrypt/AESUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/Encrypt/AESUtil.h -------------------------------------------------------------------------------- /Engine/Modules/Crypto/Encrypt/AESUtil_OpenSSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/Encrypt/AESUtil_OpenSSL.cpp -------------------------------------------------------------------------------- /Engine/Modules/Crypto/Encrypt/AESUtil_iOS.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/Encrypt/AESUtil_iOS.mm -------------------------------------------------------------------------------- /Engine/Modules/Crypto/Encrypt/RSAUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/Encrypt/RSAUtil.h -------------------------------------------------------------------------------- /Engine/Modules/Crypto/Encrypt/RSAUtil_OpenSSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/Encrypt/RSAUtil_OpenSSL.cpp -------------------------------------------------------------------------------- /Engine/Modules/Crypto/Encrypt/RSAUtil_iOS.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/Encrypt/RSAUtil_iOS.mm -------------------------------------------------------------------------------- /Engine/Modules/Crypto/Hash/CRC32Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/Hash/CRC32Util.h -------------------------------------------------------------------------------- /Engine/Modules/Crypto/Hash/CRC32Util_zlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/Hash/CRC32Util_zlib.cpp -------------------------------------------------------------------------------- /Engine/Modules/Crypto/Hash/HashContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/Hash/HashContext.h -------------------------------------------------------------------------------- /Engine/Modules/Crypto/Hash/HashUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/Hash/HashUtility.h -------------------------------------------------------------------------------- /Engine/Modules/Crypto/Hash/MD5Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/Hash/MD5Util.h -------------------------------------------------------------------------------- /Engine/Modules/Crypto/Hash/MD5Util_OpenSSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/Hash/MD5Util_OpenSSL.cpp -------------------------------------------------------------------------------- /Engine/Modules/Crypto/Hash/MD5Util_iOS.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/Hash/MD5Util_iOS.mm -------------------------------------------------------------------------------- /Engine/Modules/Crypto/Hash/SHAUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/Hash/SHAUtil.h -------------------------------------------------------------------------------- /Engine/Modules/Crypto/Hash/SHAUtil_OpenSSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/Hash/SHAUtil_OpenSSL.cpp -------------------------------------------------------------------------------- /Engine/Modules/Crypto/Hash/SHAUtil_iOS.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/Hash/SHAUtil_iOS.mm -------------------------------------------------------------------------------- /Engine/Modules/Crypto/OpenSSLCrypto/OpenSSLUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/OpenSSLCrypto/OpenSSLUtility.cpp -------------------------------------------------------------------------------- /Engine/Modules/Crypto/OpenSSLCrypto/OpenSSLUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/OpenSSLCrypto/OpenSSLUtility.h -------------------------------------------------------------------------------- /Engine/Modules/Crypto/ProtectedKey/IProtectedKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/ProtectedKey/IProtectedKey.h -------------------------------------------------------------------------------- /Engine/Modules/Crypto/ProtectedKey/NotSecureKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/ProtectedKey/NotSecureKey.cpp -------------------------------------------------------------------------------- /Engine/Modules/Crypto/ProtectedKey/NotSecureKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/ProtectedKey/NotSecureKey.h -------------------------------------------------------------------------------- /Engine/Modules/Crypto/Sign/HMAC_SHA_Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/Sign/HMAC_SHA_Util.h -------------------------------------------------------------------------------- /Engine/Modules/Crypto/Sign/HMAC_SHA_Util_OpenSSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/Sign/HMAC_SHA_Util_OpenSSL.cpp -------------------------------------------------------------------------------- /Engine/Modules/Crypto/Sign/HMAC_SHA_Util_iOS.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Crypto/Sign/HMAC_SHA_Util_iOS.mm -------------------------------------------------------------------------------- /Engine/Modules/FileSystem/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/FileSystem/CMakeLists.txt -------------------------------------------------------------------------------- /Engine/Modules/FileSystem/FileSystem.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/FileSystem/FileSystem.vcxproj -------------------------------------------------------------------------------- /Engine/Modules/FileSystem/FileSystem.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/FileSystem/FileSystem.vcxproj.filters -------------------------------------------------------------------------------- /Engine/Modules/FileSystem/FileSystemPathComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/FileSystem/FileSystemPathComponent.cpp -------------------------------------------------------------------------------- /Engine/Modules/FileSystem/FileSystemPathComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/FileSystem/FileSystemPathComponent.h -------------------------------------------------------------------------------- /Engine/Modules/FileSystem/FileSystemUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/FileSystem/FileSystemUtility.cpp -------------------------------------------------------------------------------- /Engine/Modules/FileSystem/FileSystemUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/FileSystem/FileSystemUtility.h -------------------------------------------------------------------------------- /Engine/Modules/FileSystem/FileSystemUtility_WinPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/FileSystem/FileSystemUtility_WinPC.cpp -------------------------------------------------------------------------------- /Engine/Modules/FileSystem/FileSystemUtility_iOS.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/FileSystem/FileSystemUtility_iOS.mm -------------------------------------------------------------------------------- /Engine/Modules/Font/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/CMakeLists.txt -------------------------------------------------------------------------------- /Engine/Modules/Font/Common/CachedGlyph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/Common/CachedGlyph.cpp -------------------------------------------------------------------------------- /Engine/Modules/Font/Common/CachedGlyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/Common/CachedGlyph.h -------------------------------------------------------------------------------- /Engine/Modules/Font/Common/FontBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/Common/FontBackend.h -------------------------------------------------------------------------------- /Engine/Modules/Font/Common/FontTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/Common/FontTypes.h -------------------------------------------------------------------------------- /Engine/Modules/Font/Common/GlyphCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/Common/GlyphCache.cpp -------------------------------------------------------------------------------- /Engine/Modules/Font/Common/GlyphCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/Common/GlyphCache.h -------------------------------------------------------------------------------- /Engine/Modules/Font/Common/GlyphSearchCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/Common/GlyphSearchCache.cpp -------------------------------------------------------------------------------- /Engine/Modules/Font/Common/GlyphSearchCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/Common/GlyphSearchCache.h -------------------------------------------------------------------------------- /Engine/Modules/Font/Common/IFontFace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/Common/IFontFace.cpp -------------------------------------------------------------------------------- /Engine/Modules/Font/Common/IFontFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/Common/IFontFace.h -------------------------------------------------------------------------------- /Engine/Modules/Font/Common/IFontSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/Common/IFontSet.cpp -------------------------------------------------------------------------------- /Engine/Modules/Font/Common/IFontSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/Common/IFontSet.h -------------------------------------------------------------------------------- /Engine/Modules/Font/Common/IGlyphDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/Common/IGlyphDrawer.h -------------------------------------------------------------------------------- /Engine/Modules/Font/Common/MultiPageFontSetting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/Common/MultiPageFontSetting.cpp -------------------------------------------------------------------------------- /Engine/Modules/Font/Common/MultiPageFontSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/Common/MultiPageFontSetting.h -------------------------------------------------------------------------------- /Engine/Modules/Font/Common/PriorityFontSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/Common/PriorityFontSet.cpp -------------------------------------------------------------------------------- /Engine/Modules/Font/Common/PriorityFontSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/Common/PriorityFontSet.h -------------------------------------------------------------------------------- /Engine/Modules/Font/Common/SingleFontSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/Common/SingleFontSet.cpp -------------------------------------------------------------------------------- /Engine/Modules/Font/Common/SingleFontSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/Common/SingleFontSet.h -------------------------------------------------------------------------------- /Engine/Modules/Font/Common/StyledFontSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/Common/StyledFontSet.cpp -------------------------------------------------------------------------------- /Engine/Modules/Font/Common/StyledFontSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/Common/StyledFontSet.h -------------------------------------------------------------------------------- /Engine/Modules/Font/Common/Typeset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/Common/Typeset.cpp -------------------------------------------------------------------------------- /Engine/Modules/Font/Common/Typeset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/Common/Typeset.h -------------------------------------------------------------------------------- /Engine/Modules/Font/Common/Typesetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/Common/Typesetting.h -------------------------------------------------------------------------------- /Engine/Modules/Font/Font.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/Font.vcxproj -------------------------------------------------------------------------------- /Engine/Modules/Font/Font.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/Font.vcxproj.filters -------------------------------------------------------------------------------- /Engine/Modules/Font/Font.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/Font.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Engine/Modules/Font/FontModuleInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/FontModuleInterface.cpp -------------------------------------------------------------------------------- /Engine/Modules/Font/FontModuleInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/FontModuleInterface.h -------------------------------------------------------------------------------- /Engine/Modules/Font/FreeType/FreeTypeFontCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/FreeType/FreeTypeFontCommon.cpp -------------------------------------------------------------------------------- /Engine/Modules/Font/FreeType/FreeTypeFontCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/FreeType/FreeTypeFontCommon.h -------------------------------------------------------------------------------- /Engine/Modules/Font/FreeType/FreeTypeFontFace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/FreeType/FreeTypeFontFace.cpp -------------------------------------------------------------------------------- /Engine/Modules/Font/FreeType/FreeTypeFontFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/FreeType/FreeTypeFontFace.h -------------------------------------------------------------------------------- /Engine/Modules/Font/GlyphManagerComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/GlyphManagerComponent.cpp -------------------------------------------------------------------------------- /Engine/Modules/Font/GlyphManagerComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/GlyphManagerComponent.h -------------------------------------------------------------------------------- /Engine/Modules/Font/_Internal/_FontInternalUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/_Internal/_FontInternalUtility.cpp -------------------------------------------------------------------------------- /Engine/Modules/Font/_Internal/_FontInternalUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Font/_Internal/_FontInternalUtility.h -------------------------------------------------------------------------------- /Engine/Modules/Graphics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/CMakeLists.txt -------------------------------------------------------------------------------- /Engine/Modules/Graphics/Common/GLColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/Common/GLColor.cpp -------------------------------------------------------------------------------- /Engine/Modules/Graphics/Common/GLColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/Common/GLColor.h -------------------------------------------------------------------------------- /Engine/Modules/Graphics/Common/GraphicsTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/Common/GraphicsTypes.h -------------------------------------------------------------------------------- /Engine/Modules/Graphics/Common/IGLGraphicResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/Common/IGLGraphicResource.h -------------------------------------------------------------------------------- /Engine/Modules/Graphics/Graphics.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/Graphics.vcxproj -------------------------------------------------------------------------------- /Engine/Modules/Graphics/Graphics.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/Graphics.vcxproj.filters -------------------------------------------------------------------------------- /Engine/Modules/Graphics/GraphicsModuleInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/GraphicsModuleInterface.cpp -------------------------------------------------------------------------------- /Engine/Modules/Graphics/GraphicsModuleInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/GraphicsModuleInterface.h -------------------------------------------------------------------------------- /Engine/Modules/Graphics/GraphicsThreadContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/GraphicsThreadContext.h -------------------------------------------------------------------------------- /Engine/Modules/Graphics/Shader/CommonGLVertexType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/Shader/CommonGLVertexType.h -------------------------------------------------------------------------------- /Engine/Modules/Graphics/Shader/ProgramManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/Shader/ProgramManager.cpp -------------------------------------------------------------------------------- /Engine/Modules/Graphics/Shader/ProgramManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/Shader/ProgramManager.h -------------------------------------------------------------------------------- /Engine/Modules/Graphics/Shader/TexturedShaderProgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/Shader/TexturedShaderProgram.h -------------------------------------------------------------------------------- /Engine/Modules/Graphics/Texture/GLTextureResource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/Texture/GLTextureResource.cpp -------------------------------------------------------------------------------- /Engine/Modules/Graphics/Texture/GLTextureResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/Texture/GLTextureResource.h -------------------------------------------------------------------------------- /Engine/Modules/Graphics/Texture/ImageFormatType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/Texture/ImageFormatType.cpp -------------------------------------------------------------------------------- /Engine/Modules/Graphics/Texture/ImageFormatType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/Texture/ImageFormatType.h -------------------------------------------------------------------------------- /Engine/Modules/Graphics/Texture/RuntimeTextureAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/Texture/RuntimeTextureAtlas.h -------------------------------------------------------------------------------- /Engine/Modules/Graphics/Texture/TextureAtlasTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/Texture/TextureAtlasTable.cpp -------------------------------------------------------------------------------- /Engine/Modules/Graphics/Texture/TextureAtlasTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/Texture/TextureAtlasTable.h -------------------------------------------------------------------------------- /Engine/Modules/Graphics/Texture/TextureCommitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/Texture/TextureCommitter.cpp -------------------------------------------------------------------------------- /Engine/Modules/Graphics/Texture/TextureCommitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/Texture/TextureCommitter.h -------------------------------------------------------------------------------- /Engine/Modules/Graphics/Texture/TextureHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/Texture/TextureHelper.cpp -------------------------------------------------------------------------------- /Engine/Modules/Graphics/Texture/TextureHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/Texture/TextureHelper.h -------------------------------------------------------------------------------- /Engine/Modules/Graphics/Texture/TextureHelper_JPEG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/Texture/TextureHelper_JPEG.cpp -------------------------------------------------------------------------------- /Engine/Modules/Graphics/Texture/TextureHelper_PNG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/Texture/TextureHelper_PNG.cpp -------------------------------------------------------------------------------- /Engine/Modules/Graphics/Texture/TextureManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/Texture/TextureManager.cpp -------------------------------------------------------------------------------- /Engine/Modules/Graphics/Texture/TextureManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/Texture/TextureManager.h -------------------------------------------------------------------------------- /Engine/Modules/Graphics/Texture/TextureSection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/Texture/TextureSection.cpp -------------------------------------------------------------------------------- /Engine/Modules/Graphics/Texture/TextureSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/Texture/TextureSection.h -------------------------------------------------------------------------------- /Engine/Modules/Graphics/_Internal/_DummyInterfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/_Internal/_DummyInterfaces.h -------------------------------------------------------------------------------- /Engine/Modules/Graphics/_Internal/_InternalUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Graphics/_Internal/_InternalUpdater.h -------------------------------------------------------------------------------- /Engine/Modules/HTTP/Async/AsyncHttpDownloadTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/Async/AsyncHttpDownloadTask.h -------------------------------------------------------------------------------- /Engine/Modules/HTTP/Async/AsyncHttpDownloadTask_iOS.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/Async/AsyncHttpDownloadTask_iOS.mm -------------------------------------------------------------------------------- /Engine/Modules/HTTP/Async/AsyncHttpRequestTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/Async/AsyncHttpRequestTask.h -------------------------------------------------------------------------------- /Engine/Modules/HTTP/Async/AsyncHttpRequestTask_iOS.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/Async/AsyncHttpRequestTask_iOS.mm -------------------------------------------------------------------------------- /Engine/Modules/HTTP/Async/AsyncHttpTasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/Async/AsyncHttpTasks.cpp -------------------------------------------------------------------------------- /Engine/Modules/HTTP/Async/AsyncHttp_iOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/Async/AsyncHttp_iOS.h -------------------------------------------------------------------------------- /Engine/Modules/HTTP/Async/AsyncUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/Async/AsyncUtility.cpp -------------------------------------------------------------------------------- /Engine/Modules/HTTP/Async/AsyncUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/Async/AsyncUtility.h -------------------------------------------------------------------------------- /Engine/Modules/HTTP/AsyncTaskHttpComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/AsyncTaskHttpComponent.cpp -------------------------------------------------------------------------------- /Engine/Modules/HTTP/AsyncTaskHttpComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/AsyncTaskHttpComponent.h -------------------------------------------------------------------------------- /Engine/Modules/HTTP/AsyncTaskHttpComponent_iOS.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/AsyncTaskHttpComponent_iOS.mm -------------------------------------------------------------------------------- /Engine/Modules/HTTP/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/CMakeLists.txt -------------------------------------------------------------------------------- /Engine/Modules/HTTP/HTTP.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/HTTP.vcxproj -------------------------------------------------------------------------------- /Engine/Modules/HTTP/HTTP.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/HTTP.vcxproj.filters -------------------------------------------------------------------------------- /Engine/Modules/HTTP/HTTP.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/HTTP.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Engine/Modules/HTTP/HttpCommonType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/HttpCommonType.cpp -------------------------------------------------------------------------------- /Engine/Modules/HTTP/HttpCommonType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/HttpCommonType.h -------------------------------------------------------------------------------- /Engine/Modules/HTTP/HttpModuleInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/HttpModuleInterface.cpp -------------------------------------------------------------------------------- /Engine/Modules/HTTP/HttpModuleInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/HttpModuleInterface.h -------------------------------------------------------------------------------- /Engine/Modules/HTTP/HttpRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/HttpRequest.h -------------------------------------------------------------------------------- /Engine/Modules/HTTP/HttpRequest_iOS.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/HttpRequest_iOS.mm -------------------------------------------------------------------------------- /Engine/Modules/HTTP/HttpResult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/HttpResult.cpp -------------------------------------------------------------------------------- /Engine/Modules/HTTP/HttpResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/HttpResult.h -------------------------------------------------------------------------------- /Engine/Modules/HTTP/HttpUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/HttpUtility.cpp -------------------------------------------------------------------------------- /Engine/Modules/HTTP/HttpUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/HttpUtility.h -------------------------------------------------------------------------------- /Engine/Modules/HTTP/cURL/cURLAsyncHttpDownloadTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/cURL/cURLAsyncHttpDownloadTask.cpp -------------------------------------------------------------------------------- /Engine/Modules/HTTP/cURL/cURLAsyncHttpDownloadTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/cURL/cURLAsyncHttpDownloadTask.h -------------------------------------------------------------------------------- /Engine/Modules/HTTP/cURL/cURLAsyncHttpRequestTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/cURL/cURLAsyncHttpRequestTask.cpp -------------------------------------------------------------------------------- /Engine/Modules/HTTP/cURL/cURLAsyncHttpRequestTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/cURL/cURLAsyncHttpRequestTask.h -------------------------------------------------------------------------------- /Engine/Modules/HTTP/cURL/cURLHttpRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/cURL/cURLHttpRequest.cpp -------------------------------------------------------------------------------- /Engine/Modules/HTTP/cURL/cURLUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/cURL/cURLUtility.cpp -------------------------------------------------------------------------------- /Engine/Modules/HTTP/cURL/cURLUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/HTTP/cURL/cURLUtility.h -------------------------------------------------------------------------------- /Engine/Modules/Input/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Input/CMakeLists.txt -------------------------------------------------------------------------------- /Engine/Modules/Input/Input.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Input/Input.vcxproj -------------------------------------------------------------------------------- /Engine/Modules/Input/Input.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Input/Input.vcxproj.filters -------------------------------------------------------------------------------- /Engine/Modules/Input/Input.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Input/Input.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Engine/Modules/Input/InputCommonTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Input/InputCommonTypes.h -------------------------------------------------------------------------------- /Engine/Modules/Input/Touch/EventBasedTouchContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Input/Touch/EventBasedTouchContext.cpp -------------------------------------------------------------------------------- /Engine/Modules/Input/Touch/EventBasedTouchContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Input/Touch/EventBasedTouchContext.h -------------------------------------------------------------------------------- /Engine/Modules/Input/Touch/LastTouchState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Input/Touch/LastTouchState.h -------------------------------------------------------------------------------- /Engine/Modules/Input/Touch/TouchEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Input/Touch/TouchEvent.h -------------------------------------------------------------------------------- /Engine/Modules/Input/TouchInputComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Input/TouchInputComponent.cpp -------------------------------------------------------------------------------- /Engine/Modules/Input/TouchInputComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Input/TouchInputComponent.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/CMakeLists.txt -------------------------------------------------------------------------------- /Engine/Modules/LUI/Common/IUIArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Common/IUIArea.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Common/IUIArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Common/IUIArea.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Common/UICommonArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Common/UICommonArea.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Common/UICommonArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Common/UICommonArea.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Common/UICommonResources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Common/UICommonResources.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Common/UICommonResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Common/UICommonResources.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Common/UICommonTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Common/UICommonTypes.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Common/UISizeSettable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Common/UISizeSettable.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Common/UITransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Common/UITransform.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Common/UITransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Common/UITransform.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Component/IUIComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Component/IUIComponent.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Component/UIClippingComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Component/UIClippingComponent.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Component/UIClippingComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Component/UIClippingComponent.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Component/UIComponentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Component/UIComponentType.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Component/UILayoutComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Component/UILayoutComponent.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Component/UILayoutComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Component/UILayoutComponent.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Component/UISizeSubComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Component/UISizeSubComponent.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Component/UISizeSubComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Component/UISizeSubComponent.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Component/UITransformComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Component/UITransformComponent.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Component/UITransformComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Component/UITransformComponent.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Controller/OnOffButtonController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Controller/OnOffButtonController.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Description/UIDescription.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Description/UIDescription.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Description/UIDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Description/UIDescription.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Description/UIDescriptionColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Description/UIDescriptionColor.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Description/UIDescriptionColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Description/UIDescriptionColor.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Description/UIDescriptionFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Description/UIDescriptionFont.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Description/UIDescriptionFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Description/UIDescriptionFont.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Description/UIDescriptionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Description/UIDescriptionManager.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Description/UIDescriptionReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Description/UIDescriptionReader.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Description/UIDescriptionReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Description/UIDescriptionReader.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Description/UIDescriptionTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Description/UIDescriptionTexture.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Description/UIDescriptionTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Description/UIDescriptionTypes.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Description/UIDescriptionTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Description/UIDescriptionTypes.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Description/UIDescriptionUnit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Description/UIDescriptionUnit.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Description/UIDescriptionUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Description/UIDescriptionUnit.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Description/UIPrefabDescription.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Description/UIPrefabDescription.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Description/UIPrefabDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Description/UIPrefabDescription.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Element/UIElementBlurredBarrier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Element/UIElementBlurredBarrier.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Element/UIElementBlurredBarrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Element/UIElementBlurredBarrier.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Element/UIElementCancelPanelArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Element/UIElementCancelPanelArea.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Element/UIElementFixedText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Element/UIElementFixedText.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Element/UIElementFixedText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Element/UIElementFixedText.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Element/UIElementSimpleSlideBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Element/UIElementSimpleSlideBar.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Element/UIElementSimpleSlideBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Element/UIElementSimpleSlideBar.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Element/UIElementSlideBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Element/UIElementSlideBar.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Element/UIElementSlideBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Element/UIElementSlideBar.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Element/UIElementTestButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Element/UIElementTestButton.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Element/UIElementTestButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Element/UIElementTestButton.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Element/UIElementTextInputBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Element/UIElementTextInputBox.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Element/UIElementTextInputBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Element/UIElementTextInputBox.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Element/UIElementVariantText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Element/UIElementVariantText.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Element/UIElementVariantText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Element/UIElementVariantText.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/LegacyUI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/LegacyUI.vcxproj -------------------------------------------------------------------------------- /Engine/Modules/LUI/LegacyUI.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/LegacyUI.vcxproj.filters -------------------------------------------------------------------------------- /Engine/Modules/LUI/LegacyUI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/LegacyUI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Engine/Modules/LUI/Loader/DummyUIAssetLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Loader/DummyUIAssetLoader.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Loader/DummyUIAssetLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Loader/DummyUIAssetLoader.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Loader/IUIAssetLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Loader/IUIAssetLoader.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Loader/UIBundleAssetLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Loader/UIBundleAssetLoader.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Loader/UIBundleAssetLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Loader/UIBundleAssetLoader.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Loader/UIChainAssetLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Loader/UIChainAssetLoader.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Loader/UIChainAssetLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Loader/UIChainAssetLoader.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Loader/UIFileAssetLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Loader/UIFileAssetLoader.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Loader/UIFileAssetLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Loader/UIFileAssetLoader.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Loader/UITableAssetLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Loader/UITableAssetLoader.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Loader/UITableAssetLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Loader/UITableAssetLoader.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Prefab/UIComponentPrefab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Prefab/UIComponentPrefab.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Prefab/UIComponentPrefab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Prefab/UIComponentPrefab.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Prefab/UIFabricatedComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Prefab/UIFabricatedComponent.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Prefab/UIFabricatedComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Prefab/UIFabricatedComponent.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Prefab/UILayoutComponentPrefab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Prefab/UILayoutComponentPrefab.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Prefab/UILayoutComponentPrefab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Prefab/UILayoutComponentPrefab.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Prefab/UIObjectButtonPrefab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Prefab/UIObjectButtonPrefab.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Prefab/UIObjectButtonPrefab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Prefab/UIObjectButtonPrefab.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Prefab/UIObjectPrefab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Prefab/UIObjectPrefab.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Prefab/UIObjectPrefab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Prefab/UIObjectPrefab.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Prefab/UIObjectScrollPanelPrefab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Prefab/UIObjectScrollPanelPrefab.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Prefab/UIObjectSliderPrefab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Prefab/UIObjectSliderPrefab.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Prefab/UIObjectSliderPrefab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Prefab/UIObjectSliderPrefab.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Prefab/UIPrefabCommonObjects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Prefab/UIPrefabCommonObjects.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Prefab/UIPrefabCommonObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Prefab/UIPrefabCommonObjects.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Prefab/UIPrefabPlaceProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Prefab/UIPrefabPlaceProcessor.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Prefab/UITextInputBoxPrefab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Prefab/UITextInputBoxPrefab.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Prefab/UITextInputBoxPrefab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Prefab/UITextInputBoxPrefab.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Prefab/UITextObjectPrefab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Prefab/UITextObjectPrefab.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Prefab/UITextObjectPrefab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Prefab/UITextObjectPrefab.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Rendering/IUIRenderingShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Rendering/IUIRenderingShape.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Rendering/UIClipping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Rendering/UIClipping.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Rendering/UIClipping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Rendering/UIClipping.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Rendering/UIFontFaceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Rendering/UIFontFaceManager.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Rendering/UIFontFaceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Rendering/UIFontFaceManager.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Rendering/UIRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Rendering/UIRenderer.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Rendering/UIRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Rendering/UIRenderer.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Rendering/UIRenderingComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Rendering/UIRenderingComponent.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Rendering/UIRenderingUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Rendering/UIRenderingUtility.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Rendering/UIShaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Rendering/UIShaders.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Rendering/UIShaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Rendering/UIShaders.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Rendering/UIShaders_Shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Rendering/UIShaders_Shader.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Rendering/UIShapeRect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Rendering/UIShapeRect.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Rendering/UIShapeRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Rendering/UIShapeRect.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Rendering/UITexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Rendering/UITexture.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Rendering/UITextureManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Rendering/UITextureManager.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Rendering/UITextureManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Rendering/UITextureManager.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Scene/UISceneBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Scene/UISceneBase.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Scene/UISceneBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Scene/UISceneBase.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Touch/UITouch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Touch/UITouch.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Touch/UITouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Touch/UITouch.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Touch/UITouchComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Touch/UITouchComponent.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Touch/UITouchComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Touch/UITouchComponent.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Touch/UITouchNegotiator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Touch/UITouchNegotiator.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Touch/UITouchNegotiator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Touch/UITouchNegotiator.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/Touch/ValuedTouchComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Touch/ValuedTouchComponent.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/Touch/ValuedTouchComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/Touch/ValuedTouchComponent.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/UIManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/UIManager.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/UIManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/UIManager.h -------------------------------------------------------------------------------- /Engine/Modules/LUI/UIObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/UIObject.cpp -------------------------------------------------------------------------------- /Engine/Modules/LUI/UIObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/LUI/UIObject.h -------------------------------------------------------------------------------- /Engine/Modules/Log/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Log/CMakeLists.txt -------------------------------------------------------------------------------- /Engine/Modules/Log/DebugLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Log/DebugLogger.cpp -------------------------------------------------------------------------------- /Engine/Modules/Log/DebugLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Log/DebugLogger.h -------------------------------------------------------------------------------- /Engine/Modules/Log/FileLogWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Log/FileLogWriter.cpp -------------------------------------------------------------------------------- /Engine/Modules/Log/FileLogWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Log/FileLogWriter.h -------------------------------------------------------------------------------- /Engine/Modules/Log/ILogWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Log/ILogWriter.h -------------------------------------------------------------------------------- /Engine/Modules/Log/Log.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Log/Log.vcxproj -------------------------------------------------------------------------------- /Engine/Modules/Log/Log.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Log/Log.vcxproj.filters -------------------------------------------------------------------------------- /Engine/Modules/Log/Log.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Log/Log.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Engine/Modules/Log/LogModuleInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Log/LogModuleInterface.cpp -------------------------------------------------------------------------------- /Engine/Modules/Log/LogModuleInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Log/LogModuleInterface.h -------------------------------------------------------------------------------- /Engine/Modules/Log/LogTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Log/LogTypes.h -------------------------------------------------------------------------------- /Engine/Modules/Log/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Log/Logger.cpp -------------------------------------------------------------------------------- /Engine/Modules/Log/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Log/Logger.h -------------------------------------------------------------------------------- /Engine/Modules/Log/PlatformDefaultLogWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Log/PlatformDefaultLogWriter.h -------------------------------------------------------------------------------- /Engine/Modules/Log/PlatformDefaultLogWriter_iOS.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Log/PlatformDefaultLogWriter_iOS.mm -------------------------------------------------------------------------------- /Engine/Modules/Log/ThreadedLogWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Log/ThreadedLogWriter.cpp -------------------------------------------------------------------------------- /Engine/Modules/Log/ThreadedLogWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Log/ThreadedLogWriter.h -------------------------------------------------------------------------------- /Engine/Modules/Log/_Internal/_DebugLoggerInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Log/_Internal/_DebugLoggerInterface.h -------------------------------------------------------------------------------- /Engine/Modules/Sound/BGMPlayerComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/BGMPlayerComponent.cpp -------------------------------------------------------------------------------- /Engine/Modules/Sound/BGMPlayerComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/BGMPlayerComponent.h -------------------------------------------------------------------------------- /Engine/Modules/Sound/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/CMakeLists.txt -------------------------------------------------------------------------------- /Engine/Modules/Sound/Common/IBGMPlayingHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/Common/IBGMPlayingHandle.h -------------------------------------------------------------------------------- /Engine/Modules/Sound/Common/ISoundPlayingHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/Common/ISoundPlayingHandle.h -------------------------------------------------------------------------------- /Engine/Modules/Sound/Common/SoundPlayingContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/Common/SoundPlayingContext.h -------------------------------------------------------------------------------- /Engine/Modules/Sound/Common/SoundTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/Common/SoundTypes.cpp -------------------------------------------------------------------------------- /Engine/Modules/Sound/Common/SoundTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/Common/SoundTypes.h -------------------------------------------------------------------------------- /Engine/Modules/Sound/OboeBackend/OboeCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/OboeBackend/OboeCommon.cpp -------------------------------------------------------------------------------- /Engine/Modules/Sound/OboeBackend/OboeCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/OboeBackend/OboeCommon.h -------------------------------------------------------------------------------- /Engine/Modules/Sound/OboeBackend/OboeSoundMixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/OboeBackend/OboeSoundMixer.cpp -------------------------------------------------------------------------------- /Engine/Modules/Sound/OboeBackend/OboeSoundMixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/OboeBackend/OboeSoundMixer.h -------------------------------------------------------------------------------- /Engine/Modules/Sound/OboeBackend/OboeStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/OboeBackend/OboeStream.cpp -------------------------------------------------------------------------------- /Engine/Modules/Sound/OboeBackend/OboeStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/OboeBackend/OboeStream.h -------------------------------------------------------------------------------- /Engine/Modules/Sound/OboeBackend/_OboeInternal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/OboeBackend/_OboeInternal.cpp -------------------------------------------------------------------------------- /Engine/Modules/Sound/OboeBackend/_OboeInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/OboeBackend/_OboeInternal.h -------------------------------------------------------------------------------- /Engine/Modules/Sound/OpenALBackend/OpenALCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/OpenALBackend/OpenALCommon.cpp -------------------------------------------------------------------------------- /Engine/Modules/Sound/OpenALBackend/OpenALCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/OpenALBackend/OpenALCommon.h -------------------------------------------------------------------------------- /Engine/Modules/Sound/Platform/AndroidBGMPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/Platform/AndroidBGMPlayer.cpp -------------------------------------------------------------------------------- /Engine/Modules/Sound/Platform/AndroidBGMPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/Platform/AndroidBGMPlayer.h -------------------------------------------------------------------------------- /Engine/Modules/Sound/Platform/WinPCBGMPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/Platform/WinPCBGMPlayer.cpp -------------------------------------------------------------------------------- /Engine/Modules/Sound/Platform/WinPCBGMPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/Platform/WinPCBGMPlayer.h -------------------------------------------------------------------------------- /Engine/Modules/Sound/Platform/WinPCPlatformSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/Platform/WinPCPlatformSound.cpp -------------------------------------------------------------------------------- /Engine/Modules/Sound/Platform/iOSBGMPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/Platform/iOSBGMPlayer.h -------------------------------------------------------------------------------- /Engine/Modules/Sound/Platform/iOSBGMPlayer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/Platform/iOSBGMPlayer.mm -------------------------------------------------------------------------------- /Engine/Modules/Sound/Platform/iOSPlatformSound.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/Platform/iOSPlatformSound.mm -------------------------------------------------------------------------------- /Engine/Modules/Sound/Provider/BakedSoundProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/Provider/BakedSoundProvider.cpp -------------------------------------------------------------------------------- /Engine/Modules/Sound/Provider/BakedSoundProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/Provider/BakedSoundProvider.h -------------------------------------------------------------------------------- /Engine/Modules/Sound/Provider/ISoundProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/Provider/ISoundProvider.h -------------------------------------------------------------------------------- /Engine/Modules/Sound/Provider/MP3SoundProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/Provider/MP3SoundProvider.cpp -------------------------------------------------------------------------------- /Engine/Modules/Sound/Provider/MP3SoundProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/Provider/MP3SoundProvider.h -------------------------------------------------------------------------------- /Engine/Modules/Sound/Provider/OggSoundProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/Provider/OggSoundProvider.cpp -------------------------------------------------------------------------------- /Engine/Modules/Sound/Provider/OggSoundProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/Provider/OggSoundProvider.h -------------------------------------------------------------------------------- /Engine/Modules/Sound/Provider/TestSoundProviders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/Provider/TestSoundProviders.cpp -------------------------------------------------------------------------------- /Engine/Modules/Sound/Provider/TestSoundProviders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/Provider/TestSoundProviders.h -------------------------------------------------------------------------------- /Engine/Modules/Sound/Provider/WavSoundProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/Provider/WavSoundProvider.cpp -------------------------------------------------------------------------------- /Engine/Modules/Sound/Provider/WavSoundProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/Provider/WavSoundProvider.h -------------------------------------------------------------------------------- /Engine/Modules/Sound/Sound.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/Sound.vcxproj -------------------------------------------------------------------------------- /Engine/Modules/Sound/Sound.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/Sound.vcxproj.filters -------------------------------------------------------------------------------- /Engine/Modules/Sound/Sound.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/Sound.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Engine/Modules/Sound/SoundMixerComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/SoundMixerComponent.cpp -------------------------------------------------------------------------------- /Engine/Modules/Sound/SoundMixerComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Sound/SoundMixerComponent.h -------------------------------------------------------------------------------- /Engine/Modules/Task/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Task/CMakeLists.txt -------------------------------------------------------------------------------- /Engine/Modules/Task/ConcreteTaskManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Task/ConcreteTaskManager.cpp -------------------------------------------------------------------------------- /Engine/Modules/Task/GraphicTask/GraphicTaskSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Task/GraphicTask/GraphicTaskSystem.h -------------------------------------------------------------------------------- /Engine/Modules/Task/Platform/TaskPlatform_WinPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Task/Platform/TaskPlatform_WinPC.cpp -------------------------------------------------------------------------------- /Engine/Modules/Task/Platform/TaskPlatform_iOS.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Task/Platform/TaskPlatform_iOS.mm -------------------------------------------------------------------------------- /Engine/Modules/Task/Processor/ITaskProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Task/Processor/ITaskProcessor.h -------------------------------------------------------------------------------- /Engine/Modules/Task/Processor/IThreadWorkerContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Task/Processor/IThreadWorkerContext.h -------------------------------------------------------------------------------- /Engine/Modules/Task/Processor/ThreadWorker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Task/Processor/ThreadWorker.cpp -------------------------------------------------------------------------------- /Engine/Modules/Task/Processor/ThreadWorker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Task/Processor/ThreadWorker.h -------------------------------------------------------------------------------- /Engine/Modules/Task/Processor/ThreadWorkerPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Task/Processor/ThreadWorkerPool.cpp -------------------------------------------------------------------------------- /Engine/Modules/Task/Processor/ThreadWorkerPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Task/Processor/ThreadWorkerPool.h -------------------------------------------------------------------------------- /Engine/Modules/Task/Processor/iOSTaskProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Task/Processor/iOSTaskProcessor.h -------------------------------------------------------------------------------- /Engine/Modules/Task/Processor/iOSTaskProcessor.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Task/Processor/iOSTaskProcessor.mm -------------------------------------------------------------------------------- /Engine/Modules/Task/Task.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Task/Task.vcxproj -------------------------------------------------------------------------------- /Engine/Modules/Task/Task.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Task/Task.vcxproj.filters -------------------------------------------------------------------------------- /Engine/Modules/Task/Task.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Task/Task.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Engine/Modules/Task/TaskManagerComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Task/TaskManagerComponent.cpp -------------------------------------------------------------------------------- /Engine/Modules/Task/TaskManagerComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Task/TaskManagerComponent.h -------------------------------------------------------------------------------- /Engine/Modules/Task/TaskSubSystemInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Task/TaskSubSystemInterface.h -------------------------------------------------------------------------------- /Engine/Modules/Task/TaskTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Task/TaskTypes.h -------------------------------------------------------------------------------- /Engine/Modules/Task/Tasks/DependentTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Task/Tasks/DependentTask.cpp -------------------------------------------------------------------------------- /Engine/Modules/Task/Tasks/DependentTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Task/Tasks/DependentTask.h -------------------------------------------------------------------------------- /Engine/Modules/Task/Tasks/ITask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Task/Tasks/ITask.h -------------------------------------------------------------------------------- /Engine/Modules/Task/Tasks/SingleActionTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Task/Tasks/SingleActionTask.cpp -------------------------------------------------------------------------------- /Engine/Modules/Task/Tasks/SingleActionTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Task/Tasks/SingleActionTask.h -------------------------------------------------------------------------------- /Engine/Modules/Task/Tasks/ValueTasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Task/Tasks/ValueTasks.h -------------------------------------------------------------------------------- /Engine/Modules/Task/_Internal/_ConcreteTaskManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Task/_Internal/_ConcreteTaskManager.h -------------------------------------------------------------------------------- /Engine/Modules/Task/_Internal/_TaskExecutionEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Modules/Task/_Internal/_TaskExecutionEntry.h -------------------------------------------------------------------------------- /Engine/Platform/Platform.Android/AndroidCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Platform/Platform.Android/AndroidCommon.cpp -------------------------------------------------------------------------------- /Engine/Platform/Platform.Android/AndroidCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Platform/Platform.Android/AndroidCommon.h -------------------------------------------------------------------------------- /Engine/Platform/Platform.Android/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Platform/Platform.Android/CMakeLists.txt -------------------------------------------------------------------------------- /Engine/Platform/Platform.WinPC/OpenGL/EGLView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Platform/Platform.WinPC/OpenGL/EGLView.cpp -------------------------------------------------------------------------------- /Engine/Platform/Platform.WinPC/OpenGL/EGLView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Platform/Platform.WinPC/OpenGL/EGLView.h -------------------------------------------------------------------------------- /Engine/Platform/Platform.WinPC/Platform.WinPC.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Platform/Platform.WinPC/Platform.WinPC.aps -------------------------------------------------------------------------------- /Engine/Platform/Platform.WinPC/Platform.WinPC.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Platform/Platform.WinPC/Platform.WinPC.rc -------------------------------------------------------------------------------- /Engine/Platform/Platform.WinPC/Service/WinWebView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Platform/Platform.WinPC/Service/WinWebView.h -------------------------------------------------------------------------------- /Engine/Platform/Platform.WinPC/Window/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Platform/Platform.WinPC/Window/Window.cpp -------------------------------------------------------------------------------- /Engine/Platform/Platform.WinPC/Window/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Platform/Platform.WinPC/Window/Window.h -------------------------------------------------------------------------------- /Engine/Platform/Platform.WinPC/WindowsCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Platform/Platform.WinPC/WindowsCommon.h -------------------------------------------------------------------------------- /Engine/Platform/Platform.WinPC/WindowsUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Platform/Platform.WinPC/WindowsUtility.cpp -------------------------------------------------------------------------------- /Engine/Platform/Platform.WinPC/WindowsUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Platform/Platform.WinPC/WindowsUtility.h -------------------------------------------------------------------------------- /Engine/Platform/Platform.WinPC/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Platform/Platform.WinPC/resource.h -------------------------------------------------------------------------------- /Engine/Platform/Platform.iOS/LeggieroAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Platform/Platform.iOS/LeggieroAppDelegate.h -------------------------------------------------------------------------------- /Engine/Platform/Platform.iOS/LeggieroAppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Platform/Platform.iOS/LeggieroAppDelegate.mm -------------------------------------------------------------------------------- /Engine/Platform/Platform.iOS/LeggieroIOSCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Platform/Platform.iOS/LeggieroIOSCommon.h -------------------------------------------------------------------------------- /Engine/Platform/Platform.iOS/LeggieroIOSCommon.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Platform/Platform.iOS/LeggieroIOSCommon.mm -------------------------------------------------------------------------------- /Engine/Platform/Platform.iOS/Service/iOSWebView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Platform/Platform.iOS/Service/iOSWebView.h -------------------------------------------------------------------------------- /Engine/Platform/Platform.iOS/Service/iOSWebView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Platform/Platform.iOS/Service/iOSWebView.mm -------------------------------------------------------------------------------- /Engine/Platform/Platform.iOS/iOSGLThreadContext.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Platform/Platform.iOS/iOSGLThreadContext.mm -------------------------------------------------------------------------------- /Engine/Platform/Platform.iOS/iOSPlatformSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Platform/Platform.iOS/iOSPlatformSetting.h -------------------------------------------------------------------------------- /Engine/Platform/Platform.iOS/iOSPlatformUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Platform/Platform.iOS/iOSPlatformUtility.h -------------------------------------------------------------------------------- /Engine/Platform/Platform.iOS/iOSPlatformUtility.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Engine/Platform/Platform.iOS/iOSPlatformUtility.mm -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/README.md -------------------------------------------------------------------------------- /Tools/ProjectCreator/ProjectCreatorCore.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Tools/ProjectCreator/ProjectCreatorCore.deps.json -------------------------------------------------------------------------------- /Tools/ProjectCreator/ProjectCreatorCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Tools/ProjectCreator/ProjectCreatorCore.dll -------------------------------------------------------------------------------- /Tools/ProjectCreator/ProjectCreatorCore.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Tools/ProjectCreator/ProjectCreatorCore.pdb -------------------------------------------------------------------------------- /Tools/ProjectCreator/ProjectCreatorGUI.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Tools/ProjectCreator/ProjectCreatorGUI.deps.json -------------------------------------------------------------------------------- /Tools/ProjectCreator/ProjectCreatorGUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Tools/ProjectCreator/ProjectCreatorGUI.dll -------------------------------------------------------------------------------- /Tools/ProjectCreator/ProjectCreatorGUI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Tools/ProjectCreator/ProjectCreatorGUI.exe -------------------------------------------------------------------------------- /Tools/ProjectCreator/ProjectCreatorGUI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Tools/ProjectCreator/ProjectCreatorGUI.pdb -------------------------------------------------------------------------------- /Tools/ProjectCreator/ProjectCreatorTool.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Tools/ProjectCreator/ProjectCreatorTool.deps.json -------------------------------------------------------------------------------- /Tools/ProjectCreator/ProjectCreatorTool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Tools/ProjectCreator/ProjectCreatorTool.dll -------------------------------------------------------------------------------- /Tools/ProjectCreator/ProjectCreatorTool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Tools/ProjectCreator/ProjectCreatorTool.exe -------------------------------------------------------------------------------- /Tools/ProjectCreator/ProjectCreatorTool.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Tools/ProjectCreator/ProjectCreatorTool.pdb -------------------------------------------------------------------------------- /Tools/ProjectCreator/Template/Project/Bundle/Base/bundle.txt: -------------------------------------------------------------------------------- 1 | Platform Common Bundled Resources -------------------------------------------------------------------------------- /Tools/ProjectCreator/Template/Project/Proj.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Tools/ProjectCreator/Template/Project/Proj.sln -------------------------------------------------------------------------------- /Tools/ProjectCreator/Template/Project/Sources/App/Proj.Android/ProjAndroid.cpp: -------------------------------------------------------------------------------- 1 | // Dummy cpp Source to Generate obj File -------------------------------------------------------------------------------- /Tools/ProjectCreator/Template/Project/Sources/App/Proj.Android/build/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Tools/ProjectCreator/Template/Project/Sources/App/Proj.Android/build/.idea/.name: -------------------------------------------------------------------------------- 1 | ${{ProgramName}} -------------------------------------------------------------------------------- /Tools/ProjectCreator/Template/Project/Sources/App/Proj.Android/build/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Tools/ProjectCreator/Template/Template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Tools/ProjectCreator/Template/Template.txt -------------------------------------------------------------------------------- /Tools/ProjectCreator/src/ProjectCreator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineGames/Leggiero/HEAD/Tools/ProjectCreator/src/ProjectCreator.sln --------------------------------------------------------------------------------